Home
last modified time | relevance | path

Searched refs:getSize (Results 151 – 175 of 241) sorted by path

12345678910

/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DDroppingStream.php26 $diff = $this->maxLength - $this->stream->getSize();
H A DFnStream.php17 'getSize', 'tell', 'eof', 'isSeekable', 'seek', 'isWritable', 'write',
93 public function getSize() function in GuzzleHttp\\Stream\\FnStream
H A DGuzzleStreamWrapper.php109 'size' => $this->stream->getSize() ?: 0,
H A DLimitStream.php60 public function getSize() function in GuzzleHttp\\Stream\\LimitStream
62 if (null === ($length = $this->stream->getSize())) {
H A DNullStream.php30 public function getSize() function in GuzzleHttp\\Stream\\NullStream
H A DPumpStream.php72 public function getSize() function in GuzzleHttp\\Stream\\PumpStream
H A DStream.php171 public function getSize() function in GuzzleHttp\\Stream\\Stream
H A DStreamDecoratorTrait.php88 public function getSize() function
90 return $this->stream->getSize();
H A DStreamInterface.php60 public function getSize(); function
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DAppendStreamTest.php74 $this->assertSame(0, $a->getSize());
124 $this->assertEquals(6, $a->getSize());
135 $this->assertNull($a->getSize());
H A DAsyncReadStreamTest.php80 $this->assertEquals(10, $a->getSize());
88 $this->assertNull($a->getSize());
124 $this->assertEquals(6, $buffer->getSize());
132 $this->assertEquals(3, $buffer->getSize());
136 $this->assertEquals(0, $buffer->getSize());
169 $this->assertEquals(5, $buffer->getSize());
H A DBufferStreamTest.php25 $this->assertEquals(3, $b->getSize());
H A DCachingStreamTest.php38 $this->assertEquals(4, $caching->getSize());
H A DDroppingStreamTest.php16 $this->assertEquals(5, $drop->getSize());
18 $this->assertEquals(0, $drop->getSize());
20 $this->assertEquals(5, $stream->getSize());
21 $this->assertEquals(5, $drop->getSize());
23 $this->assertEquals(0, $drop->getSize());
H A DFnStreamTest.php58 $this->assertEquals(3, $b->getSize());
H A DLazyOpenStreamTest.php50 $this->assertEquals(3, $l->getSize());
H A DLimitStreamTest.php109 $this->assertEquals(10, $this->body->getSize());
121 'getSize' => function () { return null; },
125 $this->assertNull($b->getSize());
132 $this->assertEquals(3, $b->getSize());
H A DNullStreamTest.php18 $this->assertEquals(0, $b->getSize());
H A DPumpStreamTest.php21 $this->assertEquals(100, $p->getSize());
62 $this->assertNull($p->getSize());
H A DStreamDecoratorTraitTest.php56 $this->assertEquals(3, $this->b->getSize());
58 $this->assertEquals(2, $this->b->getSize());
H A DStreamTest.php29 $this->assertEquals(4, $stream->getSize());
80 $this->assertEquals(10, $stream->getSize());
89 $this->assertEquals($size, $stream->getSize());
91 $this->assertEquals($size, $stream->getSize());
100 $this->assertEquals(3, $stream->getSize());
102 $this->assertEquals(7, $stream->getSize());
103 $this->assertEquals(7, $stream->getSize());
146 $this->assertNull($stream->getSize());
170 $this->assertNull($stream->getSize());
225 $this->assertEquals(10, $s->getSize());
[all...]
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlFactory.php271 if ($size = $body->getSize()) {
/plugin/farm/
H A Daction.php91 if($animal->getInfos()->getSize() >= (int)$farmconf['animalmaxsize']) $toobig = true;
H A Danimalmanager.class.php219 $s = $this->animal->getInfos()->getSize('all', false);
226 …s->manager->getLang('animal_info_size').' : '.$this->animal->getInfos()->getSize('all', true).'<br…
255 …nager->getLang('animal_info_cachesize').' : '.$this->animal->getInfos()->getSize('cache', true).'<…
256 …nager->getLang('animal_info_indexsize').' : '.$this->animal->getInfos()->getSize('index', true).'<…
H A Dinfos.animal.class.php118 public function getSize($mode='', $nice=false) { function in dokuwiki_farm_animal_infos

12345678910