Home
last modified time | relevance | path

Searched refs:read (Results 401 – 425 of 842) sorted by path

1...<<11121314151617181920>>...34

/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DStream.php19 'read' => [
91 * - size: (int) If a read stream would otherwise have an indeterminate
166 $this->readable = isset(self::$readWriteHash['read'][$meta['mode']]);
234 public function read($length) function in GuzzleHttp\\Stream\\Stream
H A DStreamDecoratorTrait.php123 public function read($length) function
125 return $this->stream->read($length);
H A DStreamInterface.php63 * Returns the current position of the file read/write pointer
131 * @return string Returns the data read from the stream.
133 public function read($length); function
H A DUtils.php49 * bytes have been read.
51 * @param StreamInterface $stream Stream to read
52 * @param int $maxLen Maximum number of bytes to read. Pass -1
53 * to read the entire stream.
62 $buf = $stream->read(1048576);
73 $buf = $stream->read($maxLen - $len);
86 * of bytes have been read.
88 * @param StreamInterface $source Stream to read from
90 * @param int $maxLen Maximum number of bytes to read. Pass -1
91 * to read th
[all...]
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DAppendStreamTest.php60 $this->assertEquals('bar', $a->read(3));
63 $this->assertEquals('baz', $a->read(3));
109 $this->assertEquals('foo', $a->read(3));
110 $this->assertEquals('bar', $a->read(3));
111 $this->assertEquals('baz', $a->read(3));
112 $this->assertEmpty($a->read(1));
143 ->method('read')
H A DAsyncReadStreamTest.php89 $this->assertEquals('foo', $a->read(10));
90 $this->assertEquals('', $a->read(10));
104 $this->assertEquals('foo', $a->read(3));
106 $this->assertEquals('bar.....', $a->read(8));
108 $this->assertEquals('..', $a->read(2));
130 $a->read(3);
135 $a->read(3);
H A DBufferStreamTest.php27 $this->assertEquals('foo', $b->read(10));
29 $this->assertEquals('', $b->read(10));
37 $this->assertEquals('foo', $b->read(3));
51 $this->assertEquals('abc', $b->read(10));
H A DCachingStreamTest.php68 $this->assertEquals('te', $this->body->read(2));
70 $this->assertEquals('test', $this->body->read(4));
76 $this->assertEquals('ing', $this->body->read(3));
81 $this->body->read(2);
102 // Write over part of the body yet to be read, so skip some bytes
125 $this->assertEquals("0000\nABCD\nTEST\n0003\n0004\n0005\n0006\n1234\n0008\n0009\n", $body->read(50));
H A DDroppingStreamTest.php17 $this->assertEquals('hello', $drop->read(5));
H A DFnStreamTest.php24 'read' => function ($len) {
30 $this->assertEquals('foo', $s->read(3));
62 $this->assertEquals($b->read(3), 'foo');
65 $this->assertEmpty($b->read(1));
85 'read' => function ($len) use (&$called, $a) {
87 return $a->read($len);
90 $this->assertEquals('foo', $b->read(3));
H A DLazyOpenStreamTest.php41 $this->assertEquals('foo', $l->read(4));
H A DLimitStreamTest.php35 $this->assertEquals('oo', $body->read(100));
36 $this->assertEmpty($body->read(1));
79 $data = $this->body->read(100);
81 $this->assertFalse($this->body->read(1000));
84 $newData = $this->body->read(100);
103 $this->body->read(1000);
H A DNullStreamTest.php13 $this->assertEquals('', $b->read(10));
H A DPumpStreamTest.php29 $this->assertEquals('a', $p->read(1));
31 $this->assertEquals('aaaaa', $p->read(5));
42 $this->assertEquals('a', $p->read(1));
43 $this->assertEquals('b', $p->read(1));
44 $this->assertEquals('cdef', $p->read(4));
45 $this->assertEquals('abcdefabc', $p->read(9));
67 $this->assertEquals('', $p->read(10));
H A DStreamDecoratorTraitTest.php40 ->method('read')
63 $this->assertEquals('foo', $this->b->read(10));
H A DStreamTest.php69 $stream->read(4);
139 $this->assertFalse($stream->read(10));
233 $this->assertEquals('foo', $p->read(3));
235 $this->assertEquals('b', $p->read(1));
236 $this->assertEquals('a', $p->read(1));
237 $this->assertEquals('r12', $p->read(3));
H A DUtilsTest.php28 'read' => function () {
71 $s1 = FnStream::decorate($s1, ['read' => function () { return ''; }]);
102 ->setMethods(['read', 'eof'])
106 ->method('read')
131 $s->read(2);
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlFactory.php268 return (string) $body->read($length);
/plugin/elasticsearch/vendor/psr/log/
H A DREADME.md56 implement `Psr\Log\LoggerInterface` in your code. Please read the
/plugin/elasticsearch/vendor/react/promise/
H A DREADME.md68 [read this first](https://gist.github.com/3889970).
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md1794 - Add getters+setters for Index Setting blocks 'read', 'write' and 'metadata'
/plugin/elwikiupgrade/
H A DVerboseTarLib.class.php78 while($read = $this->readbytes(512)) {
79 $header = $this->parseHeader($read);
/plugin/elwikiupgrade/lang/en/
H A Dstep0.txt1 …i to the newest available DokuWiki version. Before continuing, you should read the [[doku>changes|…
/plugin/etherpadlite/
H A DREADME.md11 …for editing the page and additionally lets you protect the pads using read and read-write password…
20 * extra password protection for read/readwrite pad access
34 …no synchronous messaging possible, so the dokuwiki javascript code cannot read the current selecti…
87 * The dokuwiki plugin sets a browser cookie read by the etherpad lite (session identifier). This le…
/plugin/facebooklike/
H A DLICENSE673 Public License instead of this License. But first, please read

1...<<11121314151617181920>>...34