Home
last modified time | relevance | path

Searched refs:Stream (Results 26 – 50 of 149) sorted by last modified time

123456

/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DHttpAdapter.php16 use Ivory\HttpAdapter\Message\Stream\StringStream;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DStream.php2 namespace GuzzleHttp\Stream;
7 class Stream implements StreamInterface class
42 * @return Stream
97 * @param resource $stream Stream resource to wrap.
105 throw new \InvalidArgumentException('Stream must be a resource');
H A DStreamDecoratorTrait.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\CannotAttachException;
7 * Stream decorator trait
13 * @param StreamInterface $stream Stream to decorate
H A DAsyncReadStream.php2 namespace GuzzleHttp\Stream;
H A DBufferStream.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\CannotAttachException;
14 * @package GuzzleHttp\Stream
H A DFnStream.php2 namespace GuzzleHttp\Stream;
57 * @param StreamInterface $stream Stream to decorate
H A DGuzzleStreamWrapper.php2 namespace GuzzleHttp\Stream;
H A DInflateStream.php2 namespace GuzzleHttp\Stream;
25 $this->stream = new Stream($resource);
H A DLimitStream.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\SeekException;
20 * @param StreamInterface $stream Stream to wrap
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlFactory.php7 use GuzzleHttp\Stream\LazyOpenStream;
8 use GuzzleHttp\Stream\StreamInterface;
417 . 'GuzzleHttp\Stream\StreamInterface or resource');
H A DStreamHandler.php8 use GuzzleHttp\Stream\InflateStream;
9 use GuzzleHttp\Stream\StreamInterface;
10 use GuzzleHttp\Stream\Stream; alias
11 use GuzzleHttp\Stream\Utils;
76 $stream = new InflateStream(Stream::factory($stream));
90 * @return Stream
97 $stream = Stream::factory($stream);
106 // Stream the response into the destination stream
108 ? new Stream(Util
[all...]
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/
H A DCore.php4 use GuzzleHttp\Stream\StreamInterface;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/Exception/
H A DSeekException.php2 namespace GuzzleHttp\Stream\Exception;
4 use GuzzleHttp\Stream\StreamInterface;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DAsyncReadStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\AsyncReadStream;
5 use GuzzleHttp\Stream\BufferStream;
6 use GuzzleHttp\Stream\FnStream;
7 use GuzzleHttp\Stream\Stream; alias
19 Stream::factory(),
29 Stream::factory(),
36 $a = new AsyncReadStream(Stream::factory(), [
144 $this->assertInstanceOf('GuzzleHttp\Stream\BufferStrea
[all...]
H A DBufferStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\BufferStream;
5 use GuzzleHttp\Stream\Exception\CannotAttachException;
H A DFnStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
5 use GuzzleHttp\Stream\Stream; alias
6 use GuzzleHttp\Stream\FnStream;
10 * @covers GuzzleHttp\Stream\FnStream
56 $a = Stream::factory('foo');
83 $a = Stream::factory('foo');
H A DGuzzleStreamWrapperTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\GuzzleStreamWrapper;
5 use GuzzleHttp\Stream\Stream; alias
10 * @covers GuzzleHttp\Stream\GuzzleStreamWrapper
16 $stream = Stream::factory('foo');
65 $stream = $this->getMockBuilder('GuzzleHttp\Stream\StreamInterface')
85 $stream = $this->getMockBuilder('GuzzleHttp\Stream\StreamInterface')
H A DInflateStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\InflateStream;
5 use GuzzleHttp\Stream\Stream; alias
13 $a = Stream::factory($content);
H A DNoSeekStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\Stream; alias
5 use GuzzleHttp\Stream\NoSeekStream;
9 * @covers GuzzleHttp\Stream\NoSeekStream
10 * @covers GuzzleHttp\Stream\StreamDecoratorTrait
16 $s = $this->getMockBuilder('GuzzleHttp\Stream\StreamInterface')
28 $s = Stream::factory('foo');
36 $s1 = Stream::factory('foo');
37 $s2 = Stream
[all...]
H A DNullStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\Exception\CannotAttachException;
5 use GuzzleHttp\Stream\NullStream;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/Exception/
H A DSeekExceptionTest.php2 namespace GuzzleHttp\Tests\Stream\Exception;
4 use GuzzleHttp\Stream\Exception\SeekException;
5 use GuzzleHttp\Stream\Stream; alias
12 $s = Stream::factory('foo');
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Datastream/
H A DStream.php20 class Stream extends \Google\Collection class
233 class_alias(Stream::class, 'Google_Service_Datastream_Stream');
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DUPGRADING.md451 use Guzzle\Stream\PhpStreamRequestFactory;
485 `GuzzleHttp\Stream\Stream::factory` or even better:
486 `GuzzleHttp\Stream\create()`.
489 - `Guzzle\Http\EntityBody` is now `GuzzleHttp\Stream\Stream`
627 ## Stream section in Guzzle Upgrade Guide
629 Stream have moved to a separate package available at
642 `GuzzleHttp\Stream\MetadataStreamInterface`.
654 `GuzzleHttp\Stream\Stream`.
660 `GuzzleHttp\Stream\StreamInterface::getMetadata` and
836 ### Stream wrapper and type
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DCachingStream.php34 $this->stream = $target ?: new Stream(Utils::tryFopen('php://temp', 'r+'));
H A DStream.php12 class Stream implements StreamInterface class

123456