Home
last modified time | relevance | path

Searched refs:stream (Results 1 – 25 of 459) sorted by path

12345678910>>...19

/plugin/a2s/
H A DASCIIToSVG.php113 function __construct($stream) { argument
114 $this->yy_reader = $stream;
115 $meta = stream_get_meta_data($stream);
1157 function __construct($stream) { argument
1158 parent::__construct($stream);
1803 $stream = fopen("data://text/plain,{$path}", 'r');
1806 $S = new A2S_Yylex($stream);
1814 fclose($stream);
/plugin/aichat/Model/OpenAI/
H A DGPT35Turbo.php121 'stream' => false,
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/data/
H A Dvocab.bpe8407 Ġmain stream
28463 Ġup stream
32964 Ġdown stream
45751 Ġblood stream
/plugin/amcharts/assets/amcharts/plugins/export/libs/jszip/
H A Djszip.js1244 load: function(stream, options) { argument
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.js17268 })(stream.Readable);
18218 flow(stream);
18242 stream.read(0);
18522 flow(stream);
18524 stream.read(0);
18576 stream.pause();
18585 return stream[method].apply(stream, arguments);
18602 stream.resume();
19880 stream.push(data);
19902 var stream = this;
[all …]
H A Dpdfmake.min.js.map1stream","__hasProp","__extends","child","ctor","__super__","_super","_ref","_ref1","_pageBuffer","…
/plugin/authfacebook/lib/FileUpload/
H A DFacebookFile.php53 protected $stream; variable in Facebook\\FileUpload\\FacebookFile
91 $this->stream = fopen($this->path, 'r');
93 if (!$this->stream) {
103 if (is_resource($this->stream)) {
104 fclose($this->stream);
115 return stream_get_contents($this->stream, $this->maxLength, $this->offset);
/plugin/authfacebook/lib/HttpClients/
H A DFacebookStream.php39 protected $stream; variable in Facebook\\HttpClients\\FacebookStream
53 $this->stream = stream_context_create($options);
75 $rawResponse = file_get_contents($url, false, $this->stream);
/plugin/authfacebook/lib/PseudoRandomString/
H A DUrandomPseudoRandomStringGenerator.php65 $stream = fopen('/dev/urandom', 'rb');
66 if (!is_resource($stream)) {
74 stream_set_read_buffer($stream, 0);
77 $binaryString = fread($stream, $length);
78 fclose($stream);
/plugin/authgooglesheets/
H A Dcomposer.lock480 "stream",
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md127 * Bug fix: defer sink stream opening in StreamHandler.
429 expectations, and if so, change the actual stream body that is being
458 * No longer using `request_fulluri` in stream adapter proxies.
487 * Fixed an issue in the CurlFactory that caused setting the `stream=false`
505 "stream" set to true in parallel using the MultiAdapter.
609 * Added the ability to specify custom stream context options to the stream
634 * Sending PHP stream requests no longer forces `HTTP/1.0`
710 * Bug fix: Moving stream factory before send event to before building the stream. See #353
907 …x: Removed code that attempted to determine the size of a stream when data is written to the stream
917 * Added the ability to create a custom stream class when using a stream factory
[all …]
H A DUPGRADING.md209 expectations, and if so, change the actual stream body that is being
446 `GuzzleHttp\Message\ResponseInterface` object that contains a body stream
447 referencing an open PHP HTTP stream.
454 $stream = $factory->fromRequest($request);
455 $data = $stream->read(1024);
458 $response = $client->get('/', ['stream' => true]);
459 // Read some data off of the stream in the response body
636 allow developers to more easily extend and decorate stream behavior.
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Exception/
H A DSeekException.php11 private $stream; variable in GuzzleHttp\\Exception\\SeekException
13 public function __construct(StreamInterface $stream, $pos = 0, $msg = '') argument
15 $this->stream = $stream;
25 return $this->stream;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DStreamHandler.php97 $stream, argument
107 list($stream, $headers) = $this->checkDecode($options, $headers, $stream);
108 $stream = Psr7\stream_for($stream);
109 $sink = $stream;
112 $sink = $this->createSink($stream, $options);
129 if ($sink !== $stream) {
131 $stream,
145 return $stream;
165 $stream = new Psr7\InflateStream(
166 Psr7\stream_for($stream)
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md28 - Return `null` in caching stream size if remote size is `null`
52 - Issue when creating stream from `php://input` and curl-ext is not installed
63 - Converting a non-seekable stream to a string
96 - Fixed readable/writable detection for certain stream modes (#248)
125 - Clarify exception message when stream is detached
134 - `InflateStream` preserves `isSeekable` attribute of the underlying stream
H A DREADME.md13 This package comes with a number of stream implementations and stream
71 $stream->read(1024);
72 echo $stream->tell();
75 $stream->seek(0);
76 echo $stream->tell();
136 the gzip header, converts the provided stream to a PHP stream resource,
138 to a Guzzle stream resource to be used as a Guzzle stream.
178 echo $stream->tell();
251 $this->stream = $stream;
292 PSR-7 stream as a PHP stream resource.
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DAppendStream.php29 foreach ($streams as $stream) {
30 $this->addStream($stream);
53 if (!$stream->isReadable()) {
58 if (!$stream->isSeekable()) {
62 $this->streams[] = $stream;
80 foreach ($this->streams as $stream) {
81 $stream->close();
99 foreach ($this->streams as $stream) {
100 $stream->detach();
126 $s = $stream->getSize();
[all …]
H A DCachingStream.php30 StreamInterface $stream, argument
33 $this->remoteStream = $stream;
45 return max($this->stream->getSize(), $remoteSize);
69 $diff = $byte - $this->stream->getSize();
76 $diff = $byte - $this->stream->getSize();
80 $this->stream->seek($byte);
87 $data = $this->stream->read($length);
107 $this->stream->write($remoteData);
124 return $this->stream->write($string);
129 return $this->stream->eof() && $this->remoteStream->eof();
[all …]
H A DDroppingStream.php20 * @param StreamInterface $stream Underlying stream to decorate.
23 public function __construct(StreamInterface $stream, $maxLength) argument
25 $this->stream = $stream;
31 $diff = $this->maxLength - $this->stream->getSize();
40 return $this->stream->write($string);
43 return $this->stream->write(substr($string, 0, $diff));
H A DFnStream.php73 * @param StreamInterface $stream Stream to decorate
78 public static function decorate(StreamInterface $stream, array $methods) argument
83 $methods[$diff] = [$stream, $diff];
H A DInflateStream.php24 public function __construct(StreamInterface $stream) argument
27 $header = $stream->read(10);
28 $filenameHeaderLength = $this->getLengthOfPossibleFilenameHeader($stream, $header);
30 $stream = new LimitStream($stream, -1, 10 + $filenameHeaderLength);
31 $resource = StreamWrapper::getResource($stream);
33 …$this->stream = $stream->isSeekable() ? new Stream($resource) : new NoSeekStream(new Stream($resou…
37 * @param StreamInterface $stream
42 private function getLengthOfPossibleFilenameHeader(StreamInterface $stream, $header) argument
49 while ($stream->read(1) !== chr(0)) {
H A DLimitStream.php23 * @param StreamInterface $stream Stream to wrap
30 StreamInterface $stream, argument
34 $this->stream = $stream;
42 if ($this->stream->eof()) {
91 $this->stream->seek($offset);
100 return $this->stream->tell() - $this->offset;
112 $current = $this->stream->tell();
116 if ($this->stream->isSeekable()) {
117 $this->stream->seek($offset);
121 $this->stream->read($offset - $current);
[all …]
H A DMessageTrait.php22 private $stream; variable
120 if (!$this->stream) {
121 $this->stream = Utils::streamFor('');
124 return $this->stream;
129 if ($body === $this->stream) {
134 $new->stream = $body;
H A DMultipartStream.php34 $this->stream = $this->createStream($elements);
70 $stream = new AppendStream();
73 $this->addElement($stream, $element);
77 $stream->addStream(Utils::streamFor("--{$this->boundary}--\r\n"));
79 return $stream;
82 private function addElement(AppendStream $stream, array $element) argument
106 $stream->addStream(Utils::streamFor($this->getHeaders($headers)));
107 $stream->addStream($body);
108 $stream->addStream(Utils::streamFor("\r\n"));
131 if ($length = $stream->getSize()) {
[all …]
H A DRequest.php55 $this->stream = Utils::streamFor($body);

12345678910>>...19