Home
last modified time | relevance | path

Searched refs:endStream (Results 1 – 8 of 8) sorted by relevance

/third_party/node/test/parallel/
Dtest-http2-serve-file.js58 { endStream: true }); property
72 { endStream: true }); property
Dtest-http2-forget-closed-streams.js29 endStream: true property
Dtest-http2-status-code.js16 stream.respond({ ':status': status }, { endStream: true }); property
Dtest-http2-client-request-options-errors.js14 endStream: 'boolean', property
/third_party/node/lib/internal/http2/
Dcore.js685 if (options.endStream)
1710 if (options.endStream === undefined) {
1714 options.endStream = isPayloadMeaningless(headers[HTTP2_HEADER_METHOD]);
1715 } else if (typeof options.endStream !== 'boolean') {
1716 throw new ERR_INVALID_OPT_VALUE('endStream', options.endStream);
1727 if (options.endStream)
2617 options.endStream = !!options.endStream;
2633 headRequest = options.endStream = true;
2638 const streamOptions = options.endStream ? STREAM_OPTION_EMPTY_PAYLOAD : 0;
2662 if (options.endStream)
[all …]
Dcompat.js789 endStream: state.ending, property
/third_party/node/doc/api/
Dhttp2.md834 * `endStream` {boolean} `true` if the `Http2Stream` *writable* side should
1475 * `endStream` {boolean} Set to `true` to indicate that the response will not
/third_party/node/doc/changelogs/
DCHANGELOG_V11.md1862 * [[`5051e1bdab`](https://github.com/nodejs/node/commit/5051e1bdab)] - **http2**: cleanup endStream