Home
last modified time | relevance | path

Searched refs:max (Results 51 – 75 of 1190) sorted by path

12345678910>>...48

/plugin/authgooglesheets/vendor/firebase/php-jwt/src/
H A DJWT.php516 $length = max(1, (int) (\strlen($sig) / 2));
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DAnalytics.php144 'max-results' => [
211 'max-results' => [
260 'max-results' => [
283 'max-results' => [
336 'max-results' => [
374 'max-results' => [
421 'max-results' => [
489 'max-results' => [
605 'max-results' => [
761 'max-results' => [
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/
H A DDoubleRange.php22 public $max; variable in Google\\Service\\Bigquery\\DoubleRange
25 public function setMax($max) argument
27 $this->max = $max;
31 return $this->max;
H A DIntRange.php25 public $max; variable in Google\\Service\\Bigquery\\IntRange
34 public function setMax($max) argument
36 $this->max = $max;
43 return $this->max;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DLP/
H A DGooglePrivacyDlpV2Bucket.php32 public function setMax(GooglePrivacyDlpV2Value $max) argument
34 $this->max = $max;
41 return $this->max;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataflow/
H A DDistributionUpdate.php65 public function setMax(SplitInt64 $max) argument
67 $this->max = $max;
74 return $this->max;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/
H A DGoogleMonitoringV3Range.php22 public $max; variable in Google\\Service\\Monitoring\\GoogleMonitoringV3Range
25 public function setMax($max) argument
27 $this->max = $max;
31 return $this->max;
H A DRange.php22 public $max; variable in Google\\Service\\Monitoring\\Range
25 public function setMax($max) argument
27 $this->max = $max;
31 return $this->max;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PagespeedInsights/
H A DBucket.php25 public $max; variable in Google\\Service\\PagespeedInsights\\Bucket
35 public function setMax($max) argument
37 $this->max = $max;
44 return $this->max;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/RecommendationsAI/
H A DGoogleCloudRecommendationengineV1beta1ProductCatalogItemPriceRange.php25 public $max; variable in Google\\Service\\RecommendationsAI\\GoogleCloudRecommendationengineV1beta1ProductCatalogItemPriceRange
34 public function setMax($max) argument
36 $this->max = $max;
43 return $this->max;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DUPGRADING.md469 // Standard redirects with a default of a max of 5 redirects
474 'allow_redirects' => ['max' => 5, 'strict' => true]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DCurlMultiHandler.php217 return max(0, $nextTime - $currentTime) * 1000000;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DRedirectMiddleware.php156 $max = $options['allow_redirects']['max'];
158 if ($options['__redirect_count'] > $max) {
160 "Will not follow more than {$max} redirects",
/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/
H A DEachPromise.php145 $concurrency = max($concurrency - count($this->pending), 0);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DCachingStream.php45 return max($this->stream->getSize(), $remoteSize);
103 $this->skipReadBytes = max(0, $this->skipReadBytes - $len);
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md19 * Fixed handling of records going over the max Telegram message length (#1616)
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DMongoDBFormatter.php38 $this->maxNestingLevel = max($maxNestingLevel, 0);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DStreamHandler.php61 …$this->streamChunkSize = min(static::MAX_CHUNK_SIZE, max((int) ($phpMemoryLimit / 10), 100 * 1024)…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php1211 $i = $max;
1293 if ($len >= $max) {
1294 $i = $max;
1295 $len -= $max;
1418 $i = $max;
1419 $len -= $max;
1603 $i = $max;
1682 $i = $max;
1683 $len -= $max;
1790 $i = $max;
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDH.php249 $max = $one->bitwise_leftShift($length);
250 $max = $max->subtract($one);
252 $max = $params->prime->subtract($one);
258 $key->privateKey = BigInteger::randomRange($one, $max);
H A DHash.php599 $pad = max(32, $length + $pad % 32);
H A DRSA.php381 list($max) = $max->divide($n);
382 $primes[$i] = BigInteger::randomRangePrime($min, $max);
H A DRijndael.php559 $this->Nr = max($this->Nk, $this->Nb) + 6;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DPrime.php543 $max = 0;
550 $max = max(count($naf[$a]), count($naf[$b]), $max);
578 $max = max(count($jsf[0]), $max);
579 if ($max > 0) {
580 $naf[$a] = array_fill(0, $max, 0);
581 $naf[$b] = array_fill(0, $max, 0);
587 for ($j = 0; $j < $max; $j++) {
599 for ($i = $max; $i >= 0; $i--) {
657 $max = (1 << $wnd) - 1;
658 $dbl = $max == 1 ? null : $this->doublePoint($point);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php629 'max' => new static($max)
691 * @param BigInteger $max
694 public static function randomRangePrime(BigInteger $min, BigInteger $max) argument
710 * @param BigInteger $max
713 public static function randomRange(BigInteger $min, BigInteger $max) argument
716 return new static($class::randomRange($min->value, $max->value));
779 public static function max(BigInteger ...$nums) function in phpseclib3\\Math\\BigInteger
785 return new static($class::max(...$nums));
792 * @param BigInteger $max
795 public function between(BigInteger $min, BigInteger $max) argument
[all …]

12345678910>>...48