Home
last modified time | relevance | path

Searched refs:limit (Results 201 – 225 of 502) sorted by path

12345678910>>...21

/plugin/filterrss/
H A Dsyntax.php61 $limit = 99999999;
65 $limit = (int)$matches[1];
74 $limit = 99999999;
78 $limit = (int)$matches[1];
90 …rl' => $url, 'conditions' => array(), 'order_by' => $order_by, 'desc' => $desc, 'limit' => $limit);
131 …> $url, 'conditions' => $cond_output, 'order_by' => $order_by, 'desc' => $desc, 'limit' => $limit);
/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/hoa/iterator/Test/Unit/
H A DCallbackGenerator.php59 $limit = new LUT\Limit($iterator, 0, 5)
61 ->when($result = iterator_to_array($limit))
H A DInfinite.php58 $limit = new LUT\Limit($infinite, 0, 100)
60 ->when($result = iterator_to_array($limit, false))
H A DLimit.php61 $limit = new LUT\Limit($iterator, 2, 3)
63 ->when($result = iterator_to_array($limit))
88 $limit = new LUT\Limit($iterator, 0, 0)
90 ->exception(function () use ($limit) {
91 iterator_to_array($limit);
/plugin/findologicxmlexport/vendor/hoa/ustring/
H A DUstring.php398 * @param int $limit Maximum of replacements. -1 for unbound.
401 public function replace($pattern, $replacement, $limit = -1) argument
410 $limit
417 $limit
428 * @param int $limit Maximum of split. -1 for unbound.
435 $limit = -1, argument
441 $limit,
/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 …
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dexclusion_strategies.rst228 You can limit the depth of what will be serialized in a property with the
/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/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/twig/extensions/doc/
H A Dtext.rst51 Use the ``truncate`` filter to cut off a string after limit is reached
/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/webmozart/assert/src/
H A DAssert.php539 public static function greaterThan($value, $limit, $message = '') argument
541 if ($value <= $limit) {
545 static::valueToString($limit)
552 if ($value < $limit) {
556 static::valueToString($limit)
561 public static function lessThan($value, $limit, $message = '') argument
563 if ($value >= $limit) {
567 static::valueToString($limit)
572 public static function lessThanEq($value, $limit, $message = '') argument
574 if ($value > $limit) {
[all …]
/plugin/flowplay2/flowplayer/
H A DLICENSE.txt196 the covered work, and you disclaim any intention to limit operation or
246 used to limit the access or legal rights of the compilation's users
/plugin/flowplayer/player/
H A DLICENSE.txt237 the covered work, and you disclaim any intention to limit operation or
287 used to limit the access or legal rights of the compilation's users
/plugin/freechat/phpfreechat/data/public/js/
H A Dpfcclient.js1043 var limit;
1044 while (typeof (limit = dlist.shift()) != "undefined")
1048 if (lastact > limit) delay = d;
/plugin/gitlog/
H A Dreadme.md49 <gitlog:repository="my-repository-name" [dir="custom/path/to/repo/"] [bare="0"] [limit="10"]>
H A Dsyntax.php78 $limit = (int)($data['limit']);
80 $limit = 10;
103 $log = $this->git_log($repository, $limit, $bare);
150 * @param integer $limit
154 function git_log($repo, $limit = 10, $bare=false) argument
158 $data = $this->run_git('log --pretty=format:"'.$params.'" -'.$limit, $repo, $bare);
/plugin/googlemaps3/
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/gplusone/
H A DCOPYING190 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/groupmail/
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/gtime/gtlib/asn1/
H A DASN1Object.php91 * @param int $limit number of bytes to read
94 protected function readBytes(&$stream, $limit) { argument
100 if (count($stream) < $limit) {
101 …throw new GTException("not enough bytes, tried to read {$limit}, but only " . count($stream) . " r…
106 for ($i = 0; $i < $limit; $i++) {
/plugin/hipchat/
H A DREADME.md22 4. Optionally, you can also define a comma-separated list of first-level namespaces to limit notifi…

12345678910>>...21