Home
last modified time | relevance | path

Searched +full:download +full:- +full:url (Results 1 – 25 of 426) sorted by relevance

12345678910>>...18

/third_party/mesa3d/.gitlab-ci/piglit/
Dbuild-piglit_backport-s3-migration.diff1 diff --git a/framework/replay/download_utils.py b/framework/replay/download_utils.py
3 --- a/framework/replay/download_utils.py
5 @@ -31,6 +31,7 @@ import xml.etree.ElementTree as ET
13 @@ -88,7 +89,7 @@ def get_minio_credentials(url):
17 -def get_authorization_headers(url, resource):
18 +def get_minio_authorization_headers(url, resource):
19 minio_key, minio_secret, minio_token = get_minio_credentials(url)
21 content_type = 'application/octet-stream'
22 @@ -106,6 +107,17 @@ def get_authorization_headers(url, resource):
26 +def get_jwt_authorization_headers(url, resource):
[all …]
/third_party/skia/third_party/externals/freetype/tests/scripts/
Ddownload-test-fonts.py3 """Download test fonts used by the FreeType regression test programs. These
17 # The list of download items describing the font files to install. Each
18 # download item is a dictionary with one of the following schemas:
20 # - File item:
23 # Type: URL string.
25 # Description: URL to download the file from.
31 # it must be different from the original URL's basename.
38 # - Zip items:
44 # Type: URL string.
46 # Description: URL to download the zip archive from.
[all …]
/third_party/curl/docs/examples/
Dchkspeed.c21 * SPDX-License-Identifier: curl
25 * Show transfer timing info after download completes.
29 * download data into a chunk of memory instead of storing it in a file.
30 * After successful download we use curl_easy_getinfo() calls to get the
31 * amount of downloaded bytes, the time used for the whole download, and
32 * the average download speed.
33 * On Linux you can create the download test files with:
69 const char *url = URL_1M; in main() local
74 for(argc--, argv++; *argv; argc--, argv++) { in main()
75 if(argv[0][0] == '-') { in main()
[all …]
/third_party/node/deps/npm/node_modules/node-gyp/test/
Dtest-download.js14 const gyp = require('../lib/node-gyp')
20 describe('download', function () {
21 it('download over http', async function () {
23 assert.strictEqual(req.headers['user-agent'], `node-gyp v42 (node ${process.version})`)
36 const url = `http://${host}:${port}`
37 const res = await install.test.download(gyp, url)
41 it('download over https with custom ca', async function () {
53 assert.strictEqual(req.headers['user-agent'], `node-gyp v42 (node ${process.version})`)
71 const url = `https://${host}:${port}`
72 const res = await install.test.download(gyp, url)
[all …]
Dtest-process-release.js5 const processRelease = require('../lib/process-release')
7 describe('process-release', function () {
8 it('test process release - process.version = 0.8.20', function () {
18 tarballUrl: 'https://nodejs.org/dist/v0.8.20/node-v0.8.20.tar.gz',
27 it('test process release - process.version = 0.10.21', function () {
37 tarballUrl: 'https://nodejs.org/dist/v0.10.21/node-v0.10.21.tar.gz',
46 // prior to -headers.tar.gz
47 it('test process release - process.version = 0.12.9', function () {
57 tarballUrl: 'https://nodejs.org/dist/v0.12.9/node-v0.12.9.tar.gz',
66 // prior to -headers.tar.gz
[all …]
/third_party/skia/third_party/externals/swiftshader/tests/regres/llvm/
Dllvm.go7 // http://www.apache.org/licenses/LICENSE-2.0
63 // Download downloads and verifies the LLVM toolchain for the current OS.
64 func (v Version) Download() ([]byte, error) { func
70 url, sig, key, err := v.DownloadInfoForOS(osName)
75 resp, err := http.Get(url)
77 return nil, fmt.Errorf("Could not download LLVM from %v: %v", url, err)
83 return nil, fmt.Errorf("Could not download LLVM from %v: %v", url, err)
104 // DownloadInfoForOS returns the download url, signature and key for the given
106 func (v Version) DownloadInfoForOS(os string) (url, sig, key string, err error) {
112url = "https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.0/clang+llvm-10.0.0-x86…
[all …]
/third_party/cef/tests/ceftests/
Ddownload_unittest.cc2 // reserved. Use of this source code is governed by a BSD-style license that
20 const char kTestDomain[] = "test-download.com";
21 const char kTestStartUrl[] = "http://test-download.com/test.html";
22 const char kTestDownloadUrl[] = "http://test-download.com/download.txt";
23 const char kTestNavUrl[] = "http://test-download-nav.com/nav.html";
28 const char kTestContent[] = "Download test text";
46 std::string url = request->GetURL(); in Open() local
47 if (url == kTestDownloadUrl) { in Open()
48 got_download_request_->yes(); in Open()
71 response->SetStatus(200); in GetResponseHeaders()
[all …]
/third_party/node/tools/configure.d/
Dnodedownload.py36 def retrievefile(url, targetfile): argument
37 """fetch file 'url' as 'targetfile'. Return targetfile or throw."""
39 sys.stdout.write(' <%s>\nConnecting...\r' % url)
41 ConfigOpener().retrieve(url, targetfile, reporthook=reporthook)
48 print(' ** Error occurred while downloading\n <%s>' % url)
84 packedsuffix = packedfile.lower().split('.')[-1] # .zip, .tgz etc
87 # List of possible "--download=" types.
90 # Default options for --download.
94 """This function calculates the '--help' text for '--download'."""
95 return """Select which packages may be auto-downloaded.
[all …]
/third_party/curl/docs/
DFEATURES.md1 # Features -- what curl can do
5 - config file support
6 - multiple URLs in a single command line
7 - range "globbing" support: [0-13], {one,two,three}
8 - multiple file upload on a single command line
9 - custom maximum transfer rate
10 - redirect stderr
11 - parallel transfers
15 - full URL syntax with no length limit
16 - custom maximum download time
[all …]
/third_party/node/deps/npm/node_modules/tuf-js/dist/
Dfetcher.js9 const make_fetch_happen_1 = __importDefault(require("make-fetch-happen"));
15 // Download file from given URL. The file is downloaded to a temporary
19 async downloadFile(url, maxLength, handler) { argument
21 const reader = await this.fetch(url);
43 // Download bytes from given URL.
44 async downloadBytes(url, maxLength) { argument
45 return this.downloadFile(url, maxLength, async (file) => {
62 async fetch(url) { argument
63 log('GET %s', url);
64 const response = await (0, make_fetch_happen_1.default)(url, {
[all …]
Dupdater.js38 const url = __importStar(require("./utils/url")); constant
78 throw new error_1.ValueError('Target base URL not set');
90 const targetUrl = url.join(targetBaseUrl, targetFilePath);
91 // Client workflow 5.7.3: download target file
130 const rootUrl = url.join(this.metadataBaseUrl, `${version}.root.json`);
132 // Client workflow 5.3.3: download new root metadata file
134 // Client workflow 5.3.4 - 5.4.7
156 const timestampUrl = url.join(this.metadataBaseUrl, 'timestamp.json');
157 // Client workflow 5.4.1: download timestamp metadata file
160 // Client workflow 5.4.2 - 5.4.4
[all …]
/third_party/python/Tools/peg_generator/scripts/
Ddownload_pypi_packages.py11 prog="download_pypi_packages", description="Helper program to download PyPI packages",
14 "-n", "--number", type=int, default=100, help="Number of packages to download"
17 "-a", "--all", action="store_true", help="Download all packages listed in the json file"
21 def load_json(filename: str) -> Dict[Any, Any]:
27 def remove_json(filename: str) -> None:
32 def download_package_json(package_name: str) -> None:
33 url = f"https://pypi.org/pypi/{package_name}/json"
34 urlretrieve(url, os.path.join("data", f"{package_name}.json"))
37 def download_package_code(name: str, package_json: Dict[Any, Any]) -> None:
38 source_index = -1
[all …]
/third_party/python/Tools/msi/
Dbuildrelease.bat17 rem This is the URL that will be used to download installation files.
18 rem The files available from the default URL *will* conflict with your
22 rem The following substitutions will be applied to the download URL:
33 set EXTERNALS=%D%..\..\externals\windows-installer\
39 set PGO=-m test -q --pgo
46 if "%1" EQU "-h" goto Help
47 if "%1" EQU "-c" (set CERTNAME=%~2) && shift && shift && goto CheckOpts
48 if "%1" EQU "--certificate" (set CERTNAME=%~2) && shift && shift && goto CheckOpts
49 if "%1" EQU "-o" (set OUTDIR=%~2) && shift && shift && goto CheckOpts
50 if "%1" EQU "--out" (set OUTDIR=%~2) && shift && shift && goto CheckOpts
[all …]
/third_party/node/deps/npm/node_modules/node-gyp/lib/
Dinstall.js3 const fs = require('graceful-fs')
5 const { backOff } = require('exponential-backoff')
14 const fetch = require('make-fetch-happen')
15 const processRelease = require('./process-release')
20 * @param {typeof import('graceful-fs')} fs
25 // Detecting target_arch based on logic from create-cnfig-gyp.js. Used on Windows only.
42 // 0.x.y-pre versions are not published yet and cannot be installed. Bail.
46 throw new Error('"pre" versions of node cannot be installed, use the --nodedir flag instead')
48 log.verbose('--nodedir flag was passed; skipping install', gyp.opts.nodedir)
58 // If '--ensure' was passed, then don't *always* install the version;
[all …]
Dprocess-release.js1 /* eslint-disable node/no-deprecated-api */
6 const url = require('url') constant
10 // versions where -headers.tar.gz started shipping
12 const bitsre = /\/win-(x86|x64|arm64)\//
13 const bitsreV3 = /\/win-(x86|ia32|x64)\// // io.js v3.x.x shipped with "ia32" but should
16 // Captures all the logic required to determine download URLs, local directory and
17 // file names. Inputs come from command-line switches (--target, --dist-url),
22 var overrideDistUrl = gyp.opts['dist-url'] || gyp.opts.disturl
44 // can't use process.release if we're using --target=x.y.z
53 // old node or alternative --target=
[all …]
/third_party/icu/docs/processes/release/tasks/publish/
Dindex.md1 ---
7 ---
9 <!--
12 -->
18 {: .no_toc .text-delta }
23 ---
30 ---
36 Build the icu-demos module following the README's. Update code and/or docs as
37 needed. "Reference" platforms for icu-demos are: RedHat Linux and win32. On Linux,
38 icu-demos is built against the "make install "'ed ICU. So, run ICU4C's configure
[all …]
/third_party/cef/tools/automate/
Dautomate-git.py2 # reserved. Use of this source code is governed by a BSD-style license that
33 depot_tools_archive_url = 'https://storage.googleapis.com/chrome-infra/depot_tools.zip'
53 sys.stdout.write('--> ' + message + "\n")
63 sys.stdout.write('-------- Running "'+command_line+'" in "'+\
73 with open(output_file, 'w', encoding='utf-8') as fp:
135 sys.stdout.write("-------- Running \"%s\" in \"%s\"...\n" % (cmd, path))
150 return {'out': out.decode('utf-8'), 'err': err.decode('utf-8')}
155 cmd = "%s rev-parse %s" % (git_exe, branch)
164 cmd = "%s show -s --format=%%ct %s" % (git_exe, branch)
168 int(result['out'].strip())).strftime('%Y-%m-%d %H:%M:%S UTC')
[all …]
/third_party/skia/toolchain/
Dbuild_toolchain.bzl4 It currently makes use of musl and not glibc because the pre-compiled libraries from the latter
5 have absolute paths baked in and this makes linking difficult. The pre-compiled musl library
8 As inputs, it takes external URLs from which to download the clang binaries/libraries/includes
9 as well as the musl headers and pre-compiled binaries. Those files are downloaded and put
10 into one folder, with a little bit of re-arrangement so clang can find files (like the C runtime).
16 # https://docs.bazel.build/versions/main/skylark/lib/repository_ctx.html#download
17 download_info = ctx.download(
18 url = deb,
24 # This uses the extracted llvm-ar that comes with clang.
25 ctx.execute(["bin/llvm-ar", "x", "deb.ar"])
[all …]
/third_party/cef/include/
Dcef_download_item.h30 // ---------------------------------------------------------------------------
44 // Class used to represent a download item.
46 /*--cef(source=library)--*/
53 /*--cef()--*/
57 // Returns true if the download is in progress.
59 /*--cef()--*/
63 // Returns true if the download is complete.
65 /*--cef()--*/
69 // Returns true if the download has been canceled or interrupted.
71 /*--cef()--*/
[all …]
/third_party/cef/include/capi/
Dcef_download_item_capi.h30 // ---------------------------------------------------------------------------
50 // Structure used to represent a download item.
65 // Returns true (1) if the download is in progress.
70 // Returns true (1) if the download is complete.
75 // Returns true (1) if the download has been canceled or interrupted.
85 // Returns the rough percent complete or -1 if the receive total size is
101 // Returns the time that the download started.
106 // Returns the time that the download ended.
118 // Returns the unique identifier for this download.
123 // Returns the URL.
[all …]
/third_party/curl/docs/cmdline-opts/
Dpage-header21 .\" * SPDX-License-Identifier: curl
29 curl \- transfer a URL
38 curl is powered by libcurl for all transfer-related features. See
40 .SH URL
41 The URL syntax is protocol-dependent. You find a detailed description in
44 If you provide a URL without a leading **protocol://** scheme, curl guesses
46 often-used host name prefixes. For example, for host names starting with
50 sequential manner in the specified order unless you use --parallel. You can
60 Provide an IPv6 zone id in the URL with an escaped percentage sign. Like in
65 its argument, curl assumes is a URL and treats it as such.
[all …]
/third_party/elfutils/doc/
Ddebuginfod-client-config.71 '\"! tbl | nroff \-man
5 .TH DEBUGINFOD-CLIENT-CONFIG 7
7 debuginfod-client-config \- debuginfod client environment variables, cache control files and etc.
12 .\" The preceding section permits this man page to be viewed as if self-contained.
25 This environment variable contains a list of URL prefixes for trusted
26 debuginfod instances. Alternate URL prefixes are separated by space.
33 downloaded files and cache-control files are kept. The default
58 This environment variable governs the download \fIcommencing\fP
66 \fIcomplete\fP the download a file found on a server in seconds. It is best
73 download in bytes. This is best used if the user would like to ensure
[all …]
/third_party/skia/tools/skqp/
Ddownload_model.py4 # Use of this source code is governed by a BSD-style license that can be
26 def download(md5, path): function
34 url = 'https://storage.googleapis.com/skia-skqp-assets/' + md5
36 shutil.copyfileobj(urllib2.urlopen(url), o)
54 download(md5, file_list_file)
63 pool.apply_async(download, record, callback=lambda x: sys.stderr.write('.'))
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/
Dest.c2 * Hotspot 2.0 OSU client - EST client
3 * Copyright (c) 2012-2014, Qualcomm Atheros, Inc.
26 #include "utils/xml-utils.h"
27 #include "utils/http-utils.h"
41 int i, num, ret = -1; in pkcs7_to_cert()
64 switch (OBJ_obj2nid(p7->type)) { in pkcs7_to_cert()
66 certs = p7->d.sign->cert; in pkcs7_to_cert()
69 certs = p7->d.signed_and_enveloped->cert; in pkcs7_to_cert()
121 int est_load_cacerts(struct hs20_osu_client *ctx, const char *url) in est_load_cacerts() argument
129 buflen = os_strlen(url) + 100; in est_load_cacerts()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/hs20/client/
Dest.c2 * Hotspot 2.0 OSU client - EST client
3 * Copyright (c) 2012-2014, Qualcomm Atheros, Inc.
26 #include "utils/xml-utils.h"
27 #include "utils/http-utils.h"
41 int i, num, ret = -1; in pkcs7_to_cert()
64 switch (OBJ_obj2nid(p7->type)) { in pkcs7_to_cert()
66 certs = p7->d.sign->cert; in pkcs7_to_cert()
69 certs = p7->d.signed_and_enveloped->cert; in pkcs7_to_cert()
121 int est_load_cacerts(struct hs20_osu_client *ctx, const char *url) in est_load_cacerts() argument
129 buflen = os_strlen(url) + 100; in est_load_cacerts()
[all …]

12345678910>>...18