Home
last modified time | relevance | path

Searched refs:maxConcurrentStreams (Results 1 - 11 of 11) sorted by relevance

/third_party/node/test/parallel/
H A Dtest-http2-perf_hooks.js26 assert.strictEqual(typeof entry.maxConcurrentStreams, 'number');
34 assert.strictEqual(typeof entry.detail.maxConcurrentStreams, 'number');
H A Dtest-http2-binding.js19 assert.strictEqual(settings.maxConcurrentStreams, 4294967295);
/third_party/node/lib/internal/http2/
H A Dutil.js312 holder.maxConcurrentStreams =
344 maxConcurrentStreams: settingsBuffer[IDX_SETTINGS_MAX_CONCURRENT_STREAMS],
359 if (typeof settings.maxConcurrentStreams === 'number') {
362 settings.maxConcurrentStreams;
H A Dcore.js941 // 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 Dwrite.js35 maxConcurrentStreams: streams,
H A Dcompat.js32 maxConcurrentStreams: streams,
H A Drespond-with-fd.js33 maxConcurrentStreams: streams,
H A Dsimple.js30 maxConcurrentStreams: streams,
/third_party/node/deps/undici/src/lib/
H A Dclient.js163 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 Dundici.js8454 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 Dnode_http2.cc741 uint32_t maxConcurrentStreams = in CanAddStream() local
745 std::min(streams_.max_size(), static_cast<size_t>(maxConcurrentStreams)); in CanAddStream()

Completed in 26 milliseconds