/third_party/node/test/parallel/ |
D | test-child-process-execfile-maxbuf.js | 36 const options = { maxBuffer: Infinity }; property 50 execFile('echo', ['hello world'], { maxBuffer: 5 }, checkFactory('stdout')); property 59 { maxBuffer: 10 }, property 67 { maxBuffer: 10 }, property 76 { encoding: null, maxBuffer: 10 }, property 87 { encoding: null, maxBuffer: 10 }, property
|
D | test-child-process-exec-maxbuf.js | 38 const options = { maxBuffer: Infinity }; property 51 { maxBuffer: 5 }, property 94 { maxBuffer: 10 }, property 106 { maxBuffer: 3 }, property 118 { encoding: null, maxBuffer: 10 }, property 132 { encoding: null, maxBuffer: 3 }, property 146 { encoding: null, maxBuffer: 5 }, property
|
D | test-child-process-execfilesync-maxbuf.js | 21 execFileSync(process.execPath, args, { maxBuffer: 1 }); property 35 const ret = execFileSync(process.execPath, args, { maxBuffer: Infinity }); property
|
D | test-child-process-execsync-maxbuf.js | 21 execSync(`"${process.execPath}" ${args.join(' ')}`, { maxBuffer: 1 }); property 37 { maxBuffer: Infinity } property
|
D | test-child-process-spawnsync-maxbuf.js | 20 const ret = spawnSync(process.execPath, args, { maxBuffer: 1 }); property 32 const ret = spawnSync(process.execPath, args, { maxBuffer: Infinity }); property
|
D | test-async-wrap-pop-id-during-load.js | 20 { maxBuffer: Infinity } property
|
D | test-tick-processor-arguments.js | 29 { cwd: tmpdir.path, encoding: 'utf8', maxBuffer: Infinity }); property
|
D | test-child-process-exec-kill-throws.js | 22 const options = { maxBuffer: 0, killSignal: 'SIGKILL' }; property
|
D | test-fs-readfilesync-pipe-large.js | 31 { maxBuffer: 1000000 }, property
|
D | test-fs-readfile-pipe-large.js | 32 exec(cmd, { maxBuffer: 1000000 }, common.mustSucceed((stdout, stderr) => { property
|
D | test-cli-node-options.js | 96 maxBuffer: 1e6, property
|
/third_party/node/deps/npm/node_modules/execa/node_modules/get-stream/ |
D | index.js | 9 opts = Object.assign({maxBuffer: Infinity}, opts); property 11 const maxBuffer = opts.maxBuffer; 29 if (stream.getBufferedLength() > maxBuffer) {
|
D | readme.md | 64 ##### maxBuffer l4subsection 75 It honors the `maxBuffer` option as above, but it refers to byte length rather than string length. 81 It honors both the `maxBuffer` and `encoding` options. The behavior changes slightly based on the e… 83 …s/) and collects values emitted from `stream` unmodified. In this case `maxBuffer` refers to the n… 85 - When `encoding` is set to `buffer`, it collects an array of buffers. `maxBuffer` refers to the su… 87 - When `encoding` is set to anything else, it collects an array of strings. `maxBuffer` refers to t…
|
/third_party/node/deps/npm/node_modules/got/node_modules/get-stream/ |
D | index.js | 9 opts = Object.assign({maxBuffer: Infinity}, opts); property 11 const maxBuffer = opts.maxBuffer; 29 if (stream.getBufferedLength() > maxBuffer) {
|
D | readme.md | 64 ##### maxBuffer l4subsection 75 It honors the `maxBuffer` option as above, but it refers to byte length rather than string length. 81 It honors both the `maxBuffer` and `encoding` options. The behavior changes slightly based on the e… 83 …s/) and collects values emitted from `stream` unmodified. In this case `maxBuffer` refers to the n… 85 - When `encoding` is set to `buffer`, it collects an array of buffers. `maxBuffer` refers to the su… 87 - When `encoding` is set to anything else, it collects an array of strings. `maxBuffer` refers to t…
|
/third_party/node/lib/ |
D | child_process.js | 295 maxBuffer: MAX_BUFFER, property 307 validateMaxBuffer(options.maxBuffer); 439 if (stdoutLen > options.maxBuffer) { 440 const truncatedLen = options.maxBuffer - (stdoutLen - length); 462 if (stderrLen > options.maxBuffer) { 463 const truncatedLen = options.maxBuffer - (stderrLen - length); 734 maxBuffer: MAX_BUFFER, property 744 validateMaxBuffer(options.maxBuffer); 879 function validateMaxBuffer(maxBuffer) { argument 880 if (maxBuffer != null && !(typeof maxBuffer === 'number' && maxBuffer >= 0)) { [all …]
|
/third_party/node/deps/npm/node_modules/execa/ |
D | index.js | 37 maxBuffer: TEN_MEGABYTES, property 103 function getStream(process, stream, encoding, maxBuffer) { argument 113 maxBuffer field 116 ret = _getStream.buffer(process[stream], {maxBuffer}); field 135 const maxBuffer = parsed.opts.maxBuffer; constant 200 getStream(spawned, 'stdout', encoding, maxBuffer), 201 getStream(spawned, 'stderr', encoding, maxBuffer)
|
/third_party/node/deps/npm/node_modules/get-stream/ |
D | readme.md | 67 ##### maxBuffer l4subsection 78 It honors the `maxBuffer` option as above, but it refers to byte length rather than string length. 84 It honors both the `maxBuffer` and `encoding` options. The behavior changes slightly based on the e… 86 …s/) and collects values emitted from `stream` unmodified. In this case `maxBuffer` refers to the n… 88 - When `encoding` is set to `buffer`, it collects an array of buffers. `maxBuffer` refers to the su… 90 - When `encoding` is set to anything else, it collects an array of strings. `maxBuffer` refers to t…
|
D | index.js | 17 options = Object.assign({maxBuffer: Infinity}, options); property 19 const {maxBuffer} = options; 40 if (stream.getBufferedLength() > maxBuffer) {
|
/third_party/node/test/es-module/ |
D | test-esm-type-flag-errors.js | 40 maxBuffer: 1e6, property
|
/third_party/typescript/src/testRunner/unittests/tsc/ |
D | etsTests.ts | 15 maxBuffer: 1 * 1024 * 1024,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
D | trace_fixture.cpp | 201 uint32_t maxBuffer, in InitializeReplay2() argument 217 gBufferMap2 = AllocateZeroedUints(maxBuffer); in InitializeReplay2()
|
D | trace_fixture.h | 92 uint32_t maxBuffer,
|
/third_party/typescript/scripts/importDefinitelyTypedTests/ |
D | importDefinitelyTypedTests.ts | 63 maxBuffer: 1 * 1024 * 1024,
|
/third_party/node/doc/api/ |
D | child_process.md | 173 * `maxBuffer` {number} Largest amount of data in bytes allowed on stdout or 175 truncated. See caveat at [`maxBuffer` and Unicode][]. 297 * `maxBuffer` {number} Largest amount of data in bytes allowed on stdout or 299 truncated. See caveat at [`maxBuffer` and Unicode][]. 896 * `maxBuffer` {number} Largest amount of data in bytes allowed on stdout or 898 [`maxBuffer` and Unicode][]. **Default:** `1024 * 1024`. 966 * `maxBuffer` {number} Largest amount of data in bytes allowed on stdout or 968 truncated. See caveat at [`maxBuffer` and Unicode][]. 1036 * `maxBuffer` {number} Largest amount of data in bytes allowed on stdout or 1038 truncated. See caveat at [`maxBuffer` and Unicode][]. [all …]
|