Home
last modified time | relevance | path

Searched refs:LimitStream (Results 1 – 9 of 9) sorted by last modified time

/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/
H A DCHANGELOG.rst93 * Added a fix to LimitStream
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DLimitStreamTest.php7 use GuzzleHttp\Stream\LimitStream; alias
12 * @covers GuzzleHttp\Stream\LimitStream
16 /** @var LimitStream */
25 $this->body = new LimitStream($this->decorated, 10, 3);
30 $body = new LimitStream(Stream::factory('foo'), -1, 1);
43 $limited = new LimitStream($body, 3, 4);
50 $limited = new LimitStream($body, 0, 10);
95 $c = new LimitStream($b);
114 $body = new LimitStream(Stream::factory('foobazbar'), 3, 3);
124 $b = new LimitStream(
[all...]
H A DPumpStreamTest.php5 use GuzzleHttp\Stream\LimitStream; alias
52 $s = new LimitStream($p, 5);
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DInflateStream.php22 $stream = new LimitStream($stream, -1, 10);
H A DLimitStream.php9 class LimitStream implements StreamInterface class
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DUPGRADING.md491 - `Guzzle\Http\ReadLimitEntityBody` is now `GuzzleHttp\Stream\LimitStream`
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md159 ## LimitStream section in Stream implementation
161 `GuzzleHttp\Psr7\LimitStream`
163 LimitStream can be used to read a subset or slice of an existing stream object.
175 $stream = new Psr7\LimitStream($original, 1024, 2048);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DInflateStream.php30 $stream = new LimitStream($stream, -1, 10 + $filenameHeaderLength);
H A DLimitStream.php12 class LimitStream implements StreamInterface class