/third_party/node/test/parallel/ |
D | test-http-client-agent.js | 43 name = http.globalAgent.getName({ port: server.address().port }); 49 assert(!http.globalAgent.sockets.hasOwnProperty(name)); 50 assert(!http.globalAgent.requests.hasOwnProperty(name)); 63 assert.strictEqual(http.globalAgent.sockets[name].includes(socket),
|
D | test-https-agent-additional-options.js | 48 https.globalAgent.once('free', common.mustCall(() => { 50 const keys = Object.keys(https.globalAgent.freeSockets); 62 https.globalAgent.destroy(); 77 https.globalAgent.keepAlive = true;
|
D | test-http-connect-req-res.js | 43 assert(!http.globalAgent.sockets.hasOwnProperty(name)); 44 assert(!http.globalAgent.requests.hasOwnProperty(name));
|
D | test-http-connect.js | 70 assert(!http.globalAgent.sockets.hasOwnProperty(name)); 71 assert(!http.globalAgent.requests.hasOwnProperty(name));
|
D | test-http-addrequest-localaddress.js | 9 const agent = require('http').globalAgent;
|
D | test-http-parser-free.js | 36 http.globalAgent.maxSockets = 1;
|
D | test-http-client-override-global-agent.js | 14 http.globalAgent = agent;
|
D | test-http-should-keep-alive.js | 45 http.globalAgent.maxSockets = 5;
|
D | test-https-client-override-global-agent.js | 25 https.globalAgent = agent;
|
D | test-https-agent-keylog.js | 44 https.globalAgent.on('keylog', common.mustCall(verifyKeylog, 10));
|
D | test-http-pipe-fs.js | 45 http.globalAgent.maxSockets = 1;
|
D | test-http-default-port.js | 49 mod.globalAgent.defaultPort = server.address().port;
|
D | test-http-upgrade-agent.js | 81 assert(!http.globalAgent.sockets.hasOwnProperty(name));
|
D | test-http-get-pipeline-problem.js | 33 http.globalAgent.maxSockets = 1;
|
/third_party/node/lib/ |
D | http.js | 144 return httpAgent.globalAgent; 147 httpAgent.globalAgent = value;
|
D | https.js | 328 const globalAgent = new Agent(); constant 367 options._defaultAgent = module.exports.globalAgent; 411 globalAgent, property
|
D | _http_agent.js | 512 globalAgent: new Agent() property
|
/third_party/node/test/sequential/ |
D | test-http-max-sockets.js | 35 const agent = http.globalAgent;
|
/third_party/node/deps/npm/node_modules/socks-proxy-agent/node_modules/agent-base/ |
D | README.md | 80 return opts.secureEndpoint ? https.globalAgent : http.globalAgent;
|
/third_party/node/deps/npm/node_modules/agent-base/ |
D | README.md | 80 return opts.secureEndpoint ? https.globalAgent : http.globalAgent;
|
/third_party/node/doc/api/ |
D | https.md | 72 https.globalAgent.on('keylog', (line, tlsSocket) => { 242 ## `https.globalAgent` 278 * `agent` **Default:** `https.globalAgent`
|
/third_party/node/deps/npm/node_modules/socks-proxy-agent/node_modules/agent-base/test/ |
D | test.js | 18 return opts.secureEndpoint ? https.globalAgent : http.globalAgent;
|
/third_party/node/deps/npm/node_modules/agent-base/test/ |
D | test.js | 18 return opts.secureEndpoint ? https.globalAgent : http.globalAgent;
|
/third_party/node/deps/npm/node_modules/agentkeepalive/lib/ |
D | _http_agent.js | 416 exports.globalAgent = new Agent(); variable in exports
|
/third_party/node/deps/npm/node_modules/make-fetch-happen/ |
D | README.md | 128 …t will be automatically used. By default, these will be `http.globalAgent` and `https.globalAgent`.
|