/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
H A D | RC2.php | 438 $limit = 20; 439 $actions = [$limit => 44, 44 => 64]; 453 if ($j === $limit) { 454 if ($limit === 64) { 463 $limit = $actions[$limit]; 482 $limit = 44; 483 $actions = [$limit => 20, 20 => 0]; 497 if ($j === $limit) { 498 if ($limit === 0) { 507 $limit = $actions[$limit]; [all …]
|
/dokuwiki/inc/Utf8/ |
H A D | Clean.php | 192 $limit = strlen($str); 193 if ($i >= $limit) return $limit; 196 while (($i < $limit) && ((ord($str[$i]) & 0xC0) === 0x80)) $i++;
|
/dokuwiki/inc/Extension/ |
H A D | AuthPlugin.php | 337 * @param int $limit max number of users to be returned, 0 for unlimited 341 public function retrieveUsers($start = 0, $limit = 0, $filter = null) argument 369 * @param int $limit 372 public function retrieveGroups($start = 0, $limit = 0) argument
|
/dokuwiki/lib/plugins/authplain/ |
H A D | auth.php | 304 * @param int $limit max number of users to be returned 308 public function retrieveUsers($start = 0, $limit = 0, $filter = []) argument 325 if (($limit > 0) && ($count >= $limit)) break; 339 * @param int $limit max number of groups to be returned 342 public function retrieveGroups($start = 0, $limit = 0) argument 352 if ($limit > 0) { 353 return array_splice($groups, $start, $limit);
|
/dokuwiki/lib/plugins/authpdo/ |
H A D | auth.php | 365 * @param int $limit max number of users to be returned 369 public function retrieveUsers($start = 0, $limit = -1, $filter = null) argument 371 if ($limit < 0) $limit = 10000; // we don't support no limit 383 $filter['end'] = (int)$start + $limit; 384 $filter['limit'] = (int)$limit; 451 * @param int $limit 454 public function retrieveGroups($start = 0, $limit = 0) argument 459 if (!$limit) { 462 return array_splice($groups, $start, $limit);
|
/dokuwiki/lib/plugins/authad/ |
H A D | auth.php | 509 * @param int $limit max number of users to be returned 513 public function retrieveUsers($start = 0, $limit = 0, $filter = []) argument 542 if (($limit > 0) && (++$count >= $limit)) break; 550 count($this->grpsusers[$this->filterToString($filter)]) < ($start + $limit) 558 $start + $limit - count($this->grpsusers[$this->filterToString($filter)]) + 1 567 if (($limit > 0) && (++$count >= $limit)) break;
|
/dokuwiki/lib/plugins/usermanager/lang/fr/ |
H A D | import.txt | 6 Les champs doivent être séparés par une virgule (,), les chaînes sont délimitées par des guillemets…
|
/dokuwiki/inc/ |
H A D | common.php | 50 * @param int $limit The number of expected elements 55 function sexplode($separator, $string, $limit, $default = null) argument 57 return array_pad(explode($separator, $string, $limit), $limit, $default); 1781 $limit = trim(ini_get('memory_limit')); 1782 if (empty($limit)) return true; // no limit set! 1783 if ($limit == -1) return true; // unlimited 1786 $limit = php_to_byte($limit); 1795 if ($used + $mem > $limit) {
|
/dokuwiki/lib/plugins/authldap/ |
H A D | auth.php | 403 * @param int $limit max number of users to be returned 408 public function retrieveUsers($start = 0, $limit = 0, $filter = []) argument 445 if (($limit > 0) && (++$count >= $limit)) break;
|
/dokuwiki/lib/plugins/acl/ |
H A D | admin.php | 271 * @param string $limit limit the search to this folder 274 public function makeTree($folder, $limit = '') argument 280 search($data, $conf['datadir'], 'search_index', ['ns' => $folder], $limit); 282 … search($media, $conf['mediadir'], 'search_index', ['ns' => $folder, 'nofiles' => true], $limit);
|
/dokuwiki/vendor/simplepie/simplepie/src/ |
H A D | SimplePie.php | 1487 * @param integer $limit The maximum number of items to return. 1489 public function set_item_limit($limit = 0) argument 1491 $this->item_limit = (int) $limit; 3142 * @param int $limit Maximum number of items per feed 3145 public static function merge_items($urls, $start = 0, $end = 0, $limit = 0) argument 3151 $items = array_merge($items, $arg->get_items(0, $limit));
|
/dokuwiki/vendor/splitbrain/lesserphp/ |
H A D | LICENSE | 231 the covered work, and you disclaim any intention to limit operation or 281 used to limit the access or legal rights of the compilation's users
|