Home
last modified time | relevance | path

Searched refs:limit (Results 351 – 375 of 502) sorted by last modified time

1...<<1112131415161718192021

/plugin/yuriigantt/3rd/dhtmlxgantt/
H A Ddhtmlxgantt.js.map1limit","constructor$","_callback","_preservedValues","_limit","_inFlight","_queue","_asyncInit","c…
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/
H A Ddhtmlxgantt.js2383 this._limit = limit;
2400 var limit = this._limit;
2405 if (limit >= 1) {
2411 if (limit >= 1 && this._inFlight >= limit) {
2441 if (limit >= 1) this._inFlight++;
2471 var limit = this._limit;
2473 while (queue.length > 0 && this._inFlight < limit) {
2500 var limit = 0;
2508 limit = options.concurrency;
2515 limit = typeof limit === "number" &&
[all …]
/plugin/yuriigantt/
H A DLICENSE190 the covered work, and you disclaim any intention to limit operation or
240 used to limit the access or legal rights of the compilation's users
/plugin/codeprettify/code-prettify/src/
H A Dlang-xq.js64 …mp:set-response-content-type|xdmp:set-response-code|xdmp:set-request-time-limit|xdmp:set|xdmp:serv…
/plugin/sequencediagram/bower_components/lodash/doc/
H A DREADME.md330 * <a href="#_splitstring-separator-limit">`_.split`</a>
9542 <h3 id="_splitstring-separator-limit"><code>_.split([string=''], separator, [limit])</code></h3>
9557 3. `[limit]` *(number)*: The length to truncate results to.
/plugin/sequencediagram/bower_components/lodash/test/
H A Dtest.js804 var limit = 30000 / QUnit.config.asyncRetries,
809 if ((new Date - start) < limit && typeof actual != 'string') {
4385 var limit = (argv || isPhantom) ? 1000 : 320,
4398 while ((new Date - start) < limit) {
22805 limit = (argv || isPhantom) ? 1000 : 320,
22810 while ((new Date - start) < limit) {
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
H A Dfunctions.js286 var limit = 48;
291 while (new Date - stamp < limit) {
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.js14587 function split(string, separator, limit) {
14588 if (limit && typeof limit != 'number' && isIterateeCall(string, separator, limit)) {
14589 separator = limit = undefined;
14591 limit = limit === undefined ? MAX_ARRAY_LENGTH : limit >>> 0;
14592 if (!limit) {
14602 return castSlice(stringToArray(string), 0, limit);
14605 return string.split(separator, limit);
/plugin/sequencediagram/bower_components/lodash/
H A Dlodash.js14587 function split(string, separator, limit) {
14588 if (limit && typeof limit != 'number' && isIterateeCall(string, separator, limit)) {
14589 separator = limit = undefined;
14591 limit = limit === undefined ? MAX_ARRAY_LENGTH : limit >>> 0;
14592 if (!limit) {
14602 return castSlice(stringToArray(string), 0, limit);
14605 return string.split(separator, limit);
/plugin/sequencediagram/bower_components/lodash/vendor/firebug-lite/src/
H A Dfirebug-lite-debug.js1116 if (!limit)
1119 var halfLimit = limit / 2;
1121 if (text.length > limit)
19461 var limit = 25;
19470 var limit = 25;
21596 var limit = 50;
21598 if (column >= limit) {
22054 limit: null,
22117 this.limit = nodes[1];
23922 if (i < limit)
[all …]
/plugin/sequencediagram/bower_components/raphael/
H A Dyarn.lock1922 p-limit@^2.0.0:
1924 …resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e…
1934 p-limit "^2.0.0"
/plugin/webcomponent/_test/data/pages/
H A Dcontainer.txt6 Container in [[Navbar|Navbar]] are used to limit the horizontal width. ([[https://getbootstrap.com/…
H A Dnavbar.txt7 * a [[container|container]] to limit the horizontal width and center the navbar
/plugin/sphinxsearch-was/
H A Dfunctions.php370 $limit = 10;
388 if (++$counter == $limit) {
H A Dsphinxapi.php660 function SetLimits($offset, $limit, $max = 0, $cutoff = 0) argument
663 assert(is_int($limit));
665 assert($limit > 0);
668 $this->_limit = $limit;
/plugin/authphpbb3/
H A Dauth.php311 public function retrieveUsers($start = 0, $limit = 0, $filter = array()) { argument
319 $limit = intval($limit);
320 if ($limit <= 0) {
322 $limit = 10000;
346 $filter['end'] = (int)($start + $limit);
347 $filter['limit'] = (int)$limit;
427 public function retrieveGroups($start = 0, $limit = 0) { argument
435 $limit = intval($limit);
436 if ($limit <= 0) {
438 $limit = 10000;
[all …]
/plugin/doodle4/
H A DLICENSE190 the covered work, and you disclaim any intention to limit operation or
240 used to limit the access or legal rights of the compilation's users
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Dhelp.phpt54 --enforce-time-limit Enforce time limit based on test size.
H A Dhelp2.phpt55 --enforce-time-limit Enforce time limit based on test size.
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dannotations.rst86 This annotation can be defined on a property to limit the depth to which the
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
H A DCallbackGenerator.php59 $limit = new LUT\Limit($iterator, 0, 5)
61 ->when($result = iterator_to_array($limit))
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dsplit.rst15 You can also pass a ``limit`` argument:
17 * If ``limit`` is positive, the returned array will contain a maximum of
18 limit elements with the last element containing the rest of string;
20 * If ``limit`` is negative, all components except the last -limit are
23 * If ``limit`` is zero, then this is treated as 1.
31 chunks. Length is set by the ``limit`` argument (one character by default).
50 * ``limit``: The limit argument
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DCoreExtension.php776 * @param int $limit The limit
780 function twig_split_filter(Environment $env, $value, $delimiter, $limit = null) argument
783 return null === $limit ? explode($delimiter, $value) : explode($delimiter, $value, $limit);
787 return str_split($value, null === $limit ? 1 : $limit);
790 if ($limit <= 1) {
795 if ($length < $limit) {
800 for ($i = 0; $i < $length; $i += $limit) {
801 $r[] = mb_substr($value, $i, $limit, $charset);
/plugin/findologicxmlexport/vendor/hoa/iterator/
H A DREADME.md150 $limit = new Hoa\Iterator\Limit($foobar, 2, 3);
152 foreach ($limit as $value) {
169 $limit = new Hoa\Iterator\Limit($infinite, 0, 21);
171 foreach ($limit as $value) {
429 $limit = new Hoa\Iterator\Limit($generator, 0, 10);
431 foreach ($limit as $value) {
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A DLICENSE17 2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses …

1...<<1112131415161718192021