| /third_party/mesa3d/.gitlab-ci/piglit/ |
| D | build-piglit_backport-s3-migration.diff | 1 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/ |
| D | download-test-fonts.py | 3 """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/ |
| D | chkspeed.c | 21 * 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/skia/third_party/externals/swiftshader/tests/regres/llvm/ |
| D | llvm.go | 7 // 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) { 112 …url = "https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.0/clang+llvm-10.0.0-x86… [all …]
|
| /third_party/node/tools/configure.d/ |
| D | nodedownload.py | 36 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/ |
| D | FEATURES.md | 1 # 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 - URL RFC 3986 syntax 16 - custom maximum download time [all …]
|
| /third_party/node/deps/npm/node_modules/tuf-js/dist/ |
| D | fetcher.js | 9 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 …]
|
| D | updater.js | 38 const url = __importStar(require("./utils/url")); constant 96 throw new error_1.ValueError('Target base URL not set'); 108 const targetUrl = url.join(targetBaseUrl, targetFilePath); 109 // Client workflow 5.7.3: download target file 148 const rootUrl = url.join(this.metadataBaseUrl, `${version}.root.json`); 150 // Client workflow 5.3.3: download new root metadata file 152 // Client workflow 5.3.4 - 5.4.7 179 const timestampUrl = url.join(this.metadataBaseUrl, 'timestamp.json'); 180 // Client workflow 5.4.1: download timestamp metadata file 183 // Client workflow 5.4.2 - 5.4.4 [all …]
|
| /third_party/python/Tools/peg_generator/scripts/ |
| D | download_pypi_packages.py | 12 description="Helper program to download PyPI packages", 15 "-n", "--number", type=int, default=100, help="Number of packages to download" 18 "-a", "--all", action="store_true", help="Download all packages listed in the json file" 22 def load_json(filename: str) -> Dict[Any, Any]: 28 def remove_json(filename: str) -> None: 33 def download_package_json(package_name: str) -> None: 34 url = f"https://pypi.org/pypi/{package_name}/json" 35 urlretrieve(url, os.path.join("data", f"{package_name}.json")) 38 def download_package_code(name: str, package_json: Dict[Any, Any]) -> None: 39 source_index = -1 [all …]
|
| /third_party/python/Tools/msi/ |
| D | buildrelease.bat | 19 rem This is the URL that will be used to download installation files. 20 rem The files available from the default URL *will* conflict with your 24 rem The following substitutions will be applied to the download URL: 35 set EXTERNALS=%D%..\..\externals\windows-installer\ 42 set PGO=-m test -q --pgo 49 if "%1" EQU "-h" goto Help 50 if "%1" EQU "-c" (set CERTNAME=%~2) && shift && shift && goto CheckOpts 51 if "%1" EQU "--certificate" (set CERTNAME=%~2) && shift && shift && goto CheckOpts 52 if "%1" EQU "-o" (set OUTDIR=%~2) && shift && shift && goto CheckOpts 53 if "%1" EQU "--out" (set OUTDIR=%~2) && shift && shift && goto CheckOpts [all …]
|
| /third_party/node/deps/npm/node_modules/node-gyp/lib/ |
| D | process-release.js | 1 /* eslint-disable n/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 let overrideDistUrl = gyp.opts['dist-url'] || gyp.opts.disturl 43 // can't use process.release if we're using --target=x.y.z 52 // old node or alternative --target= [all …]
|
| D | download.js | 1 const fetch = require('make-fetch-happen') 2 const { promises: fs } = require('graceful-fs') 5 async function download (gyp, url) { function 6 log.http('GET', url) 10 'User-Agent': `node-gyp v${gyp.version} (node ${process.version})`, 11 Connection: 'keep-alive' 22 const res = await fetch(url, requestOpts) 23 log.http(res.status, res.url) 32 const re = /(-----BEGIN CERTIFICATE-----[\S\s]*?-----END CERTIFICATE-----)/g 37 download, property
|
| /third_party/curl/docs/cmdline-opts/ |
| D | _PROTOCOLS.md | 1 <!-- Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. --> 2 <!-- SPDX-License-Identifier: curl --> 4 curl supports numerous protocols, or put in URL terms: schemes. Your 9 Read or write local files. curl does not support accessing file:// URL 22 Using the mail reading protocol, curl can "download" emails for you. With or 35 and curl can download it. 43 curl supports SMB version 1 for upload and download. 48 Telling curl to fetch a telnet URL starts an interactive session where it
|
| /third_party/icu/docs/processes/release/tasks/publish/ |
| D | index.md | 1 --- 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/benchmark/bazel/ |
| D | benchmark_deps.bzl | 12 …https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib… 13 … "https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz", 21 strip_prefix = "rules_foreign_cc-0.7.1", 22 url = "https://github.com/bazelbuild/rules_foreign_cc/archive/0.7.1.tar.gz", 28 …url = "https://github.com/bazelbuild/rules_python/releases/download/0.1.0/rules_python-0.1.0.tar.g… 36 strip_prefix = "abseil-cpp-20200225.2", 37 urls = ["https://github.com/abseil/abseil-cpp/archive/20200225.2.tar.gz"], 44 tag = "release-1.11.0", 63 strip_prefix = "libpfm-4.11.0", 64 … urls = ["https://sourceforge.net/projects/perfmon2/files/libpfm4/libpfm-4.11.0.tar.gz/download"],
|
| /third_party/skia/toolchain/ |
| D | build_toolchain.bzl | 4 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/elfutils/doc/ |
| D | debuginfod-client-config.7 | 1 '\"! 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 …]
|
| D | debuginfod_find_debuginfo.3 | 1 '\"! tbl | nroff \-man 18 debuginfod_find_debuginfo \- request debuginfo from debuginfod 24 Link with \fB-ldebuginfod\fP. 86 a null-terminated, lowercase hex string or a binary blob. If 99 names with the CU compilation-directory, followed by a mandatory "/". 158 such as an exact download size becomes known. 161 \fIinterrupt\fP the download operation. (The library does \fInot\fP 185 .SS "URL" 187 The URL of the current or most recent outgoing download, if known, 203 indicates success, but out-of-memory conditions may result in [all …]
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/ |
| D | est.c | 2 * 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/ |
| D | est.c | 2 * 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/skia/tools/skqp/ |
| D | download_model.py | 4 # 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/node/deps/corepack/ |
| D | README.md | 3 Corepack is a zero-runtime-dependency Node.js script that acts as a bridge 24 npm uninstall -g yarn pnpm 27 # be more tedious - for example, you might need to run `brew uninstall yarn` as well. 33 npm install -g corepack 56 - **If the local project is configured for the package manager you're using**, 57 Corepack will silently download and cache the latest compatible version. 59 - **If the local project is configured for a different package manager**, 61 manager - thus avoiding corruptions of your install artifacts. 63 - **If the local project isn't configured for any package manager**, Corepack 79 along with the SHA-224 hash of this version for validation. [all …]
|
| /third_party/python/Tools/ssl/ |
| D | multissltests.py | 23 (c) 2013-2017 Christian Heimes <christian@python.org> 75 '--debug', 80 '--disable-ancient', 85 '--openssl', 94 '--libressl', 103 '--tests', 109 '--base-directory', 114 '--no-network', 120 '--steps', 130 '--system', [all …]
|
| /third_party/skia/ |
| D | WORKSPACE.bazel | 6 # See https://github.com/emscripten-core/emsdk/tree/85d27a4a2a60d591613a305b14ae438c2bb3ce11/bazel#… 10 strip_prefix = "emsdk-2.0.32/bazel", 11 url = "https://github.com/emscripten-core/emsdk/archive/refs/tags/2.0.32.tar.gz", 25 … From https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.0/clang+llvm-13.0.0-x86_… 26 clang_prefix = "clang+llvm-13.0.0-x86_64-linux-gnu-ubuntu-20.04/", 28 …rl = "https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.0/clang+llvm-13.0.0-x86_… 29 # From https://packages.debian.org/bullseye/amd64/musl-dev/download 31 musl_dev_url = "http://ftp.debian.org/debian/pool/main/m/musl/musl-dev_1.2.2-1_amd64.deb", 38 … "https://github.com/bazelbuild/bazel-skylib/releases/download/1.1.1/bazel-skylib-1.1.1.tar.gz", 39 …https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.1.1/bazel-skylib…
|
| /third_party/skia/infra/bots/assets/text_blob_traces/ |
| D | README.md | 5 ------ 7 Download and build Chromium as usual, but add the line 12 Run `chrome --no-sandbox URL` Trace files will be written to the current 16 ------ 21 infra/bots/assets/assets.py upload -t text_blob_traces text_blob_traces 25 Download section in Text Blob Traces 26 -------- 30 infra/bots/assets/assets.py download -t text_blob_traces text_blob_traces 33 ----------------------- 35 tools/git-sync-deps [all …]
|