Home
last modified time | relevance | path

Searched refs:pattern (Results 126 – 150 of 693) sorted by last modified time

12345678910>>...28

/plugin/orphanmedia2/
H A DLICENSE54 pattern of such abuse occurs in the area of products for individuals to
/plugin/odtsupport/
H A DLICENSE54 pattern of such abuse occurs in the area of products for individuals to
H A Ddokuwiki_plugin_page.wiki139 * v0.86 Added possibility to use hash4 pattern
/plugin/usecounter/
H A DLICENSE54 pattern of such abuse occurs in the area of products for individuals to
/plugin/edittable/lib/
H A Dhandsontable.full.js39508 var pattern = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
39510 return _getItems(pattern, this.defaultOrderPattern, this.predefinedItems);
39518 var pattern = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
39524 if (pattern && pattern.items) {
39525 pattern = pattern.items;
39526 } else if (!Array.isArray(pattern)) {
39527 pattern = defaultPattern;
39529 if ((0, _object.isObject)(pattern)) {
39530 (0, _object.objectEach)(pattern, function (value, key) {
39547 (0, _array.arrayEach)(pattern, function (name, key) {
/plugin/edittable/renderer/
H A Dinverse.php448 foreach($this->extlinkPatterns as $pattern) {
449 if(preg_match("'$pattern'", " $url ")) {
/plugin/pubmed2020/classes/
H A Dcache.php396 $pattern = "";
398 $pattern = '~PMC - PMC(.*)~';
400 $pattern = '~PMID- (.*)~';
402 $r = preg_match($pattern, $raw, $matches);
H A Dpubmed2020.php85 $pattern = "/PMID- (\d+)/";
86 if (preg_match($pattern, $r, $m)){
107 $pattern = "/<pre class=\"search-results-chunk\">((?:.*?\r?\n?)*)<\/pre>/";
108 if (preg_match($pattern, $content, $m, PREG_UNMATCHED_AS_NULL)) {
1004 $pattern = "/\s*".$c."\s+/i";
1006 $abstract = preg_replace($pattern, "$lf$boldS$c$boldE ", $abstract);
/plugin/pubmed2020/
H A Dsyntax.php435 $pattern = "/TT - ".$tt."/";
436 if (!preg_match($pattern, $raw)) {
437 $pattern = "/TT - .*/";
438 $raw = preg_replace($pattern, "\nTT - ".$tt."\n", $raw);
451 $pattern = "/HASH- ".$hash."/";
452 if (!preg_match($pattern, $raw)) {
453 $pattern = "/HASH- .*/";
454 $raw = preg_replace($pattern, "\nHASH- ".$hash."\n", $raw);
/plugin/tplinc/
H A Dhelper.php91 list($pattern, $page, $loc, $skipacl) = $row;
93 $page = $this->matchPagePattern($pattern, $id, $page, $pns);
142 * @param string $pattern the pattern to check against
148 protected function matchPagePattern($pattern, $id, $page, $pns = null) argument
150 if (trim($pattern, ':') == '**') return $page; // match all
153 if ($pattern[0] == '/') {
154 if (preg_match($pattern, ":$id", $matches)) {
168 $ans = ':' . cleanID($pattern) . ':';
169 if (substr($pattern, -2) == '**') {
175 if (substr($pattern, -1) == '*') {
[all …]
H A Dadmin.php110 list($pattern, $page, $location, $skipacl) = $assignment;
112 … echo '<td><input type="text" name="a[x' . $row . '][0]" value="' . hsc($pattern) . '" /></td>';
/plugin/tplinc/lang/en/
H A Dhelp.txt1 As pattern you can use the following:
H A Dintro.txt3 …n define which **page** should be included at which **location** in the template when a **pattern**
4 matches the current page ID. When multiple pattern match, all pages will be inserted in the order t…
/plugin/advanced/lang/en/config/
H A Duserstyle.txt5 …ingle dispatcher in [[xref>lib/exe/css.php]] which also handles caching, pattern replacement, [[do…
/plugin/firenews/
H A Dsyntax.php400 * @param string $pattern regex pattern to search for
404 private function setLanguage(string $file, string $pattern): string { argument
406 $result = preg_replace_callback($pattern,
/plugin/pageredirect/
H A DChangeLog.md71 - make `~~REDIRECT` pattern non-greedy. [#5], [#8]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dphp_json_objects.asciidoc68 Another common pattern in {es} DSL is an array of objects. For example, consider
H A Dindex-operations.asciidoc88 'pattern' => '(\\w+)\\s+((?i:never|no|nothing|nowhere|noone|none|not|havent|hasnt|hadnt|cant|couldnt|shouldnt|wont|wouldnt|dont|doesnt|didnt|isnt|arent|aint))\\b',
93 'pattern' => '\\b((?i:never|no|nothing|nowhere|noone|none|not|havent|hasnt|hadnt|cant|couldnt|shouldnt|wont|wouldnt|dont|doesnt|didnt|isnt|arent|aint))\\s+(\\w+)',
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DTextStructureNamespace.asciidoc41 $params['grok_pattern'] = (string) Optional parameter to specify the Grok pattern that should be used to extract fields from messages in a semi-structured text file
H A DCatNamespace.asciidoc497 $params['name'] = (string) A pattern that returned template names must match
H A DCcrNamespace.asciidoc43 $params['name'] = (string) The name of the auto follow pattern.
111 $params['name'] = (string) The name of the auto follow pattern.
124 $params['name'] = (string) The name of the auto follow pattern that should pause discovering new indices to follow.
150 $params['name'] = (string) The name of the auto follow pattern.
163 $params['name'] = (string) The name of the auto follow pattern to resume discovering new indices to follow.
H A DRollupNamespace.asciidoc82 $params['index'] = (string) The rollup index or index pattern to obtain rollup capabilities from.
126 $params['index'] = (list) The indices or index-pattern(s) (containing rollup or regular data) that should be searched (Required)
H A DMigrationNamespace.asciidoc31 $params['index'] = (string) Index pattern
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/ConnectionPool/
H A DSniffingConnectionPool.php143 $pattern = '/([^:]*):([0-9]+)/';
149 if (preg_match($pattern, $node['http']['publish_address'], $match) === 1) {
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DAbstractTermsAggregation.php30 * @param string $pattern a regular expression, following the Regexp syntax
34 public function setInclude(string $pattern): self argument
36 return $this->setParam('include', $pattern);
71 * @param string $pattern a regular expression
75 public function setExclude(string $pattern): self argument
77 return $this->setParam('exclude', $pattern);

12345678910>>...28