Home
last modified time | relevance | path

Searched refs:read (Results 376 – 400 of 842) sorted by path

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

/plugin/dw2pdf/vendor/mpdf/mpdf/
H A DREADME.md99 If you have problems, please read the section on
131 Before submitting issues and pull requests please read the [CONTRIBUTING.md](https://github.com/mpdf/mpdf/blob/development/.github/CONTRIBUTING.md) file.
/plugin/dw2pdf/vendor/psr/log/
H A DREADME.md56 implement `Psr\Log\LoggerInterface` in your code. Please read the
/plugin/dw2pdf/vendor/setasign/fpdi/
H A DREADME.md12 FPDI is a collection of PHP classes facilitating developers to read pages from existing PDF
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/CrossReference/
H A DFixedReader.php19 * are only read when needed and not in a single run.
46 $this->read();
84 * This reader will only read the subsections in this method. The offsets were resolved individually by this
89 protected function read() function in setasign\\Fpdi\\PdfParser\\CrossReference\\FixedReader
H A DLineReader.php18 * This reader class read all cross-reference entries in a single run.
40 $this->read($this->extract($parser->getStreamReader()));
107 protected function read($xrefContent) function in setasign\\Fpdi\\PdfParser\\CrossReference\\LineReader
/plugin/dwcommits/
H A DREADME17 Please read the documentation in the admin panel or on the plugin web site
/plugin/dwcommits/lang/en/
H A Ddwc_admin.txt68 …and line, using your own identity. However, you must give the web server read/write access to the…
/plugin/eclipseupdateurl/
H A Dsyntax.php181 while ($reader->read()) {
240 while ($reader->read()) {
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/.ci/jobs/
H A Ddefaults.yml34 # vault read auth/approle/role/clients-ci/role-id
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md154 a `@note` tag in the phpdoc section (e.g. [$client->rankEval()](https://github.com/elastic/elasticsearch-php/blob/master/src/Elasticsearch/Client.php)). For more information read the [experimental and beta APIs](docs/experimental-beta-apis.asciidoc)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DIndicesNamespace.asciidoc87 $params['block'] = (string) The block to add (one of read, write, read_only or metadata)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dconfiguration.asciidoc12 To learn more about JSON in PHP, read <<php_json_objects>>.
H A Dcrud.asciidoc4 IMPORTANT: Please note that mapping types will disappear from {es}, read more
H A Dphp_json_objects.asciidoc110 It makes these nested arrays much simpler to read:
H A Drelease-notes.asciidoc257 For more information read the
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/
H A DCHANGELOG.rst21 amount of data read from the stream, use the
24 failure. You MUST return ``false`` to mark the read as a failure, and ensure
33 and when read, shifting data off of the buffer.
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DAppendStream.php9 * This is a read-only stream decorator.
162 $this->read(min(8096, $offset - $this->pos));
173 public function read($length) function in GuzzleHttp\\Stream\\AppendStream
187 $buffer .= $this->streams[$this->current]->read($remaining);
H A DAsyncReadStream.php5 * Represents an asynchronous read-only stream that supports a drain event and
9 * the data you can read from the stream will immediately return only
54 * - pump: (callable) A function that accepts the number of bytes to read
56 * that was requested has been read, EOF of the source stream, or the
58 * - size: (int) The expected size in bytes of the data that will be read
62 * been read by the event loop.
181 public function read($length) function in GuzzleHttp\\Stream\\AsyncReadStream
187 $result = $this->stream->read($length);
H A DBufferStream.php7 * Provides a buffer stream that can be written to to fill a buffer, and read
99 public function read($length) function in GuzzleHttp\\Stream\\BufferStream
H A DCachingStream.php7 * Stream decorator that can cache previously read bytes from a sequentially
8 * read stream.
54 // You cannot skip ahead past where you've read from the remote stream
67 public function read($length) function in GuzzleHttp\\Stream\\CachingStream
69 // Perform a regular read on any previously read data from the buffer
70 $data = $this->stream->read($length);
73 // More data was requested so read from the remote stream
79 $remoteData = $this->remoteStream->read(
98 // When appending to the end of the currently read strea
[all...]
H A DFnStream.php18 'isReadable', 'read', 'getContents', 'getMetadata'];
133 public function read($length) function in GuzzleHttp\\Stream\\FnStream
H A DGuzzleStreamWrapper.php70 return $this->stream->read($count);
H A DLimitStream.php16 /** @var int Limit the number of bytes that can be read */
21 * @param int $limit Total number of bytes to allow to be read
72 * Allow for a bounded seek on the read limited stream
114 // If the stream cannot seek to the offset position, then read to it
119 $this->stream->read($offset - $current);
130 * Set the limit of bytes that the decorator allows to be read from the
133 * @param int $limit Number of bytes to allow to be read from the stream.
144 public function read($length) function in GuzzleHttp\\Stream\\LimitStream
147 return $this->stream->read($length);
156 return $this->stream->read(mi
[all...]
H A DNullStream.php65 public function read($length) function in GuzzleHttp\\Stream\\NullStream
H A DPumpStream.php7 * Provides a read only stream that pumps data from a PHP callable.
10 * data requested to read to the callable. The callable can choose to ignore
13 * the read() function of the PumpStream. The provided callable MUST return
14 * false when there is no more data to read.
112 public function read($length) function in GuzzleHttp\\Stream\\PumpStream
114 $data = $this->buffer->read($length);
121 $data .= $this->buffer->read($remaining);
132 $result .= $this->read(1000000);

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