Home
last modified time | relevance | path

Searched refs:args (Results 26 – 50 of 559) sorted by path

12345678910>>...23

/plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/
H A DContaineranalysisGoogleDevtoolsCloudbuildV1BuildStep.php26 public $args; variable in Google\\Service\\ContainerAnalysis\\ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStep
77 public function setArgs($args) argument
79 $this->args = $args;
86 return $this->args;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataproc/
H A DHadoopJob.php30 public $args; variable in Google\\Service\\Dataproc\\HadoopJob
71 public function setArgs($args) argument
73 $this->args = $args;
80 return $this->args;
H A DPySparkBatch.php30 public $args; variable in Google\\Service\\Dataproc\\PySparkBatch
65 public function setArgs($args) argument
67 $this->args = $args;
74 return $this->args;
H A DPySparkJob.php30 public $args; variable in Google\\Service\\Dataproc\\PySparkJob
71 public function setArgs($args) argument
73 $this->args = $args;
80 return $this->args;
H A DSparkBatch.php30 public $args; variable in Google\\Service\\Dataproc\\SparkBatch
65 public function setArgs($args) argument
67 $this->args = $args;
74 return $this->args;
H A DSparkJob.php30 public $args; variable in Google\\Service\\Dataproc\\SparkJob
71 public function setArgs($args) argument
73 $this->args = $args;
80 return $this->args;
H A DSparkRBatch.php30 public $args; variable in Google\\Service\\Dataproc\\SparkRBatch
57 public function setArgs($args) argument
59 $this->args = $args;
66 return $this->args;
H A DSparkRJob.php30 public $args; variable in Google\\Service\\Dataproc\\SparkRJob
63 public function setArgs($args) argument
65 $this->args = $args;
72 return $this->args;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/FirebaseRules/
H A DFunctionCall.php26 public $args; variable in Google\\Service\\FirebaseRules\\FunctionCall
35 public function setArgs($args) argument
37 $this->args = $args;
44 return $this->args;
H A DFunctionMock.php35 public function setArgs($args) argument
37 $this->args = $args;
44 return $this->args;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/OSConfig/
H A DOSPolicyResourceExecResourceExec.php26 public $args; variable in Google\\Service\\OSConfig\\OSPolicyResourceExecResourceExec
45 public function setArgs($args) argument
47 $this->args = $args;
54 return $this->args;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/OnDemandScanning/
H A DCommand.php26 public $args; variable in Google\\Service\\OnDemandScanning\\Command
51 public function setArgs($args) argument
53 $this->args = $args;
60 return $this->args;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Spanner/
H A DLocalizedString.php25 public $args; variable in Google\\Service\\Spanner\\LocalizedString
38 public function setArgs($args) argument
40 $this->args = $args;
47 return $this->args;
/plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/
H A DVerify.php103 $args = [$idToken];
106 $args[] = new Key($publicKey, 'RS256');
108 $args[] = $publicKey;
109 $args[] = ['RS256'];
111 $payload = \call_user_func_array([$this->jwt, 'decode'], $args);
/plugin/authgooglesheets/vendor/google/auth/src/
H A DAccessToken.php453 protected function callJwtStatic($method, array $args = []) argument
455 return call_user_func_array([JWT::class, $method], $args); // @phpstan-ignore-line
464 protected function callSimpleJwtDecode(array $args = []) argument
466 return call_user_func_array([SimpleJwt::class, 'decode'], $args);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md1296 …zzle\Http\Message\Response::setProtocol() method to accept a protocol and version in separate args.
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DClient.php80 * @param array $args
84 public function __call($method, $args) argument
86 if (count($args) < 1) {
90 $uri = $args[0];
91 $opts = isset($args[1]) ? $args[1] : [];
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DCurlFactory.php484 $args = func_get_args();
486 if (is_resource($args[0])) {
487 array_shift($args);
489 call_user_func_array($progress, $args);
H A DStreamHandler.php504 static $args = ['severity', 'message', 'message_code',
511 function () use ($ident, $value, $map, $args) {
516 fwrite($value, $args[$i] . ': "' . $v . '" ');
539 $args = func_get_args();
541 call_user_func_array($fn, $args);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DStreamDecoratorTrait.php64 * @param array $args Method arguments
68 public function __call($method, array $args) argument
70 $result = call_user_func_array([$this->stream, $method], $args);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DBrowserConsoleHandler.php200 $args = [];
205 $args[] = '"font-weight: normal"';
212 $args[] = static::quote('font-weight: normal');
213 $args[] = static::quote($format);
215 return array_reverse($args);
274 * @param mixed $args
276 private static function call(...$args): string argument
278 $method = array_shift($args);
283 return static::call_array($method, $args);
287 * @param mixed[] $args
[all …]
H A DTestHandler.php213 * @param mixed[] $args
216 public function __call($method, $args) argument
223 $args[] = $level;
225 return call_user_func_array($callback, $args);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDH.php83 public static function createParameters(...$args) argument
86 if (count($args) == 2 && $args[0] instanceof BigInteger && $args[1] instanceof BigInteger) {
90 $params->prime = $args[0];
91 $params->base = $args[1];
93 } elseif (count($args) == 1 && is_numeric($args[0])) {
94 $params->prime = BigInteger::randomPrime($args[0]);
97 } elseif (count($args) != 1 || !is_string($args[0])) {
100 switch ($args[0]) {
H A DDSA.php192 public static function createKey(...$args) argument
200 if (count($args) == 2 && is_int($args[0]) && is_int($args[1])) {
201 $params = self::createParameters($args[0], $args[1]);
202 } elseif (count($args) == 1 && $args[0] instanceof Parameters) {
203 $params = $args[0];
204 } elseif (!count($args)) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php1244 public function setListOrder(...$args) argument
1247 if (empty($args)) {
1250 $len = count($args) & 0x7FFFFFFE;
1252 $this->sortOptions[$args[$i]] = $args[$i + 1];

12345678910>>...23