Searched refs:hwm (Results 1 – 11 of 11) sorted by relevance
33 const hwm = highWaterMarkFrom(options, isDuplex, duplexKey);34 if (hwm != null) {35 if (!NumberIsInteger(hwm) || hwm < 0) {37 throw new ERR_INVALID_ARG_VALUE(name, hwm);39 return MathFloor(hwm);
34 const hwm = 10; constant35 const r = stream.Readable({ highWaterMark: hwm, autoDestroy: false });38 const data = Buffer.allocUnsafe(chunks * hwm + Math.ceil(hwm / 2));
76 const hwm = 0x40000000 + 1; constant81 assert.throws(() => readable.read(hwm), common.expectsError({85 hwm,
25 const hwm = 10; constant35 highWaterMark: hwm,55 if (chunk.length !== hwm) {
8 const hwm = req.socket.writableHighWaterMark; constant9 assert.strictEqual(res.writableHighWaterMark, hwm);
20 const hwm = req.socket.writableHighWaterMark;21 assert.strictEqual(res.writableHighWaterMark, hwm);
304 option specifies a [total number of bytes][hwm-gotcha]. For streams operating3863 * `highWaterMark` {number} The maximum [number of bytes][hwm-gotcha] to store4816 [hwm-gotcha]: #highwatermark-discrepancy-after-calling-readablesetencoding
253 * streams: set default hwm properly for Duplex (Andrew Oppenlander)
2138 …://github.com/nodejs/node/commit/2505f678ef)] - **http**: support readable hwm in IncomingMessage …
3647 …//github.com/nodejs/node/commit/bf3991b406)] - **stream**: fix 0 transform hwm backpressure (Rober…
3407 …s/node/commit/86369e4ac5)] - **(SEMVER-MINOR)** **http**: support readable hwm in IncomingMessage …