/third_party/node/deps/npm/node_modules/hosted-git-info/lib/ |
H A D | hosts.js | 15 `https://${domain}/${user}/${project}${maybeJoin('/', editpath, '/', maybeEncode(committish || 'HEAD'), '/', path)}`, 17 `https://${domain}/${user}/${project}${maybeJoin('/', treepath, '/', maybeEncode(committish))}`, 19 `https://${domain}/${user}/${project}/${treepath}/${maybeEncode(committish || 'HEAD')}/${path}${maybeJoin('#', hashformat(fragment || ''))}`, 21 `https://${domain}/${user}/${project}/${blobpath}/${maybeEncode(committish || 'HEAD')}/${path}${maybeJoin('#', hashformat(fragment || ''))}`, 23 `https://${domain}/${user}/${project}${maybeJoin('/', treepath, '/', maybeEncode(committish))}#readme`, 25 `git+https://${maybeJoin(auth, '@')}${domain}/${user}/${project}.git${maybeJoin('#', committish)}`, 27 `https://${domain}/${user}/${project}/raw/${maybeEncode(committish || 'HEAD')}/${path}`, 33 `https://${domain}/${user}/${project}/issues`, 41 protocols: ['git:', 'http:', 'git+ssh:', 'git+https:', 'ssh:', 'https [all...] |
/third_party/node/test/parallel/ |
H A D | test-https-set-timeout-server.js | 30 const https = require('https'); 55 const server = https.createServer(serverOptions); 62 assert.ok(s instanceof https.Server); 63 https.get({ 71 const server = https.createServer( 83 const req = https.request({ 95 const server = https.createServer( 107 https.get({ 115 const server = https [all...] |
H A D | test-https-agent-additional-options.js | 8 const https = require('https'); 19 const server = https.Server(options, (req, res) => { 50 https.globalAgent.once('free', common.mustCall(() => { 52 const keys = Object.keys(https.globalAgent.freeSockets); 64 https.globalAgent.destroy(); 70 https.get({ ...getBaseOptions(port), [key]: val }, 79 https.globalAgent.keepAlive = true; 80 https.get(getBaseOptions(port), variations(updatedValues.entries(), port));
|
H A D | test-https-client-get-url.js | 32 const https = require('https'); 40 const server = https.createServer(options, common.mustCall((req, res) => { 49 const u = `https://${common.localhostIPv4}:${server.address().port}/foo?bar`; 50 https.get(u, common.mustCall(() => { 51 https.get(url.parse(u), common.mustCall(() => { 52 https.get(new URL(u), common.mustCall(() => {
|
H A D | test-https-client-reject.js | 30 const https = require('https'); 37 const server = https.createServer(options, common.mustCall(function(req, res) { 46 const req = https.request({ 64 options.agent = new https.Agent(options); 65 const req = https.request(options, common.mustNotCall()); 77 options.agent = new https.Agent(options); 78 const req = https.request(options, function(res) {
|
H A D | test-http-url.parse-https.request.js | 29 const https = require('https'); 32 // https options 39 // Assert that I'm https 43 const server = https.createServer(httpsOptions, function(request, response) { 52 const testURL = url.parse(`https://localhost:${this.address().port}`); 56 const clientRequest = https.request(testURL); 58 // make sure that the request uses the https.Agent 59 assert.ok(clientRequest.agent instanceof https.Agent);
|
H A D | test-https-client-override-global-agent.js | 7 const https = require('https'); 17 const server = https.Server(options, common.mustCall((req, res) => { 23 const agent = new https.Agent(); 25 https.globalAgent = agent; 32 const req = https.get({
|
H A D | test-https-hwm.js | 3 // Test https highWaterMark 10 const https = require('https'); 19 console.log('back from https request. ', 30 const httpsServer = https.createServer({ 37 console.log(`test https server listening on port ${this.address().port}`); 40 https.request({ 49 https.request({ 58 https.request({
|
H A D | test-https-abortcontroller.js | 8 const https = require('https'); 20 const server = https.createServer(options, () => {}); 25 const req = https.request({ 46 const server = https.createServer(options, () => {}); 52 const req = https.request({ 73 const server = https.createServer(options, () => {}); 80 const req = https.request({
|
H A D | test-https-agent-session-eviction.js | 10 const https = require('https'); 21 https.createServer(options, function(req, res) { 30 const req = https.request({ 46 https.createServer(options, function(req, res) { 55 const req = https.request({
|
H A D | test-https-agent-sni.js | 8 const https = require('https'); 18 const server = https.Server(options, function(req, res) { 39 const agent = new https.Agent({ 43 https.get({ 53 https.get({
|
H A D | test-https-client-checkServerIdentity.js | 29 const https = require('https'); 36 const server = https.createServer(options, common.mustCall(function(req, res) { 45 const req = https.request({ 65 options.agent = new https.Agent(options); 66 const req = https.request(options, function(res) {
|
H A D | test-https-strict.js | 39 const https = require('https'); 62 const agent0 = new https.Agent(); 63 const agent1 = new https.Agent({ ca: [ca1] }); 64 const agent2 = new https.Agent({ ca: [ca2] }); 65 const agent3 = new https.Agent({ ca: [ca1, ca2] }); 97 const s = https.createServer(options, handler); 142 const req = https.get(options);
|
H A D | test-https-insecure-parse-per-stream.js | 9 const https = require('https'); 27 const req = https.request({ 49 const req = https.request({ 66 const server = https.createServer( 97 const server = https.createServer( 124 () => https.request({ insecureHTTPParser: 0 }, common.mustNotCall()),
|
H A D | test-async-wrap-tlssocket-asyncreset.js | 7 // Refs: https://github.com/nodejs/node/issues/13045 10 const https = require('https'); 18 const server = https.createServer( 30 agent: new https.Agent({ 37 const req = https.get( 49 const req2 = https.get(
|
H A D | test-https-client-renegotiation-limit.js | 32 const https = require('https'); 57 const server = https.createServer(options, (req, res) => { 68 const agent = https.Agent({ 82 https.get(`https://localhost:${port}/`, options, (res) => {
|
H A D | test-https-agent-disable-session-reuse.js | 10 const https = require('https'); 22 const agent = new https.Agent({ 26 const server = https.createServer(options, function(req, res) { 38 https.request(options, function(res) {
|
H A D | test-https-agent-session-injection.js | 8 const https = require('https'); 25 const server = https.createServer(options, function(req, res) { 30 const req = https.get({ 43 const second = https.get({
|
H A D | test-https-agent-sockets-leak.js | 7 const https = require('https'); 17 const server = https.Server(options, common.mustCall((req, res) => { 19 res.end('https\n'); 22 const agent = new https.Agent({ 27 https.get({
|
H A D | test-https-simple.js | 30 const https = require('https'); 47 const server = https.createServer(options, serverCallback); 68 const req = https.request(options, common.mustCall((res) => { 84 const checkCertReq = https.request(options, common.mustNotCall()).end();
|
H A D | test-https-options-boolean-check.js | 10 const https = require('https'); 43 // Checks to ensure https.createServer doesn't throw an error 66 https.createServer({ key, cert }); 69 // Checks to ensure https.createServer predictably throws an error 87 https.createServer({ key, cert }); 113 https.createServer({ key, cert }); 123 // Checks to ensure https.createServer works with the CA parameter 134 https.createServer({ key, cert, ca }); 137 // Checks to ensure https [all...] |
H A D | test-https-agent-abort-controller.js | 7 const https = require('https'); 9 const Agent = https.Agent; 20 const server = https.createServer(options); 55 const request = https.get({ 71 const request = https.get({
|
/third_party/skia/third_party/externals/spirv-tools/kokoro/scripts/linux/ |
H A D | build-docker.sh | 49 clone_if_missing https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers --depth=1 50 clone_if_missing https://github.com/google/googletest external/googletest 52 clone_if_missing https://github.com/google/effcee external/effcee --depth=1 53 clone_if_missing https://github.com/google/re2 external/re2 --depth=1 54 clone_if_missing https://github.com/protocolbuffers/protobuf external/protobuf --branch v3.13.0.1 129 git clone https://github.com/google/shaderc.git . 133 git clone https://github.com/google/googletest.git 134 git clone https://github.com/KhronosGroup/glslang.git 136 git clone https://github.com/KhronosGroup/SPIRV-Headers.git spirv-headers 137 git clone https [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/kokoro/scripts/linux/ |
H A D | build-docker.sh | 49 clone_if_missing https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers --depth=1 50 clone_if_missing https://github.com/google/googletest external/googletest 52 clone_if_missing https://github.com/google/effcee external/effcee --depth=1 53 clone_if_missing https://github.com/google/re2 external/re2 --depth=1 54 clone_if_missing https://github.com/protocolbuffers/protobuf external/protobuf --branch v3.13.0.1 129 git clone https://github.com/google/shaderc.git . 133 git clone https://github.com/google/googletest.git 134 git clone https://github.com/KhronosGroup/glslang.git 136 git clone https://github.com/KhronosGroup/SPIRV-Headers.git spirv-headers 137 git clone https [all...] |
/third_party/spirv-tools/kokoro/scripts/linux/ |
H A D | build-docker.sh | 124 git clone https://github.com/google/shaderc.git . 128 git clone https://github.com/google/googletest.git 129 git clone https://github.com/KhronosGroup/glslang.git 131 git clone https://github.com/KhronosGroup/SPIRV-Headers.git spirv-headers 132 git clone https://github.com/google/re2 133 git clone https://github.com/google/effcee 134 git clone https://github.com/abseil/abseil-cpp abseil_cpp
|