Searched refs:maxConcurrentStreams (Results 1 - 11 of 11) sorted by relevance
/third_party/node/test/parallel/ |
H A D | test-http2-perf_hooks.js | 26 assert.strictEqual(typeof entry.maxConcurrentStreams, 'number'); 34 assert.strictEqual(typeof entry.detail.maxConcurrentStreams, 'number');
|
H A D | test-http2-binding.js | 19 assert.strictEqual(settings.maxConcurrentStreams, 4294967295);
|
/third_party/node/lib/internal/http2/ |
H A D | util.js | 312 holder.maxConcurrentStreams = 344 maxConcurrentStreams: settingsBuffer[IDX_SETTINGS_MAX_CONCURRENT_STREAMS], 359 if (typeof settings.maxConcurrentStreams === 'number') { 362 settings.maxConcurrentStreams;
|
H A D | core.js | 941 // 4. maxConcurrentStreams must be a number in the range 0 <= n <= kMaxStreams 957 assertWithinRange('maxConcurrentStreams', 958 settings.maxConcurrentStreams, 3369 settings.maxConcurrentStreams = value;
|
/third_party/node/benchmark/http2/ |
H A D | write.js | 35 maxConcurrentStreams: streams,
|
H A D | compat.js | 32 maxConcurrentStreams: streams,
|
H A D | respond-with-fd.js | 33 maxConcurrentStreams: streams,
|
H A D | simple.js | 30 maxConcurrentStreams: streams,
|
/third_party/node/deps/undici/src/lib/ |
H A D | client.js | 163 maxConcurrentStreams 251 if (maxConcurrentStreams != null && (typeof maxConcurrentStreams !== 'number' || maxConcurrentStreams < 1)) { 252 throw new InvalidArgumentError('maxConcurrentStreams must be a possitive integer, greater than 0') 300 maxConcurrentStreams: maxConcurrentStreams != null ? maxConcurrentStreams : 100 // Max peerConcurrentStreams for a Node h2 server 1235 peerMaxConcurrentStreams: client[kHTTP2SessionState].maxConcurrentStreams
|
/third_party/node/deps/undici/ |
H A D | undici.js | 8454 maxConcurrentStreams 8517 if (maxConcurrentStreams != null && (typeof maxConcurrentStreams !== "number" || maxConcurrentStreams < 1)) { 8518 throw new InvalidArgumentError("maxConcurrentStreams must be a possitive integer, greater than 0"); 8560 maxConcurrentStreams: maxConcurrentStreams != null ? maxConcurrentStreams : 100 9260 peerMaxConcurrentStreams: client[kHTTP2SessionState].maxConcurrentStreams
|
/third_party/node/src/ |
H A D | node_http2.cc | 741 uint32_t maxConcurrentStreams = in CanAddStream() local 745 std::min(streams_.max_size(), static_cast<size_t>(maxConcurrentStreams)); in CanAddStream()
|
Completed in 26 milliseconds