Home
last modified time | relevance | path

Searched refs:downloadPath (Results 1 – 25 of 187) sorted by relevance

12345678

/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/extensionmanager/Classes/Utility/
H A DDownloadUtility.php36 protected $downloadPath = 'Local'; variable in TYPO3\\CMS\\Extensionmanager\\Utility\\DownloadUtility
84 * @param string $downloadPath
87 public function setDownloadPath($downloadPath) argument
89 …if (!in_array($downloadPath, \TYPO3\CMS\Extensionmanager\Domain\Model\Extension::returnAllowedInst…
90 …throw new \TYPO3\CMS\Extensionmanager\Exception\ExtensionManagerException($downloadPath . ' not in…
92 $this->downloadPath = $downloadPath;
102 return $this->downloadPath;
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/extensionmanager/Classes/Utility/
H A DDownloadUtility.php43 protected $downloadPath = 'Local'; variable in TYPO3\\CMS\\Extensionmanager\\Utility\\DownloadUtility
91 * @param string $downloadPath
94 public function setDownloadPath($downloadPath) argument
96 if (!in_array($downloadPath, Extension::returnAllowedInstallTypes())) {
97 … throw new ExtensionManagerException($downloadPath . ' not in allowed download paths', 1344766387);
99 $this->downloadPath = $downloadPath;
109 return $this->downloadPath;
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/tests/tools/ci/azure/
H A Dinstall_python.yml8 $downloadPath = 'python_installer.exe'
9 … -Source https://www.python.org/ftp/python/3.9.4/python-3.9.4-amd64.exe -Destination $downloadPath
10 $hash = (Get-FileHash $downloadPath).Hash.ToLower()
13 Write-Host "$downloadPath hash verified"
15 Throw "$downloadPath hash mismatch, got $hash, expected $expectedHash"
21 …$p = Start-Process -FilePath $downloadPath -Verb RunAs -ArgumentList $uninstallArgs -PassThru -Wait
25 Write-Host "Running $downloadPath with args $installArgs"
26 … $p = Start-Process -FilePath $downloadPath -Verb RunAs -ArgumentList $installArgs -PassThru -Wait
27 Write-Host "$downloadPath finished. Exit code was: $($p.ExitCode)"
/dports/www/firefox/firefox-99.0/testing/web-platform/tests/tools/ci/azure/
H A Dinstall_python.yml8 $downloadPath = 'python_installer.exe'
9 … -Source https://www.python.org/ftp/python/3.9.4/python-3.9.4-amd64.exe -Destination $downloadPath
10 $hash = (Get-FileHash $downloadPath).Hash.ToLower()
13 Write-Host "$downloadPath hash verified"
15 Throw "$downloadPath hash mismatch, got $hash, expected $expectedHash"
21 …$p = Start-Process -FilePath $downloadPath -Verb RunAs -ArgumentList $uninstallArgs -PassThru -Wait
25 Write-Host "Running $downloadPath with args $installArgs"
26 … $p = Start-Process -FilePath $downloadPath -Verb RunAs -ArgumentList $installArgs -PassThru -Wait
27 Write-Host "$downloadPath finished. Exit code was: $($p.ExitCode)"
/dports/mail/thunderbird/thunderbird-91.8.0/testing/web-platform/tests/tools/ci/azure/
H A Dinstall_python.yml8 $downloadPath = 'python_installer.exe'
9 … -Source https://www.python.org/ftp/python/3.9.4/python-3.9.4-amd64.exe -Destination $downloadPath
10 $hash = (Get-FileHash $downloadPath).Hash.ToLower()
13 Write-Host "$downloadPath hash verified"
15 Throw "$downloadPath hash mismatch, got $hash, expected $expectedHash"
21 …$p = Start-Process -FilePath $downloadPath -Verb RunAs -ArgumentList $uninstallArgs -PassThru -Wait
25 Write-Host "Running $downloadPath with args $installArgs"
26 … $p = Start-Process -FilePath $downloadPath -Verb RunAs -ArgumentList $installArgs -PassThru -Wait
27 Write-Host "$downloadPath finished. Exit code was: $($p.ExitCode)"
/dports/net-mgmt/ocsinventory-ocsreports/ocsinventory-ocsreports/require/teledeploy/
H A DPackageBuilder.php86 $downloadPath = VARLIB_DIR . '/download/'.$timestamp;
90 if (!file_exists($downloadPath)) {
91 mkdir($downloadPath);
135 $details = $this->fragmentPackage($filepath, $downloadPath, $timestamp);
143 $details = $this->fragmentPackage($zipScript, $downloadPath, $timestamp);
150 $details = $this->fragmentPackage($tarScript, $downloadPath, $timestamp);
164 $handinfo = fopen($downloadPath."/info", "w+");
188 msg_success($l->g(437) . " " . $downloadPath);
315 private function fragmentPackage($fname, $downloadPath, $timestamp) { argument
337 $handfrag = fopen($downloadPath."/".$timestamp."-".$i, "w+b");
[all …]
/dports/audio/cantata/cantata-2.4.2/online/
H A Dpodcastsettingsdialog.cpp64 downloadPath = new PathRequester(this); in PodcastSettingsDialog()
65 downloadLabel->setBuddy(downloadPath); in PodcastSettingsDialog()
66 downloadPath->setDirMode(true); in PodcastSettingsDialog()
76 lay->setWidget(row++, QFormLayout::FieldRole, downloadPath); in PodcastSettingsDialog()
78 lay->setWidget(row++, QFormLayout::FieldRole, downloadPath); in PodcastSettingsDialog()
112 downloadPath->setText(origPodcastDownloadPath); in PodcastSettingsDialog()
113 connect(downloadPath, SIGNAL(textChanged(QString)), SLOT(checkSaveable())); in PodcastSettingsDialog()
123 downloadPath->text().trimmed()!=origPodcastDownloadPath); in checkSaveable()
134 if (downloadPath->text().trimmed()!=origPodcastDownloadPath) { in slotButtonClicked()
136 …Settings::self()->savePodcastDownloadPath(Utils::convertPathFromDisplay(downloadPath->text().trimm… in slotButtonClicked()
/dports/www/minio-client/mc-RELEASE.2021-12-10T00-14-28Z/cmd/
H A Dadmin-inspect.go126 downloadPath := fmt.Sprintf("inspect.%s.%s", hex.EncodeToString(id[:]), ext)
127 fi, e := os.Stat(downloadPath)
129 e = moveFile(downloadPath, downloadPath+"."+time.Now().Format(dateTimeFormatFilename))
130 fatalIf(probe.NewError(e), "Unable to create a backup of "+downloadPath)
136 fatalIf(probe.NewError(moveFile(tmpFile.Name(), downloadPath)), "Unable to download file data.")
140 … console.Infof("File data successfully downloaded as %s\n", console.Colorize("File", downloadPath))
143 …nfof("Encrypted file data successfully downloaded as %s\n", console.Colorize("File", downloadPath))
156 File: downloadPath,
H A Dadmin-profile-stop.go119 downloadPath := "profile.zip"
121 fi, e := os.Stat(downloadPath)
123 e = moveFile(downloadPath, downloadPath+"."+time.Now().Format(dateTimeFormatFilename))
131 fatalIf(probe.NewError(moveFile(tmpFile.Name(), downloadPath)), "Unable to download profile data.")
133 console.Infof("Profile data successfully downloaded as %s\n", downloadPath)
/dports/net/landrop/LANDrop-0.4.0/LANDrop/
H A Dfiletransferreceiver.cpp44 …FileTransferSession(parent, socket), writingFile(nullptr), downloadPath(Settings::downloadPath()) … in FileTransferReceiver()
53 if (!QDir().mkpath(downloadPath)) { in respond()
54 emit errorOccurred(tr("Cannot create download path: ") + downloadPath); in respond()
57 if (!QFileInfo(downloadPath).isWritable()) { in respond()
58 emit errorOccurred(tr("Download path is not writable: ") + downloadPath); in respond()
144 QString filename = downloadPath + QDir::separator() + curFile.filename; in createNextFile()
166 QDesktopServices::openUrl(QUrl::fromLocalFile(downloadPath)); in createNextFile()
H A Dsettings.cpp47 QString Settings::downloadPath() in downloadPath() function in Settings
69 void Settings::setDownloadPath(const QString &downloadPath) in setDownloadPath() argument
71 QSettings().setValue("downloadPath", downloadPath); in setDownloadPath()
H A Dtrayicon.cpp102 QString downloadPath = Settings::downloadPath(); in openDownloadFolderActionTriggered() local
103 QDir().mkpath(downloadPath); in openDownloadFolderActionTriggered()
104 QDesktopServices::openUrl(QUrl::fromLocalFile(downloadPath)); in openDownloadFolderActionTriggered()
/dports/www/bolt/bolt-2.2.24/vendor/composer/composer/src/Composer/Installer/
H A DLibraryInstaller.php83 $downloadPath = $this->getInstallPath($package);
86 if (!is_readable($downloadPath) && $repo->hasPackage($package)) {
130 $downloadPath = $this->getPackageBasePath($package);
132 $packageVendorDir = dirname($downloadPath);
185 $downloadPath = $this->getInstallPath($package);
186 $this->downloadManager->download($package, $downloadPath);
212 $downloadPath = $this->getPackageBasePath($package);
213 $this->downloadManager->remove($package, $downloadPath);
/dports/www/falkon/falkon-3.2.0/src/lib/downloads/
H A Ddownloadmanager.cpp300 QString downloadPath; in download() local
331downloadPath = QzTools::ensureUniqueFilename(DataPaths::path(DataPaths::Temp) + QLatin1Char('/') +… in download()
338 if (!downloadPath.isEmpty()) { in download()
339 m_lastDownloadPath = QFileInfo(downloadPath).absolutePath(); in download()
352 downloadPath = QFileDialog::getSaveFileName(mApp->activeWindow(), tr("Save page as..."), in download()
356 if (!downloadPath.isEmpty()) { in download()
357 m_lastDownloadPath = QFileInfo(downloadPath).absolutePath(); in download()
387 downloadPath = QzTools::ensureUniqueFilename(m_downloadPath + QL1C('/') + fileName); in download()
390 if (downloadPath.isEmpty()) { in download()
396 downloadItem->setPath(downloadPath); in download()
[all …]
/dports/security/keybase/client-v5.7.1/shared/chat/conversation/messages/attachment/file/
H A Dcontainer.tsx52 message.downloadPath &&
53 dispatch(FsGen.createOpenLocalPathInSystemFileManager({localPath: message.downloadPath}))
58 const {downloadPath, transferState} = message
61 : downloadPath
81 if (!message.downloadPath) {
88 !Container.isMobile && message.downloadPath
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/extensionmanager/Classes/Service/
H A DExtensionManagementService.php80 protected $downloadPath = 'Local'; variable in TYPO3\\CMS\\Extensionmanager\\Service\\ExtensionManagementService
400 $this->downloadPath
408 * @param string $downloadPath
411 public function setDownloadPath(string $downloadPath): void argument
413 if (!in_array($downloadPath, Extension::returnAllowedInstallTypes(), true)) {
414 … throw new ExtensionManagerException($downloadPath . ' not in allowed download paths', 1344766387);
416 $this->downloadPath = $downloadPath;
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/client/src/updater/
H A Dupdatersettings.cpp92 return downloadPath() == defaultDownloadPath(); in isDefaultDownloadPath()
95 de::NativePath UpdaterSettings::downloadPath() const in downloadPath() function in UpdaterSettings
105 void UpdaterSettings::setDownloadPath(de::NativePath downloadPath) in setDownloadPath() argument
107 if (downloadPath == defaultDownloadPath()) in setDownloadPath()
109 downloadPath = SYMBOL_DEFAULT_DOWNLOAD; in setDownloadPath()
111 Config::get().set(VAR_DOWNLOAD_PATH, downloadPath.toString()); in setDownloadPath()
/dports/security/keybase/client-v5.7.1/go/kbfs/simplefs/
H A Ddownloads.go155 downloadPath string, err error) {
160 downloadPath = filepath.Join(parentDir, downloadID+path.Ext(filename))
161 return downloadPath, nil
215 downloadID string, downloadPath string, done func(error)) {
230 ctx, downloadPath, d.safeFilename)
236 localPath = downloadPath
254 downloadPath, err := m.getDownloadPath(ctx, filename, downloadID)
262 Dest: keybase1.NewPathWithLocal(downloadPath),
308 go m.waitForDownload(bgCtx, downloadID, downloadPath, done)
/dports/devel/git-lfs/git-lfs-3.0.2/commands/
H A Dcommand_migrate_export.go59 downloadPath, err := gitfilter.ObjectPath(ptr.Oid)
64 return gitobj.NewBlobFromFile(downloadPath)
133 downloadPath, err := gitfilter.ObjectPath(p.Oid)
138 if _, err := os.Stat(downloadPath); os.IsNotExist(err) {
139 q.Add(p.Name, downloadPath, p.Oid, p.Size, false, nil)
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/extensionmanager/Classes/Controller/
H A DDownloadController.php155 * @param string $downloadPath
158 …public function installFromTerAction(Extension $extension, $downloadPath = 'Local'): ResponseInter… argument
160 [$result, $errorMessages] = $this->installFromTer($extension, $downloadPath);
316 * @param string $downloadPath
319 protected function installFromTer(Extension $extension, $downloadPath = 'Local') argument
324 $this->managementService->setDownloadPath($downloadPath);
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/extensionmanager/Classes/Controller/
H A DDownloadController.php179 * @param string $downloadPath
181 public function installFromTerAction(Extension $extension, $downloadPath = 'Local') argument
183 [$result, $errorMessages] = $this->installFromTer($extension, $downloadPath);
334 * @param string $downloadPath
337 protected function installFromTer(Extension $extension, $downloadPath = 'Local') argument
342 $this->downloadUtility->setDownloadPath($downloadPath);
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/desktop/
H A DDesktopWebPage.cpp68 const QString& downloadPath) in handlePdfDownload() argument
74 desktop::openFile(downloadPath); in handlePdfDownload()
77 downloadItem->setPath(downloadPath); in handlePdfDownload()
96 QString downloadPath = QStringLiteral("%1/%2") in onPdfDownloadRequested() local
100 return handlePdfDownload(downloadItem, downloadPath); in onPdfDownloadRequested()
119 QString downloadPath = QFileDialog::getSaveFileName( in onDownloadRequested() local
124 if (downloadPath.isEmpty()) in onDownloadRequested()
127 DownloadHelper::manageDownload(downloadItem, downloadPath); in onDownloadRequested()
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/extensionmanager/Classes/Controller/
H A DDownloadController.php196 * @param string $downloadPath
198 …omTerAction(\TYPO3\CMS\Extensionmanager\Domain\Model\Extension $extension, $downloadPath = 'Local') argument
200 list($result, $errorMessages) = $this->installFromTer($extension, $downloadPath);
350 * @param string $downloadPath
353 …tallFromTer(\TYPO3\CMS\Extensionmanager\Domain\Model\Extension $extension, $downloadPath = 'Local') argument
358 $this->downloadUtility->setDownloadPath($downloadPath);
/dports/security/seal/SEAL-3.7.2/pipelines/
H A Dnuget.yml11 downloadPath: '$(Build.ArtifactStagingDirectory)'
17 downloadPath: '$(Build.ArtifactStagingDirectory)'
23 downloadPath: '$(Build.ArtifactStagingDirectory)'
29 downloadPath: '$(Build.ArtifactStagingDirectory)'
35 downloadPath: '$(Build.ArtifactStagingDirectory)'
/dports/security/keybase/client-v5.7.1/shared/chat/conversation/attachment-fullscreen/
H A Dcontainer.tsx31 …const {previewHeight, previewWidth, title, fileURL, previewURL, downloadPath, transferProgress} = …
90 … message.downloadPath ? undefined : () => dispatch(Chat2Gen.createAttachmentDownload({message}))
95 downloadPath
96 ? () => dispatch(FsGen.createOpenLocalPathInSystemFileManager({localPath: downloadPath}))
104downloadPath ? undefined : message.transferState === 'downloading' ? 'Downloading' : undefined

12345678