Home
last modified time | relevance | path

Searched refs:Stream (Results 1 – 25 of 149) sorted by last modified time

123456

/plugin/aichat/vendor/mehrab-wj/tiktoken-php/data/
H A Dvocab.bpe28442 Stream er
39652 E Stream
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js71806 Stream.call(this);
73206 Stream.call(this);
74509 exports.Stream = exports;
78896 module.exports = Stream;
78902 inherits(Stream, EE);
78909 Stream.Stream = Stream; // old-style streams. Note that the pipe method (the only relevant
78912 function Stream() {
79270 util.inherits(Readable, Stream);
79359 Stream.call(this);
80680 Stream.call(this);
[all …]
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs1641 // Mini Stream Cutoff Size
1642 blob.chk('00100000', 'Mini Stream Cutoff Size: ');
2213 //var MSCSZ = 4096; /* Mini Stream Cutoff Size */
10180 /* [MS-OFFCRYPTO] 2.3.4.* EncryptionInfo Stream */
10191 /* [MS-OFFCRYPTO] 2.3.4.5 EncryptionInfo Stream (Standard Encryption) */
10201 /* [MS-OFFCRYPTO] 2.3.4.6 EncryptionInfo Stream (Extensible Encryption) */
10203 /* [MS-OFFCRYPTO] 2.3.4.10 EncryptionInfo Stream (Agile Encryption) */
21563 /* [MS-XLS] 2.1.7.20 Workbook Stream */
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/
H A DCHANGELOG.rst12 * 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\Util
[all...]
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DAppendStream.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\CannotAttachException;
45 * @param StreamInterface $stream Stream to append. Must be readable.
H A DCachingStream.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\SeekException;
7 * Stream decorator that can cache previously read bytes from a sequentially
14 /** @var StreamInterface Stream being wrapped */
23 * @param StreamInterface $stream Stream to cache
31 $this->stream = $target ?: new Stream(fopen('php://temp', 'r+'));
H A DDroppingStream.php2 namespace GuzzleHttp\Stream;
5 * Stream decorator that begins dropping data once the size of the underlying
H A DStreamInterface.php2 namespace GuzzleHttp\Stream;
28 * an unusable state. If you wish to use a Stream object as a PHP stream
29 * but keep the Stream object in a consistent state, use
30 * {@see GuzzleHttp\Stream\GuzzleStreamWrapper::getResource}.
33 * if the Stream object did not utilize an underlying
86 * @param int $offset Stream offset
H A DUtils.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\SeekException;
51 * @param StreamInterface $stream Stream to read
88 * @param StreamInterface $source Stream to read from
89 * @param StreamInterface $dest Stream to write to
122 * Calculate a hash of a Stream
124 * @param StreamInterface $stream Stream to calculate the hash for
156 * @param StreamInterface $stream Stream to read from
183 * Alias of GuzzleHttp\Stream\Stream
[all...]
H A DLazyOpenStream.php2 namespace GuzzleHttp\Stream;
35 return Stream::factory(Utils::open($this->filename, $this->mode));
H A DMetadataStreamInterface.php2 namespace GuzzleHttp\Stream;
H A DNoSeekStream.php2 namespace GuzzleHttp\Stream;
5 * Stream decorator that prevents a stream from being seeked
H A DNullStream.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\CannotAttachException;
H A DPumpStream.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\CannotAttachException;
39 * @param array $options Stream options:
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/Exception/
H A DCannotAttachException.php2 namespace GuzzleHttp\Stream\Exception;
/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; alias
18 $s = $this->getMockBuilder('GuzzleHttp\Stream\StreamInterface')
35 $s = $this->getMockBuilder('GuzzleHttp\Stream\StreamInterface')
53 Stream::factory('foo'),
54 Stream::factory('bar'),
55 Stream
[all...]
H A DCachingStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\Stream; alias
5 use GuzzleHttp\Stream\CachingStream;
6 use GuzzleHttp\Stream\Utils;
12 * @covers GuzzleHttp\Stream\CachingStream
19 /** @var Stream */
24 $this->decorated = Stream::factory('testing');
36 $body = Stream::factory('test');
55 $a = Stream
[all...]
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.php4 use GuzzleHttp\Stream\Exception\SeekException;
5 use GuzzleHttp\Stream\FnStream;
6 use GuzzleHttp\Stream\Stream; alias
7 use GuzzleHttp\Stream\LimitStream;
8 use GuzzleHttp\Stream\NoSeekStream;
12 * @covers GuzzleHttp\Stream\LimitStream
19 /** @var Stream */
24 $this->decorated = Stream::factory(fopen(__FILE__, 'r'));
30 $body = new LimitStream(Stream
[all...]
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; alias
26 $p = Stream::factory(function ($size) {
38 $p = Stream::factory(function ($size) use (&$called) {
51 $p = Stream::factory(function () { return 'a'; });
58 $p = Stream
[all...]
H A DStreamDecoratorTraitTest.php2 namespace GuzzleHttp\Tests\Stream;
5 use GuzzleHttp\Stream\Exception\CannotAttachException;
6 use GuzzleHttp\Stream\StreamInterface;
7 use GuzzleHttp\Stream\Stream; alias
8 use GuzzleHttp\Stream\StreamDecoratorTrait;
18 * @covers GuzzleHttp\Stream\StreamDecoratorTrait
31 $this->a = Stream::factory($this->c);
37 $s = $this->getMockBuilder('GuzzleHttp\Stream\StreamInterface')
H A DStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\Stream; alias
9 * @covers GuzzleHttp\Stream\Stream
16 new Stream(true);
23 $stream = new Stream($handle);
37 $stream = new Stream($handle);
46 $stream = new Stream($handle);
56 $stream = new Stream(
[all...]
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; alias
8 use GuzzleHttp\Stream\Utils;
16 $s = Stream::factory('foobaz');
26 $s1 = Stream::factory('foobaz');
38 $s1 = Stream
[all...]
/plugin/elasticsearch/
H A Dcomposer.lock99 "GuzzleHttp\\Stream\\": "src/"

123456