Searched refs:maxBuffer (Results 1 - 9 of 9) sorted by relevance
/third_party/node/test/parallel/ |
H A D | test-child-process-execfile-maxbuf.js | 9 assert.strictEqual(err.message, `${streamName} maxBuffer length exceeded`); 36 const options = { maxBuffer: Infinity }; property 50 execFile('echo', ['hello world'], { maxBuffer: 5 }, checkFactory('stdout')); 59 { maxBuffer: 10 }, 67 { maxBuffer: 10 }, 76 { encoding: null, maxBuffer: 10 }, 87 { encoding: null, maxBuffer: 10 },
|
H A D | test-child-process-exec-maxbuf.js | 7 assert.strictEqual(err.message, `${streamName} maxBuffer length exceeded`); 20 assert.strictEqual(err.message, 'stdout maxBuffer length exceeded'); 38 const options = { maxBuffer: Infinity }; 51 { maxBuffer: 5 }, 94 { maxBuffer: 10 }, 106 { maxBuffer: 3 }, 118 { encoding: null, maxBuffer: 10 }, 132 { encoding: null, maxBuffer: 3 }, 146 { encoding: null, maxBuffer: 5 },
|
H A D | test-child-process-exec-kill-throws.js | 8 // Since maxBuffer is 0, this should trigger an error. 22 const options = { maxBuffer: 0, killSignal: 'SIGKILL' };
|
H A D | test-cli-node-options.js | 99 maxBuffer: 1e6,
|
/third_party/node/lib/ |
H A D | child_process.js | 219 * maxBuffer?: number; 312 * maxBuffer?: number; 335 maxBuffer: MAX_BUFFER, 346 // Validate maxBuffer, if present. 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) { [all...] |
/third_party/node/test/es-module/ |
H A D | test-esm-type-field-errors.js | 40 maxBuffer: 1e6,
|
/third_party/node/deps/v8/tools/system-analyzer/ |
H A D | lws-middleware.js | 11 const options = {maxBuffer: 256 * 1024 * 1024};
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
H A D | trace_fixture.cpp | 201 uint32_t maxBuffer, in InitializeReplay2() 217 gBufferMap2 = AllocateZeroedUints(maxBuffer); in InitializeReplay2() 198 InitializeReplay2(const char *binaryDataFileName, size_t maxClientArraySize, size_t readBufferSize, uint32_t maxBuffer, uint32_t maxFenceNV, uint32_t maxFramebuffer, uint32_t maxMemoryObject, uint32_t maxProgramPipeline, uint32_t maxQuery, uint32_t maxRenderbuffer, uint32_t maxSampler, uint32_t maxSemaphore, uint32_t maxShaderProgram, uint32_t maxTexture, uint32_t maxTransformFeedback, uint32_t maxVertexArray) InitializeReplay2() argument
|
H A D | trace_fixture.h | 92 uint32_t maxBuffer,
|
Completed in 5 milliseconds