Home
last modified time | relevance | path

Searched refs:max (Results 376 – 400 of 1190) sorted by last modified time

1...<<11121314151617181920>>...48

/plugin/indexmenu/scripts/
H A Dindexmenu.js118 jsajax: '', // &max=#&sort=(t|d)&msort=(indexmenu_n|<metakey>)&rsort=1&nsort=1&hsort=1&nopg=1&skipns=+=/.../&skipfile=+=/.../(set in page)
605 * @param {int} max
607 dTree.prototype.openCurNS = function (max) {
612 if (max > 0 && match.length >= max) {
615 t.splice(max + n, t.length);
883 req += '&nss=' + curns + '&max=1';
982 * @param {int} max max level of available nodes (deeper levels are included with js)
985 dTree.prototype.init = function (hasstyle, nocookies, opennodes, nav, max, nomen
559 openCurNS(max) global() argument
936 init(hasstyle, nocookies, opennodes, nav, max, nomenu) global() argument
[all...]
H A Dtoolbarindexwizard.js60 max: {tlbclass: 'jsitem', numberinput: ['maxn', 'maxm']}, class in indexmenu_wiz.fields.div6.elems
231 //exception for second number field of max: only uncheck when first field is also empty
/plugin/indexmenu/
H A Dstyle.css148 max-height: 300px;
H A Dajax.php49 header('Cache-Control: public, max-age=3600');
/plugin/indexmenu/syntax/
H A Dindexmenu.php71 $max = 0; // number of levels loaded initially, rest should be loaded with ajax. (TODO actual default is 1)
222 //max option: #n is no of lvls during initialization , #m levels retrieved per ajax request
223 $matchPattern = '/max#(\d+)(?:$|\s+|#(\d+))/u';
225 $max = $matched_lvl_sublvl[1];
227 $jsAjax .= "&max=" . $matched_lvl_sublvl[2];
233 $max = 0; //todo current default seems 1.
236 //max js option
328 'max' => $max, //number of levels loaded initially, rest should be loaded with ajax
413 //opts for search(): level, nons, nopg, subnss, max, maxaja
444 _jstree($data, $ns, $js_opts, $js_name, $max) global() argument
[all...]
/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 DRSA.php381 list($max) = $max->divide($n);
382 $primes[$i] = BigInteger::randomRangePrime($min, $max);
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);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/
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/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/
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/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/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/firebase/php-jwt/src/
H A DJWT.php516 $length = max(1, (int) (\strlen($sig) / 2));
/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/Math/BigInteger/Engines/PHP/Reductions/
H A DMontgomeryMult.php62 $n = max(count($x), count($y), count($m));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP.php802 $size = max(count($x_value), count($y_value));
H A DPHP32.php303 * @param PHP32 $max
306 public static function randomRangePrime(PHP32 $min, PHP32 $max) argument
308 return self::randomRangePrimeOuter($min, $max);
321 * @param PHP32 $max
324 public static function randomRange(PHP32 $min, PHP32 $max) argument
326 return self::randomRangeHelper($min, $max);
357 public static function max(PHP32 ...$nums) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP32
366 * @param PHP32 $max
369 public function between(PHP32 $min, PHP32 $max) argument
371 return $this->compare($min) >= 0 && $this->compare($max) <= 0;
H A DPHP64.php307 * @param PHP64 $max
310 public static function randomRangePrime(PHP64 $min, PHP64 $max) argument
312 return self::randomRangePrimeOuter($min, $max);
325 * @param PHP64 $max
328 public static function randomRange(PHP64 $min, PHP64 $max) argument
330 return self::randomRangeHelper($min, $max);
361 public static function max(PHP64 ...$nums) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP64
370 * @param PHP64 $max
373 public function between(PHP64 $min, PHP64 $max) argument
375 return $this->compare($min) >= 0 && $this->compare($max) <= 0;
H A DBCMath.php496 * @param BCMath $max
499 public static function randomRangePrime(BCMath $min, BCMath $max) argument
501 return self::randomRangePrimeOuter($min, $max);
514 * @param BCMath $max
517 public static function randomRange(BCMath $min, BCMath $max) argument
519 return self::randomRangeHelper($min, $max);
618 public static function max(BCMath ...$nums) function in phpseclib3\\Math\\BigInteger\\Engines\\BCMath
627 * @param BCMath $max
630 public function between(BCMath $min, BCMath $max) argument
632 return $this->compare($min) >= 0 && $this->compare($max) <= 0;
/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/phpseclib/phpseclib/phpseclib/Math/BinaryField/
H A DInteger.php135 $length = max(strlen($a), strlen($b));
178 $length = max(strlen($s), strlen($q));
183 $length = max(strlen($r), strlen($s));
205 $length = max(strlen($x), strlen($y));
241 $length = max(strlen($x), strlen($y));
328 $length = max(strlen($x), strlen($y));
343 $length = max(strlen($x), strlen($y), strlen($z));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php1276 $max = count($dirs) - 1;
1287 if ($i === $max) {
1315 $max = count($dirs) - 1;
1320 if ($i === $max) {
/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 …]

1...<<11121314151617181920>>...48