Searched refs:rangeFile (Results 1 – 2 of 2) sorted by relevance
/third_party/node/test/parallel/ |
D | test-fs-read-stream-inherit.js | 10 const rangeFile = fixtures.path('x.txt'); constant 72 const file = fs.createReadStream(rangeFile, options); 86 const file = fs.createReadStream(rangeFile, options); 100 const file = fs.createReadStream(rangeFile, options); 118 fs.createReadStream(rangeFile, Object.create({ start: 10, end: 2 })); 129 const stream = fs.createReadStream(rangeFile, options); 145 const pauseRes = fs.createReadStream(rangeFile); 153 fs.createReadStream(rangeFile, Object.create({ autoClose: false }));
|
D | test-fs-read-stream.js | 32 const rangeFile = fixtures.path('x.txt'); constant 122 …fs.createReadStream(rangeFile, common.mustNotMutateObjectDeep({ bufferSize: 1, start: 1, end: 2 })… 133 …const file = fs.createReadStream(rangeFile, common.mustNotMutateObjectDeep({ bufferSize: 1, start:… 145 …const file = fs.createReadStream(rangeFile, common.mustNotMutateObjectDeep({ bufferSize: 1.23, sta… 157 fs.createReadStream(rangeFile, common.mustNotMutateObjectDeep({ start: 10, end: 2 })); 167 …const stream = fs.createReadStream(rangeFile, common.mustNotMutateObjectDeep({ start: 0, end: 0 })… 181 const stream = new fs.createReadStream(rangeFile, common.mustNotMutateObjectDeep({ end: 1 })); 220 const pauseRes = fs.createReadStream(rangeFile); 226 let file = fs.createReadStream(rangeFile, common.mustNotMutateObjectDeep({ autoClose: false }));
|