Home
last modified time | relevance | path

Searched refs:limit (Results 1 – 25 of 502) sorted by relevance

12345678910>>...21

/plugin/statistics/inc/
H A DStatisticsQuery.class.php206 public function searchengines($tlimit, $start = 0, $limit = 20) { argument
212 $this->mklimit($start, $limit);
216 public function searchphrases($extern, $tlimit, $start = 0, $limit = 20) { argument
230 $this->mklimit($start, $limit);
234 public function searchwords($extern, $tlimit, $start = 0, $limit = 20) { argument
250 $this->mklimit($start, $limit);
254 public function outlinks($tlimit, $start = 0, $limit = 20) { argument
260 $this->mklimit($start, $limit);
264 public function pages($tlimit, $start = 0, $limit = 20) { argument
271 $this->mklimit($start, $limit);
275 edits($tlimit, $start = 0, $limit = 20) global() argument
285 images($tlimit, $start = 0, $limit = 20) global() argument
304 downloads($tlimit, $start = 0, $limit = 20) global() argument
323 referer($tlimit, $start = 0, $limit = 20) global() argument
335 newreferer($tlimit, $start = 0, $limit = 20) global() argument
349 countries($tlimit, $start = 0, $limit = 20) global() argument
361 browsers($tlimit, $start = 0, $limit = 20, $ext = true) global() argument
380 os($tlimit, $start = 0, $limit = 20) global() argument
391 topuser($tlimit, $start = 0, $limit = 20) global() argument
403 topeditor($tlimit, $start = 0, $limit = 20) global() argument
414 topgroup($tlimit, $start = 0, $limit = 20) global() argument
425 topgroupedit($tlimit, $start = 0, $limit = 20) global() argument
437 resolution($tlimit, $start = 0, $limit = 20) global() argument
453 viewport($tlimit, $start = 0, $limit = 20) global() argument
470 seenusers($tlimit, $start = 0, $limit = 20) global() argument
483 mklimit($start, $limit) global() argument
[all...]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DLimitStream.php20 private $limit; variable in GuzzleHttp\\Psr7\\LimitStream
31 $limit = -1, argument
35 $this->setLimit($limit);
47 if ($this->limit == -1) {
62 } elseif ($this->limit == -1) {
85 if ($this->limit !== -1) {
86 if ($offset > $this->offset + $this->limit) {
87 $offset = $this->offset + $this->limit;
135 public function setLimit($limit) argument
137 $this->limit = $limit;
[all …]
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DLimitStream.php17 private $limit; variable in GuzzleHttp\\Stream\\LimitStream
21 * @param int $limit Total number of bytes to allow to be read
22 * from the stream. Pass -1 for no limit.
28 $limit = -1, argument
32 $this->setLimit($limit);
43 // No limit and the underlying stream is not at EOF
44 if ($this->limit == -1) {
53 return $tell >= $this->offset + $this->limit;
64 } elseif ($this->limit == -1) {
67 return min($this->limit,
137 setLimit($limit) global() argument
[all...]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRC2.php464 $limit = 20;
479 if ($j === $limit) {
489 $limit = $actions[$limit];
509 $limit = 44;
524 if ($j === $limit) {
534 $limit = $actions[$limit];
585 $limit = 20;
605 if ($j === $limit) {
616 $limit = $actions[$limit];
623 $limit = 44;
[all …]
/plugin/tagfilter/script/select2/
H A Dselect2_locale_rs.js13 formatSelectionTooBig: function (limit) { return "Možete izabrati samo " + limit + " stavk" + (limit % 10 == 1 && limit % 100 != 11 ? "u" : (limit % 10 >= 2 && limit % 10 <= 4 && (limit % 100 < 12 || limit % 100 > 14)? "e" : "i")); }, argument
H A Dselect2_locale_lt.js14 formatSelectionTooBig: function (limit) { argument
15 return "Jūs galite pasirinkti tik " + limit + " element" + ((limit%100 > 9 && limit%100 < 21) || limit%10 == 0 ? "ų" : limit%10 > 1 ? "us" : "ą");
H A Dselect2_locale_sk.js36 formatSelectionTooBig: function (limit) { argument
37 if (limit == 1) {
39 } else if (limit <= 4) {
40 return "Môžete zvoliť najviac "+smallNumbers[limit](false)+" položky";
42 return "Môžete zvoliť najviac "+limit+" položiek";
H A Dselect2_locale_cs.js37 formatSelectionTooBig: function (limit) { argument
38 if (limit == 1) {
40 } else if (limit <= 4) {
41 return "Můžete zvolit maximálně "+smallNumbers[limit](false)+" položky";
43 return "Můžete zvolit maximálně "+limit+" položek";
H A Dselect2_locale_lv.js13 formatSelectionTooBig: function (limit) { return "Jūs varat izvēlēties ne vairāk kā " + limit + " element" + (limit == 11 ? "us" : limit%10 == 1 ? "u" : "us"); }, argument
H A Dselect2_locale_ru.js13 formatSelectionTooBig: function (limit) { return "Вы можете выбрать не более " + limit + " элемент" + (limit%10 == 1 && limit%100 != 11 ? "а" : "ов"); }, argument
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/
H A DBaseCssFilter.php26 protected function filterReferences($content, $callback, $limit = -1, &$count = 0) argument
28 return CssUtils::filterReferences($content, $callback, $limit, $count);
34 protected function filterUrls($content, $callback, $limit = -1, &$count = 0) argument
36 return CssUtils::filterUrls($content, $callback, $limit, $count);
42 …protected function filterImports($content, $callback, $limit = -1, &$count = 0, $includeUrl = true) argument
44 return CssUtils::filterImports($content, $callback, $limit, $count, $includeUrl);
50 protected function filterIEFilters($content, $callback, $limit = -1, &$count = 0) argument
52 return CssUtils::filterIEFilters($content, $callback, $limit, $count);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DLimit.php10 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-limit-query.html
15 * Construct limit query.
17 * @param int $limit Limit
19 public function __construct(int $limit) argument
21 $this->setLimit($limit);
25 * Set the limit.
27 * @param int $limit Limit
31 public function setLimit(int $limit): self argument
33 return $this->setParam('value', $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/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1Quota.php29 public $limit; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1Quota
52 public function setLimit($limit) argument
54 $this->limit = $limit;
61 return $this->limit;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidProvisioningPartner/
H A DFindDevicesByDeviceIdentifierRequest.php27 public $limit; variable in Google\\Service\\AndroidProvisioningPartner\\FindDevicesByDeviceIdentifierRequest
50 public function setLimit($limit) argument
52 $this->limit = $limit;
59 return $this->limit;
H A DFindDevicesByOwnerRequest.php30 public $limit; variable in Google\\Service\\AndroidProvisioningPartner\\FindDevicesByOwnerRequest
57 public function setLimit($limit) argument
59 $this->limit = $limit;
66 return $this->limit;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Drive/
H A DAboutStorageQuota.php25 public $limit; variable in Google\\Service\\Drive\\AboutStorageQuota
42 public function setLimit($limit) argument
44 $this->limit = $limit;
51 return $this->limit;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DQuota.php22 public $limit; variable in Google\\Service\\Compute\\Quota
33 public function setLimit($limit) argument
35 $this->limit = $limit;
39 return $this->limit;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRetail/
H A DGoogleCloudRetailV2SearchRequestFacetSpec.php36 public $limit; variable in Google\\Service\\CloudRetail\\GoogleCloudRetailV2SearchRequestFacetSpec
83 public function setLimit($limit) argument
85 $this->limit = $limit;
92 return $this->limit;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AnalyticsData/
H A DPivot.php30 public $limit; variable in Google\\Service\\AnalyticsData\\Pivot
59 public function setLimit($limit) argument
61 $this->limit = $limit;
68 return $this->limit;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/
H A DPollItemsRequest.php32 public $limit; variable in Google\\Service\\CloudSearch\\PollItemsRequest
73 public function setLimit($limit) argument
75 $this->limit = $limit;
82 return $this->limit;
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
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/authucenter/lib/uc_client/model/
H A Dmisc.php55 …function dfopen2($url, $limit = 0, $post = '', $cookie = '', $bysocket = FALSE, $ip = '', $timeout… argument
61 return $this->dfopen($url, $limit, $post, $cookie, $bysocket, $ip, $timeout, $block, $encodetype);
64 …function dfopen($url, $limit = 0, $post = '', $cookie = '', $bysocket = FALSE , $ip = '', $timeout… argument
127 $data = fread($fp, ($limit == 0 || $limit > 8192 ? 8192 : $limit));
129 if($limit) {
130 $limit -= strlen($data);
131 $stop = $limit <= 0;
/plugin/directions/syntax/
H A Dcommon.php195 $limit = $maxdirections;
208 $limit--;
209 if ($limit == 0) break;
226 $limit--;
227 if ($limit == 0) break;
247 $limit--;
248 if ($limit == 0) break;
250 $limit = $maxdirections;
258 $limit--;
259 if ($limit == 0) break;
/plugin/bibtex/OSBib/create/
H A DFORMMISC.php35 $limit = $override ? $override : 40;
36 if(($limit != -1) && ($count = preg_match_all("/./", $text, $throwAway)) > $limit)
38 $start = floor(($limit/2) - 2);

12345678910>>...21