Home
last modified time | relevance | path

Searched refs:maxCachedSessions (Results 1 – 14 of 14) sorted by relevance

/third_party/node/deps/undici/src/lib/core/
Dconnect.js18 constructor (maxCachedSessions) { argument
19 this._maxCachedSessions = maxCachedSessions
49 constructor (maxCachedSessions) { argument
50 this._maxCachedSessions = maxCachedSessions
74 function buildConnector ({ maxCachedSessions, socketPath, timeout, ...opts }) { property
75 …if (maxCachedSessions != null && (!Number.isInteger(maxCachedSessions) || maxCachedSessions < 0)) {
80 const sessionCache = new SessionCache(maxCachedSessions == null ? 100 : maxCachedSessions)
/third_party/node/deps/npm/node_modules/agentkeepalive/lib/
Dhttps_agent.js16 this.maxCachedSessions = this.options.maxCachedSessions;
18 if (this.maxCachedSessions === undefined) {
19 this.maxCachedSessions = 100;
/third_party/node/lib/
Dhttps.js190 this.maxCachedSessions = this.options.maxCachedSessions;
191 if (this.maxCachedSessions === undefined)
192 this.maxCachedSessions = 100;
305 if (this.maxCachedSessions === 0)
315 if (this._sessionCache.list.length >= this.maxCachedSessions) {
/third_party/node/deps/undici/src/lib/
Dpool.js33 maxCachedSessions, property
56 maxCachedSessions, property
Dclient.js153 maxCachedSessions, property
258 maxCachedSessions, property
/third_party/node/deps/undici/src/types/
Dconnector.d.ts10 maxCachedSessions?: number | null;
Dclient.d.ts60 maxCachedSessions?: number;
/third_party/node/test/parallel/
Dtest-https-agent-disable-session-reuse.js23 maxCachedSessions: 0 property
Dtest-https-agent-session-reuse.js23 maxCachedSessions: 1 property
/third_party/node/deps/undici/src/docs/api/
DConnector.md16 * **maxCachedSessions** `number | null` (optional) - Default: `100` - Maximum number of TLS cached …
DClient.md44 * **maxCachedSessions** `number | null` (optional) - Default: `100` - Maximum number of TLS cached …
/third_party/node/doc/api/
Dhttps.md56 description: support `0` `maxCachedSessions` to disable TLS session caching.
59 description: parameter `maxCachedSessions` added to `options` for TLS
78 * `maxCachedSessions` {number} maximum number of TLS cached sessions.
/third_party/node/deps/undici/
Dundici.js6478 constructor(maxCachedSessions) { argument
6479 this._maxCachedSessions = maxCachedSessions;
6505 constructor(maxCachedSessions) { argument
6506 this._maxCachedSessions = maxCachedSessions;
6524 function buildConnector({ allowH2, maxCachedSessions, socketPath, timeout, ...opts }) { property
6525 …if (maxCachedSessions != null && (!Number.isInteger(maxCachedSessions) || maxCachedSessions < 0)) {
6529 const sessionCache = new SessionCache(maxCachedSessions == null ? 100 : maxCachedSessions);
7275 maxCachedSessions, property
7354 maxCachedSessions, property
8893 maxCachedSessions, property
[all …]
/third_party/node/doc/changelogs/
DCHANGELOG_V11.md486 …/nodejs/node/commit/6cc559fbec)] - **doc**: add missing https Agent maxCachedSessions (Nicolas Mot…