Searched refs:crlfDelay (Results 1 – 9 of 9) sorted by relevance
/third_party/node/test/parallel/ |
D | test-readline-interface.js | 80 ].forEach((crlfDelay) => { 81 const [rli] = getInterface({ crlfDelay }); field 82 assert.strictEqual(rli.crlfDelay, Math.max(crlfDelay || 100, 100)); 1043 const crlfDelay = 200; constant 1044 const [rli, fi] = getInterface({ terminal, crlfDelay }); field 1054 }), crlfDelay + 10); 1061 const crlfDelay = Infinity; constant 1066 const [rli, fi] = getInterface({ terminal, crlfDelay }); field 1084 const [rli, fi] = getInterface({ terminal, crlfDelay }); field 1095 const [rli, fi] = getInterface({ terminal, crlfDelay }); field [all …]
|
D | test-readline-async-iterators.js | 29 crlfDelay: Infinity property 53 crlfDelay: Infinity property
|
D | test-readline-async-iterators-destroy.js | 30 crlfDelay: Infinity property 61 crlfDelay: Infinity property
|
D | test-readline-async-iterators-backpressure.js | 17 crlfDelay: Infinity property
|
/third_party/node/lib/ |
D | readline.js | 151 let crlfDelay; 185 crlfDelay = input.crlfDelay; 224 this.crlfDelay = crlfDelay ? 225 MathMax(kMincrlfDelay, crlfDelay) : kMincrlfDelay; 567 DateNow() - this._sawReturnAt <= this.crlfDelay) { 942 DateNow() - this._sawReturnAt > this.crlfDelay) { 1142 DateNow() - this._sawReturnAt > this.crlfDelay) {
|
/third_party/node/tools/ |
D | find-inactive-collaborators.mjs | 64 crlfDelay: Infinity, property 106 crlfDelay: Infinity, property
|
/third_party/node/doc/api/ |
D | readline.md | 560 description: Remove max limit of `crlfDelay` option. 563 description: The `crlfDelay` option is supported now. 594 * `crlfDelay` {number} If the delay between `\r` and `\n` exceeds 595 `crlfDelay` milliseconds, both `\r` and `\n` will be treated as separate 596 end-of-line input. `crlfDelay` will be coerced to a number no less than 787 crlfDelay: Infinity 789 // Note: we use the crlfDelay option to recognize all instances of CR LF 809 crlfDelay: Infinity 829 crlfDelay: Infinity
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V8.md | 2221 …s://github.com/nodejs/node/commit/497bfff7b2)] - **doc**: clarify using crlfDelay with fs streams … 2253 …om/nodejs/node/commit/c2f0700769)] - **doc**: add history for readline `crlfDelay` option (Vse Moz… 3400 …com/nodejs/node/commit/37e55bf559)] - **readline**: remove max limit of crlfDelay (Azard) [#13497]…
|
D | CHANGELOG_V6.md | 1415 …com/nodejs/node/commit/8604772960)] - **readline**: remove max limit of crlfDelay (Azard) [#13497]…
|