Home
last modified time | relevance | path

Searched refs:hwm (Results 1 – 7 of 7) sorted by relevance

/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DBufferStream.php19 private $hwm; variable in GuzzleHttp\\Psr7\\BufferStream
23 * @param int $hwm High water mark, representing the preferred maximum
29 public function __construct($hwm = 16384) argument
31 $this->hwm = $hwm;
127 if (strlen($this->buffer) >= $this->hwm) {
137 return $this->hwm;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DBufferStream.php10 * This stream returns a "hwm" metadata value that tells upstream consumers
18 private $hwm; variable in GuzzleHttp\\Stream\\BufferStream
22 * @param int $hwm High water mark, representing the preferred maximum
28 public function __construct($hwm = 16384) argument
30 $this->hwm = $hwm;
123 if (strlen($this->buffer) >= $this->hwm) {
132 if ($key == 'hwm') {
133 return $this->hwm;
H A DAsyncReadStream.php33 private $hwm; variable in GuzzleHttp\\Stream\\AsyncReadStream
43 * provided stream must answer to the "hwm" stream metadata variable,
44 * providing the high water mark. If no "hwm" metadata value is available,
94 $this->hwm = $buffer->getMetadata('hwm');
97 if ($this->hwm === null) {
113 * - hwm: (int) High water mark to use if a buffer is created on your
143 $hwm = isset($options['hwm']) ? $options['hwm']
[all...]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md43 This stream returns a "hwm" metadata value that tells upstream consumers
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.js17833 var hwm = options.highWaterMark;
17835 this.highWaterMark = (hwm || hwm === 0) ? hwm : defaultHwm;
19126 var hwm = options.highWaterMark;
19128 this.highWaterMark = (hwm || hwm === 0) ? hwm : defaultHwm;
H A Dpdfmake.min.js.map1hwm","highWaterMark","defaultHwm","objectMode","pipes","pipesCount","flowing","ended","endEmitted"…
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js74481 var hwm = highWaterMarkFrom(options, isDuplex, duplexKey);
74483 if (hwm != null) {
74484 if (!(isFinite(hwm) && Math.floor(hwm) === hwm) || hwm < 0) {
74486 throw new ERR_INVALID_OPT_VALUE(name, hwm);
74489 return Math.floor(hwm);
79299 var hwm = options.highWaterMark;
79302 …if (hwm || hwm === 0) this.highWaterMark = hwm;else if (isDuplex && (readableHwm || readableHwm ==…
80546 var hwm = options.highWaterMark;
80549 …if (hwm || hwm === 0) this.highWaterMark = hwm;else if (isDuplex && (writableHwm || writableHwm ==…