Home
last modified time | relevance | path

Searched refs:code (Results 451 – 475 of 2534) sorted by path

1...<<11121314151617181920>>...102

/plugin/authgooglesheets/vendor/google/auth/
H A DCOPYING28 including but not limited to software source code, documentation
33 not limited to compiled object code, generated documentation,
57 communication on electronic mailing lists, source code control systems,
H A DLICENSE27 including but not limited to software source code, documentation
32 not limited to compiled object code, generated documentation,
56 communication on electronic mailing lists, source code control systems,
H A DREADME.md56 > committed with your source code, and should be stored securely.
78 credentials file, the following code should output a list of your Drive files.
/plugin/authgooglesheets/vendor/google/auth/src/
H A DCredentialsLoader.php245 '"cert_provider_command" failed with a nonzero exit code'
H A DOAuth2.php146 private $code; variable in Google\\Auth\\OAuth2
859 if (!is_null($this->code)) {
928 return $this->code;
934 * @param string $code
937 public function setCode($code) argument
939 $this->code = $code;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md74 + Minor code cleanups, documentation fixes and clarifications.
96 + Minor code cleanups, documentation fixes and clarifications.
580 * The HTTP status code of a response is now set as the exception code of
594 parallel without needing to write asynchronous code.
649 * cURL error code 18 is now retried automatically in the BackoffPlugin
907 * Bug fix: Removed code that attempted to determine the size of a stream when data is written to th…
1081 * Moved all cookie code to Guzzle\Plugin\Cookie
1313 * Refactoring a lot of code and tests to be case insensitive when dealing with headers
H A DREADME.md18 environment and transport agnostic code; i.e., no hard dependency on cURL,
H A DUPGRADING.md582 code has moved to `GuzzleHttp\Cookie`.
737 that implement them, but you should update your code to use alternative methods:
781 …usly relied on Guzzle\Http\Message\Header::raw(), then you will need to update your code to use the
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Exception/
H A DRequestException.php31 $code = $response && !($response instanceof PromiseInterface)
34 parent::__construct($message, $code, $previous);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DStreamHandler.php478 function ($code, $a, $b, $c, $transferred, $total) use ($value) {
479 if ($code == STREAM_NOTIFY_PROGRESS) {
513 $code = array_shift($passed);
514 fprintf($value, '<%s> [%s] ', $ident, $map[$code]);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DMiddleware.php61 $code = $response->getStatusCode();
62 if ($code < 400) {
/plugin/authgooglesheets/vendor/guzzlehttp/promises/
H A DREADME.md547 …s you use to build your applications. Save time, reduce risk, and improve code health, while payin…
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md86 - Added more validation of values according to PSR-7 and RFC standards, e.g. status code range (#25…
H A DREADME.md824 …s you use to build your applications. Save time, reduce risk, and improve code health, while payin…
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DResponse.php127 public function withStatus($code, $reasonPhrase = '') argument
129 $this->assertStatusCodeIsInteger($code);
130 $code = (int) $code;
131 $this->assertStatusCodeRange($code);
134 $new->statusCode = $code;
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md199 …nterface, ProcessableHandlerTrait. If you use modern PHP and want to make code compatible with Mon…
348 …* Fixed process exit code being incorrectly reset to 0 if ErrorHandler::registerExceptionHandler w…
H A DREADME.md55 …s you use to build your applications. Save time, reduce risk, and improve code health, while payin…
H A DUPGRADE.md4 install of Monolog when writing integration code.
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/
H A DErrorHandler.php213 …public function handleError(int $code, string $message, string $file = '', int $line = 0, ?array $… argument
215 if ($this->handleOnlyReportedErrors && !(error_reporting() & $code)) {
220 if (!$this->hasFatalErrorHandler || !in_array($code, self::$fatalErrors, true)) {
221 $level = $this->errorLevelMap[$code] ?? LogLevel::CRITICAL;
222 …$this->logger->log($level, self::codeToString($code).': '.$message, ['code' => $code, 'message' =>…
232 return (bool) ($this->previousErrorHandler)($code, $message, $file, $line, $context);
262 * @param int $code
264 private static function codeToString($code): string argument
266 switch ($code) {
H A DUtils.php110 * @param int $code return code of json_last_error function
116 public static function handleJsonError(int $code, $data, ?int $encodeFlags = null): string argument
118 if ($code !== JSON_ERROR_UTF8) {
119 self::throwEncodeError($code, $data);
127 self::throwEncodeError($code, $data);
146 public static function pcreLastErrorMessage(int $code): string argument
159 return $constants[$code] ?? 'UNDEFINED_ERROR';
165 * @param int $code return code of json_last_error function
171 private static function throwEncodeError(int $code, $data): void argument
173 switch ($code) {
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DPHPConsoleHandler.php222 $context['code'] ?? null,
H A DStreamHandler.php181 private function customErrorHandler(int $code, string $msg): bool argument
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/
H A DEvalBarrett.php65 $code = 'return bcmod($x, $n);';
66 eval('$func = function ($n) { ' . $code . '};');
81 $code = '
106 eval('$func = function ($n) { ' . $code . '};');
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DEvalBarrett.php66 $code = '
106 $code = '
264 $code = '
279 $code .= '
312 $code = '
336 $code .= ';
355 return $code;
410 $code .= '
419 return $code;
448 $code .= '
[all …]
/plugin/authgooglesheets/vendor/psr/http-message/src/
H A DResponseInterface.php45 * @param int $code The 3-digit integer result code to set.
52 public function withStatus($code, $reasonPhrase = ''); argument

1...<<11121314151617181920>>...102