Home
last modified time | relevance | path

Searched refs:maxBuffer (Results 1 – 25 of 29) sorted by relevance

12

/third_party/node/test/parallel/
Dtest-child-process-execfile-maxbuf.js36 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
Dtest-child-process-exec-maxbuf.js38 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
Dtest-child-process-execfilesync-maxbuf.js21 execFileSync(process.execPath, args, { maxBuffer: 1 }); property
35 const ret = execFileSync(process.execPath, args, { maxBuffer: Infinity }); property
Dtest-child-process-execsync-maxbuf.js21 execSync(`"${process.execPath}" ${args.join(' ')}`, { maxBuffer: 1 }); property
37 { maxBuffer: Infinity } property
Dtest-child-process-spawnsync-maxbuf.js20 const ret = spawnSync(process.execPath, args, { maxBuffer: 1 }); property
32 const ret = spawnSync(process.execPath, args, { maxBuffer: Infinity }); property
Dtest-async-wrap-pop-id-during-load.js19 { maxBuffer: Infinity } property
Dtest-tick-processor-arguments.js29 { cwd: tmpdir.path, encoding: 'utf8', maxBuffer: Infinity }); property
Dtest-child-process-exec-kill-throws.js22 const options = { maxBuffer: 0, killSignal: 'SIGKILL' }; property
Dtest-fs-readfilesync-pipe-large.js31 { maxBuffer: 1000000 }, property
Dtest-fs-readfile-pipe-large.js32 exec(cmd, { maxBuffer: 1000000 }, common.mustSucceed((stdout, stderr) => { property
Dtest-cli-node-options.js99 maxBuffer: 1e6, property
/third_party/node/lib/
Dchild_process.js335 maxBuffer: MAX_BUFFER, property
347 validateMaxBuffer(options.maxBuffer);
474 if (options.maxBuffer === Infinity) {
486 if (stdoutLen > options.maxBuffer) {
487 const truncatedLen = options.maxBuffer - (stdoutLen - length);
504 if (options.maxBuffer === Infinity) {
514 if (stderrLen > options.maxBuffer) {
515 const truncatedLen = options.maxBuffer - (stderrLen - length);
834 maxBuffer: MAX_BUFFER, property
844 validateMaxBuffer(options.maxBuffer);
[all …]
/third_party/node/test/es-module/
Dtest-esm-type-field-errors.js40 maxBuffer: 1e6, property
/third_party/node/deps/v8/tools/system-analyzer/
Dlws-middleware.js11 const options = {maxBuffer: 256 * 1024 * 1024}; property
/third_party/typescript/src/testRunner/unittests/tsc/
DetsTests.ts30 maxBuffer: 1 * 1024 * 1024,
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
Dtrace_fixture.cpp201 uint32_t maxBuffer, in InitializeReplay2() argument
217 gBufferMap2 = AllocateZeroedUints(maxBuffer); in InitializeReplay2()
Dtrace_fixture.h92 uint32_t maxBuffer,
/third_party/node/doc/api/
Dchild_process.md179 * `maxBuffer` {number} Largest amount of data in bytes allowed on stdout or
181 truncated. See caveat at [`maxBuffer` and Unicode][].
308 * `maxBuffer` {number} Largest amount of data in bytes allowed on stdout or
310 truncated. See caveat at [`maxBuffer` and Unicode][].
940 * `maxBuffer` {number} Largest amount of data in bytes allowed on stdout or
942 [`maxBuffer` and Unicode][]. **Default:** `1024 * 1024`.
1013 * `maxBuffer` {number} Largest amount of data in bytes allowed on stdout or
1015 truncated. See caveat at [`maxBuffer` and Unicode][].
1086 * `maxBuffer` {number} Largest amount of data in bytes allowed on stdout or
1088 truncated. See caveat at [`maxBuffer` and Unicode][].
[all …]
Derrors.md771 STDERR/STDOUT, and the data's length is longer than the `maxBuffer` option.
/third_party/typescript/scripts/
DimportDefinitelyTypedTests.mjs73 maxBuffer: 1 * 1024 * 1024, property
/third_party/node/doc/changelogs/
DCHANGELOG_ARCHIVE.md3036 * Error when child\_process.exec hits maxBuffer.
3619 * Add timeout and maxBuffer options to child\_process.exec
DCHANGELOG_V11.md130 …tps://github.com/nodejs/node/commit/51dad0aaca)] - **doc**: fix default maxBuffer size (kohta ito)…
1198 …* When the `maxBuffer` option is passed, `stdout` and `stderr` will be truncated rather than unava…
1218 …ejs/node/commit/ac5fa2c7f6)] - **child\_process**: truncate output when maxBuffer is exceeded (Jer…
1271 …nodejs/node/commit/90a64ab280)] - **test**: add stdio checks to cp-exec-maxBuffer (Jeremiah Senkpi…
DCHANGELOG_V7.md511 ….com/nodejs/node/commit/6cc7b30c62)] - **doc**: improve child\_process `maxBuffer` text (Rich Trot…
845 * \[[`5d2ba44fca`](https://github.com/nodejs/node/commit/5d2ba44fca)] - **doc**: edit maxBuffer/Uni…
DCHANGELOG_V12.md5316 …6627f9a4)] - **test**: remove duplicate test-child-process-execfilesync-maxBuffer.js (Joyee Cheung…
5925 …* use non-infinite `maxBuffer` defaults (kohta ito) [#23027](https://github.com/nodejs/node/pull/2…
6039 …2877e3a9)] - **(SEMVER-MAJOR)** **child\_process**: change the defaults maxBuffer size (kohta ito)…
6041 …/eb8a51a35c)] - **(SEMVER-MAJOR)** **child\_process**: use non-infinite maxBuffer defaults (kohta …
DCHANGELOG_V6.md1452 …/node/commit/4fb4fbea1c)] - **test**: add missing console.error to exec-maxBuffer (Beth Griggs) [#…
2389 * \[[`b1bda165ce`](https://github.com/nodejs/node/commit/b1bda165ce)] - **doc**: edit maxBuffer/Uni…
4689 * \[[`897934a719`](https://github.com/nodejs/node/commit/897934a719)] - **doc**: copyedit maxBuffer

12