| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataflow/ |
| D | SeqMapTaskOutputInfo.php | 32 public function setSink(Sink $sink) argument 34 $this->sink = $sink; 41 return $this->sink;
|
| D | WriteInstruction.php | 44 public function setSink(Sink $sink) argument 46 $this->sink = $sink; 53 return $this->sink;
|
| /plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/Handler/ |
| D | MockHandler.php | 123 $sink = $options['sink']; 125 if (\is_resource($sink)) { 126 \fwrite($sink, $contents); 127 } elseif (\is_string($sink)) { 128 \file_put_contents($sink, $contents); 129 } elseif ($sink instanceof StreamInterface) { 130 $sink->write($contents);
|
| D | CurlFactory.php | 403 $sink = $options['sink']; 404 if (!\is_string($sink)) { 405 $sink = \GuzzleHttp\Psr7\Utils::streamFor($sink); 406 } elseif (!\is_dir(\dirname($sink))) { 408 …imeException(\sprintf('Directory %s does not exist for sink value of %s', \dirname($sink), $sink)); 410 $sink = new LazyOpenStream($sink, 'w+'); 412 $easy->sink = $sink; 413 $conf[\CURLOPT_WRITEFUNCTION] = static function ($ch, $write) use ($sink): int { 414 return $sink->write($write);
|
| D | StreamHandler.php | 113 $sink = $stream; 116 $sink = $this->createSink($stream, $options); 120 $response = new Psr7\Response($status, $headers, $sink, $ver, $reason); 139 if ($sink !== $stream) { 140 $this->drain($stream, $sink, $response->getHeaderLine('Content-Length')); 154 $sink = $options['sink'] ?? Psr7\Utils::tryFopen('php://temp', 'r+'); 156 … return \is_string($sink) ? new Psr7\LazyOpenStream($sink, 'w+') : Psr7\Utils::streamFor($sink); 201 …private function drain(StreamInterface $source, StreamInterface $sink, string $contentLength): Str… argument 209 $sink, 213 $sink->seek(0); [all …]
|
| D | EasyHandle.php | 26 public $sink; variable in GuzzleHttp\\Handler\\EasyHandle 81 $bodyLength = (int) $this->sink->getSize(); 94 $this->sink,
|
| /plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/ |
| D | MockHandler.php | 105 $sink = $options['sink']; 107 if (is_resource($sink)) { 108 fwrite($sink, $contents); 109 } elseif (is_string($sink)) { 110 file_put_contents($sink, $contents); 111 } elseif ($sink instanceof \Psr\Http\Message\StreamInterface) { 112 $sink->write($contents);
|
| D | StreamHandler.php | 109 $sink = $stream; 112 $sink = $this->createSink($stream, $options); 115 $response = new Psr7\Response($status, $headers, $sink, $ver, $reason); 129 if ($sink !== $stream) { 132 $sink, 148 $sink = isset($options['sink']) 152 return is_string($sink) 153 ? new Psr7\LazyOpenStream($sink, 'w+') 154 : Psr7\stream_for($sink); 195 * @param StreamInterface $sink [all …]
|
| D | CurlFactory.php | 380 $sink = $options['sink']; 381 if (!is_string($sink)) { 382 $sink = \GuzzleHttp\Psr7\stream_for($sink); 383 } elseif (!is_dir(dirname($sink))) { 387 dirname($sink), 388 $sink 391 $sink = new LazyOpenStream($sink, 'w+'); 393 $easy->sink = $sink; 394 $conf[CURLOPT_WRITEFUNCTION] = function ($ch, $write) use ($sink) { 395 return $sink->write($write); [all …]
|
| D | EasyHandle.php | 20 public $sink; variable in GuzzleHttp\\Handler\\EasyHandle 66 $bodyLength = (int) $this->sink->getSize(); 79 $this->sink,
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/MyBusinessLodging/ |
| D | LivingAreaEating.php | 113 public $sink; variable in Google\\Service\\MyBusinessLodging\\LivingAreaEating 462 public function setSink($sink) argument 464 $this->sink = $sink; 471 return $this->sink;
|
| /plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/ |
| D | CHANGELOG.md | 188 - We dont connect curl `sink` on HEAD requests. 409 * Bug fix: defer sink stream opening in StreamHandler. 433 * Bug fix: fixed regression where MockHandler was not using `sink`. 515 * Ensuring that `sink` is valid if saving to a file. 569 * The `save_to` request option has been deprecated in favor of `sink` request
|
| D | UPGRADING.md | 31 - Request option `save_to` is removed. Please use `sink`.
|
| /plugin/pdfjs/pdfjs/build/ |
| D | pdf.js | 8998 var sink = new TransformStreamSink(this, startPromise); 8999 this._writable = new WritableStream(sink, writableStrategy); 11334 messageHandler.on('GetReader', function (data, sink) { argument 11347 sink.onPull = function () { method 11353 sink.close(); 11358 sink.enqueue(new Uint8Array(value), 1, [value]); 11360 sink.error(reason); 11364 sink.onCancel = function (reason) { method 11397 messageHandler.on('GetRangeReader', function (data, sink) { argument 11403 sink.close(); [all …]
|
| D | pdf.worker.js | 668 handler.on('GetTextContent', function wphExtractText(data, sink) { argument 671 sink.onPull = function (desiredSize) {}; 673 sink.onCancel = function (reason) {}; 682 sink: sink, property 692 sink.close(); 700 sink.error(reason); 10167 var sink = new TransformStreamSink(this, startPromise); 10168 this._writable = new WritableStream(sink, writableStrategy); 12771 sink = _ref7.sink, 12796 sink: sink property [all …]
|
| D | pdf.js.map | 1 …sink","isURLSupported","u","PolyfillURL","OriginalURL","relative","relativePathDotMapping","h","in…
|
| D | pdf.worker.js.map | 1 …sink","normalizeWhitespace","combineTextItems","waitOn","setupDoc","initializeFromPort","maybePort…
|
| /plugin/authgooglesheets/vendor/guzzlehttp/guzzle/ |
| D | CHANGELOG.md | 127 * Bug fix: defer sink stream opening in StreamHandler. 150 * Bug fix: fixed regression where MockHandler was not using `sink`. 228 * Ensuring that `sink` is valid if saving to a file. 280 * The `save_to` request option has been deprecated in favor of `sink` request
|
| /plugin/passpolicy/ |
| D | words.txt | 3231 sink
|
| /plugin/diagramsnet/lib/WEB-INF/lib/ |
| D | ehcache-3.8.1.jar | META-INF/
META-INF/MANIFEST.MF
LICENSE
META-INF/maven/
META ... |
| /plugin/dirtylittlehelper/mermaid/editor/ |
| D | fontawesome.all.min.css | 5 …im-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e0…
|
| /plugin/mikioplugin/icons/fontawesome5/css/ |
| H A D | all.min.css | 5 …im-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\f9…
|
| /plugin/bible/bible_douayRheims/ |
| D | Judith.txt | 95 …6:5. But if thou think thy prophecy true, let not thy countenance sink, and let the paleness that …
|
| D | Matthew.txt | 483 …14:30. But seeing the wind strong, he was afraid: and when he began to sink, he cried out, saying:…
|
| /plugin/dirtylittlehelper/script/ |
| D | mermaid.min.js.map | 1 …sink","clipLine","ringBuffer","ringSink","polygonStarted","pointRing","ringStart","ringEnd","polyg…
|