Home
last modified time | relevance | path

Searched refs:in (Results 176 – 200 of 3785) sorted by path

12345678910>>...152

/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DLICENSE5 in the Software without restriction, including without limitation the rights
10 The above copyright notice and this permission notice shall be included in
H A DUPGRADING.md21 is now present in the `GuzzleHttp\Psr7` namespace provided by the
38 - `GuzzleHttp\Mimetypes` has been moved to a function in
78 - Guzzle now uses `Psr\Http\Message\UriInterface` (implements in
188 deprecated in favor of using `GuzzleHttp\Pool::batch()`.
232 now utilized in `GuzzleHttp\Event\EmitterInterface` (resulting in significant
352 send multiple requests in parallel.
393 both requests and responses and is implemented in
459 // Read some data off of the stream in the response body
501 methods and a way in which to modify the transaction at that specific point in
601 in separate repositories:
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/promises/
H A DLICENSE10 in the Software without restriction, including without limitation the rights
15 The above copyright notice and this permission notice shall be included in
H A DREADME.md65 only once and in the order in which they were added.
98 Promises can be chained one after the other. Each then in the chain is a new
100 promise in the chain. Returning a promise in a `then` callback will cause the
101 subsequent promises in the chain to only be fulfilled when the returned promise
102 has been fulfilled. The next promise in the chain will be invoked with the
145 If an exception is thrown in an `$onRejected` callback, subsequent
162 `GuzzleHttp\Promise\RejectedPromise` in either an `$onFulfilled` or
179 If an exception is not thrown in a `$onRejected` callback and the callback
409 promise in order to utilize wait and cancel functions with foreign promises.
417 any forwarded promises are resolved. When using promises asynchronously in an
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A D.php_cs.dist50 ->in(__DIR__.'/src')
51 ->in(__DIR__.'/tests')
H A DCHANGELOG.md4 All notable changes to this project will be documented in this file.
28 - Return `null` in caching stream size if remote size is `null`
34 - Handle possibly unset `url` in `stream_get_meta_data`
65 - Ignore array keys in header values when merging
66 - Allow multibyte characters to be parsed in `Message:bodySummary()`
95 - Fixed subsequent reads from `php://input` in ServerRequest (#247)
191 - `Uri::resolve` in favor of `UriResolver::resolve`
208 - Handling of URI components in case they are `'0'` in a lot of places,
254 - Support for including non-standard ports in Host headers.
269 - Now allowing forward seeking in CachingStream.
[all …]
H A DLICENSE12 in the Software without restriction, including without limitation the rights
17 The above copyright notice and this permission notice shall be included in
H A DREADME.md50 // When more than 1024 bytes are in the buffer, it will begin returning
61 from a redirect). Data that is read from the remote stream will be buffered in
62 a PHP temp stream so that previously read bytes are cached first in memory,
164 This can be useful for breaking a large file into smaller pieces to be sent in
505 buffered and used in subsequent reads.
558in 1.7.0, in order to mitigate problems with functions conflicting between global and local copie…
689 `GuzzleHttp\Psr7\UriResolver` provides methods to resolve a URI reference in the context of a base …
691 do when resolving a link in a website based on the current request URI.
716 One use-case is to use the current request URI as base URI and then generate relative links in your…
781 …Removes unnecessary dot-segments. Dot-segments in relative-path references are not removed as it w…
[all …]
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md64 * Fixed PHP 8 issues in SyslogUdpHandler
72 * Fixed array access on null in RavenHandler
90 * Fixed formatting of resources in JsonFormatter
165 * Fixed array access on null in RavenHandler
176 * Fixed formatting of resources in JsonFormatter
225 * Fixed naming of fields in Slack handler, all field names are now capitalized in all cases
264 …* Added support for more formats in RotatingFileHandler::setFilenameFormat as long as they have Y,…
338 * Fixed bug in the handling of curl failures
449 * Fixed batch request support in GelfHandler
533 * Fixed fatal error in SyslogHandler
[all …]
H A DLICENSE5 in the Software without restriction, including without limitation the rights
10 The above copyright notice and this permission notice shall be included in all
H A DREADME.md12 interface that you can type-hint against in your own libraries to keep
13 a maximum of interoperability. You can also use it in your applications to
60 [listed in the wiki](https://github.com/Seldaek/monolog/wiki/Third-Party-Packages). You
103 …f [contributors](https://github.com/Seldaek/monolog/contributors) who participated in this project.
H A DUPGRADE.md11 in some cases.
13 - The `datetime` in every record array is now a DateTimeImmutable, not that you
17 via ->setTimezone or passed in the constructor. Calls to Logger::setTimezone
41 as in 1.x.
54 - Context/extra prefix has been removed in favor of letting users configure the exact key being sent
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/
H A DLICENSE.txt7 in the Software without restriction, including without limitation the rights
12 The above copyright notice and this permission notice shall be included in all
33 in the Software without restriction, including without limitation the rights
38 The above copyright notice and this permission notice shall be included in all
H A DREADME.md83 If your company uses this library in their products or services, you may be
84 interested in [purchasing a support contract from Paragon Initiative Enterprises](https://paragonie…
/plugin/authgooglesheets/vendor/paragonie/random_compat/
H A DLICENSE7 in the Software without restriction, including without limitation the rights
12 The above copyright notice and this permission notice shall be included in all
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/
H A DLICENSE5 "Software"), to deal in the Software without restriction, including
12 included in all copies or substantial portions of the Software.
H A DREADME.md30 * Do not use in production
67 * [Browse the Support Forum](http://www.frostjedi.com/phpbb/viewforum.php?f=46) (no longer in use)
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBlowfish.php409 * @param string $in
412 protected function encryptBlock($in) argument
421 $in = unpack('N*', $in);
422 $l = $in[1];
423 $r = $in[2];
443 * @param string $in
446 protected function decryptBlock($in) argument
454 $in = unpack('N*', $in);
455 $l = $in[1];
456 $r = $in[2];
H A DDES.php652 * @param string $in
655 protected function encryptBlock($in) argument
657 return $this->processBlock($in, self::ENCRYPT);
667 * @param string $in
670 protected function decryptBlock($in) argument
672 return $this->processBlock($in, self::DECRYPT);
H A DRC2.php457 * @param string $in
460 protected function encryptBlock($in) argument
462 list($r0, $r1, $r2, $r3) = array_values(unpack('v*', $in));
502 * @param string $in
505 protected function decryptBlock($in) argument
507 list($r0, $r1, $r2, $r3) = array_values(unpack('v*', $in));
H A DRC4.php223 * @param string $in
225 protected function encryptBlock($in) argument
234 * @param string $in
236 protected function decryptBlock($in) argument
H A DRijndael.php328 * @param string $in
331 protected function encryptBlock($in) argument
344 $words = unpack('N*', $in);
418 * @param string $in
421 protected function decryptBlock($in) argument
434 $words = unpack('N*', $in);
H A DSalsa20.php290 * @param string $in
292 protected function encryptBlock($in) argument
300 * @param string $in
302 protected function decryptBlock($in) argument
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DAsymmetricKey.php595 * @param string $in
598 protected function bits2int($in) argument
600 $v = new BigInteger($in, 256);
601 $vlen = strlen($in) << 3;
613 * @param string $in
616 private function bits2octets($in) argument
618 $z1 = $this->bits2int($in);
H A DSymmetricKey.php2419 * @param string $in
2422 abstract protected function encryptBlock($in); argument
2430 * @param string $in
2433 abstract protected function decryptBlock($in); argument

12345678910>>...152