Home
last modified time | relevance | path

Searched refs:GuzzleHttp (Results 1 – 25 of 185) sorted by last modified time

12345678

/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/
H A DCHANGELOG.rst11 ``GuzzleHttp\Streams\Utils`` instead.
12 * Moved ``GuzzleHttp\Stream\MetadataStreamInterface::getMetadata`` to
13 ``GuzzleHttp\Stream\StreamInterface``. MetadataStreamInterface is no longer
15 * Added ``attach()`` to ``GuzzleHttp\Stream\StreamInterface`` for PSR-7
19 ``GuzzleHttp\Stream\StreamInterface::getContents()``. This function now
22 ``GuzzleHttp\Stream\Utils::copyToString()`` function.
27 * ``GuzzleHttp\Stream\Stream::__construct``,
28 ``GuzzleHttp\Stream\Stream::factory``, and
29 ``GuzzleHttp\Stream\Utils::create`` no longer accept a size in the second
32 * Added ``GuzzleHttp\Strea
[all...]
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DAppendStream.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\CannotAttachException;
H A DCachingStream.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\SeekException;
H A DDroppingStream.php2 namespace GuzzleHttp\Stream;
H A DStreamInterface.php2 namespace GuzzleHttp\Stream;
30 * {@see GuzzleHttp\Stream\GuzzleStreamWrapper::getResource}.
H A DUtils.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\SeekException;
183 * Alias of GuzzleHttp\Stream\Stream::factory.
187 * {@see \GuzzleHttp\Stream\Stream::__construct}
191 * @see GuzzleHttp\Stream\Stream::factory
192 * @see GuzzleHttp\Stream\Stream::__construct
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/Exception/
H A DCannotAttachException.php2 namespace GuzzleHttp\Stream\Exception;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DAbstractEndpoint.php25 use GuzzleHttp\Ring\Future\FutureArrayInterface;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DGuzzle.php13 use GuzzleHttp\Client;
14 use GuzzleHttp\Exception\TransferException;
15 use GuzzleHttp\Psr7;
16 use GuzzleHttp\Psr7\Uri;
17 use GuzzleHttp\RequestOptions;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DAppendStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\AppendStream;
5 use GuzzleHttp\Stream\Exception\CannotAttachException;
6 use GuzzleHttp\Stream\Stream;
18 $s = $this->getMockBuilder('GuzzleHttp\Stream\StreamInterface')
35 $s = $this->getMockBuilder('GuzzleHttp\Stream\StreamInterface')
126 $s = $this->getMockBuilder('GuzzleHttp\Stream\StreamInterface')
140 $s = $this->getMockBuilder('GuzzleHttp\Stream\StreamInterface')
H A DCachingStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\Stream;
5 use GuzzleHttp\Stream\CachingStream;
6 use GuzzleHttp\Stream\Utils;
12 * @covers GuzzleHttp\Stream\CachingStream
56 $d = $this->getMockBuilder('GuzzleHttp\Stream\CachingStream')
H A DDroppingStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\BufferStream;
5 use GuzzleHttp\Stream\DroppingStream;
H A DLazyOpenStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\LazyOpenStream;
H A DLimitStreamTest.php2 namespace GuzzleHttp\Tests\Http;
4 use GuzzleHttp\Stream\Exception\SeekException;
5 use GuzzleHttp\Stream\FnStream;
6 use GuzzleHttp\Stream\Stream;
7 use GuzzleHttp\Stream\LimitStream;
8 use GuzzleHttp\Stream\NoSeekStream;
12 * @covers GuzzleHttp\Stream\LimitStream
H A DPumpStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\Exception\CannotAttachException;
5 use GuzzleHttp\Stream\LimitStream;
6 use GuzzleHttp\Stream\PumpStream;
7 use GuzzleHttp\Stream\Stream;
H A DStreamDecoratorTraitTest.php2 namespace GuzzleHttp\Tests\Stream;
5 use GuzzleHttp\Stream\Exception\CannotAttachException;
6 use GuzzleHttp\Stream\StreamInterface;
7 use GuzzleHttp\Stream\Stream;
8 use GuzzleHttp\Stream\StreamDecoratorTrait;
18 * @covers GuzzleHttp\Stream\StreamDecoratorTrait
37 $s = $this->getMockBuilder('GuzzleHttp\Stream\StreamInterface')
H A DStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\Stream;
9 * @covers GuzzleHttp\Stream\Stream
176 $this->assertInstanceOf('GuzzleHttp\Stream\Stream', $stream);
184 $this->assertInstanceOf('GuzzleHttp\Stream\Stream', $s);
191 $this->assertInstanceOf('GuzzleHttp\Stream\Stream', $s);
199 $this->assertInstanceOf('GuzzleHttp\Stream\Stream', $s);
232 $this->assertInstanceOf('GuzzleHttp\Stream\PumpStream', $p);
H A DUtilsTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\Exception\SeekException;
5 use GuzzleHttp\Stream\FnStream;
6 use GuzzleHttp\Stream\NoSeekStream;
7 use GuzzleHttp\Stream\Stream;
8 use GuzzleHttp\Stream\Utils;
101 $s = $this->getMockBuilder('GuzzleHttp\Stream\Stream')
/plugin/elasticsearch/
H A Dcomposer.lock99 "GuzzleHttp\\Stream\\": "src/"
161 "GuzzleHttp\\Ring\\": "src/"
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DClientUtils.php2 namespace GuzzleHttp\Ring\Client;
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Exception/
H A DRingException.php2 namespace GuzzleHttp\Ring\Exception;
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Future/
H A DBaseFutureTrait.php2 namespace GuzzleHttp\Ring\Future;
4 use GuzzleHttp\Ring\Exception\CancelledFutureAccessException;
5 use GuzzleHttp\Ring\Exception\RingException;
H A DCompletedFutureArray.php2 namespace GuzzleHttp\Ring\Future;
H A DCompletedFutureValue.php2 namespace GuzzleHttp\Ring\Future;
20 * @param \Exception $e Error. Pass a GuzzleHttp\Ring\Exception\CancelledFutureAccessException
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DTransport.php25 use GuzzleHttp\Ring\Future\FutureArrayInterface;

12345678