Home
last modified time | relevance | path

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

/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DCachingStreamTest.php5 use GuzzleHttp\Stream\CachingStream; alias
12 * @covers GuzzleHttp\Stream\CachingStream
16 /** @var CachingStream */
25 $this->body = new CachingStream($this->decorated);
37 $caching = new CachingStream($body);
56 $d = $this->getMockBuilder('GuzzleHttp\Stream\CachingStream')
95 $body = new CachingStream($decorated);
97 $skipReadBytes = new ReflectionProperty(CachingStream::class, 'skipReadBytes');
135 $d = new CachingStream($a);
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DCachingStream.php10 class CachingStream implements StreamInterface class
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DCachingStream.php13 class CachingStream implements StreamInterface class
H A DServerRequest.php175 $body = new CachingStream(new LazyOpenStream('php://input', 'r+'));
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md242 - Support in `GuzzleHttp\Psr7\CachingStream` for seeking forward on remote
269 - Now allowing forward seeking in CachingStream.
H A DREADME.md56 ## CachingStream section in Stream implementation
58 The CachingStream is used to allow seeking over previously read bytes on
69 $stream = new Psr7\CachingStream($original);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DUPGRADING.md490 - `Guzzle\Http\CachingEntityBody` is now `GuzzleHttp\Stream\CachingStream`