Home
last modified time | relevance | path

Searched refs:comma (Results 1 – 25 of 309) sorted by relevance

12345678910>>...13

/plugin/alertrocketchatgroup/
DREADME9 4. In then "Payload of WebHook(comma separated)", put all payloads separeted by comma
10 5. In "Group's name in DokuWiki (comma separated)", put name pages trigger message, separeted by c…
12 Each group must have its own payload, enter the payload separated by comma in the same order as the…
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
DNodesNamespace.asciidoc35 $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the re…
54 $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned…
55 $params['metric'] = (list) A comma-separated list of metrics you wish returned. Leave empty …
68 $params['node_id'] = (list) A comma-separated list of node IDs to span the reload/reinit call. Shou…
81 $params['node_id'] = (list) A comma-separated list of node IDs or names to limit…
96 $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned infor…
DIndicesNamespace.asciidoc86 $params['index'] = (list) A comma separated list of indices to add a block to
119 $params['index'] = (list) A comma-separated list of index name to limit the operation
121 $params['fields'] = (list) A comma-separated list of fields to clear when using the `fi…
156 $params['index'] = (list) A comma separated list of indices to close
202 $params['name'] = (list) A comma-separated list of data stream names; use `_all` or empty string to…
215 $params['index'] = (list) A comma-separated list of indices to delete; use `_all` or `…
233 $params['index'] = (list) A comma-separated list of index names (supports wildcards); use …
234 $params['name'] = (list) A comma-separated list of aliases to delete (supports wildcards)…
249 $params['name'] = (list) A comma-separated list of data streams to delete; use `*` to d…
293 $params['index'] = (list) A comma-separated list of index names
[all …]
DTasksNamespace.asciidoc36 $params['nodes'] = (list) A comma-separated list of node IDs or names to limit the re…
37 $params['actions'] = (list) A comma-separated list of actions that should be cancelled.…
67 $params['nodes'] = (list) A comma-separated list of node IDs or names to limit the re…
68 $params['actions'] = (list) A comma-separated list of actions that should be returned. …
DGraphNamespace.asciidoc31 $params['index'] = (list) A comma-separated list of index names to search; use `_all` or empty st…
32 $params['type'] = DEPRECATED (list) A comma-separated list of document types to search; leave em…
DAsyncSearchNamespace.asciidoc76 $params['index'] = (list) A comma-separated list of index names to search; …
87 $params['stored_fields'] = (list) A comma-separated list of stored fields to return…
88 $params['docvalue_fields'] = (list) A comma-separated list of fields to return as the…
97 $params['routing'] = (list) A comma-separated list of specific routing values
100 $params['sort'] = (list) A comma-separated list of <field>:<direction> pai…
DSnapshotNamespace.asciidoc136 $params['snapshot'] = (list) A comma-separated list of snapshot names
152 $params['repository'] = (list) A comma-separated list of repository names
185 $params['snapshot'] = (list) A comma-separated list of snapshot names
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Arrays/
DArrayDeclarationSniff.php257 foreach ($commas as $comma) {
258 if ($tokens[($comma + 1)]['code'] !== T_WHITESPACE) {
259 $content = $tokens[($comma + 1)]['content'];
262 … $fix = $phpcsFile->addFixableError($error, $comma, 'NoSpaceAfterComma', $data);
264 $phpcsFile->fixer->addContent($comma, ' ');
267 $spaceLength = $tokens[($comma + 1)]['length'];
269 $content = $tokens[($comma + 2)]['content'];
276 … $fix = $phpcsFile->addFixableError($error, $comma, 'SpaceAfterComma', $data);
278 $phpcsFile->fixer->replaceToken(($comma + 1), ' ');
283 if ($tokens[($comma - 1)]['code'] === T_WHITESPACE) {
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/
DFunctionDeclarationArgumentSpacingSniff.php220 $comma = $phpcsFile->findPrevious(T_COMMA, ($nextParam - 1));
221 $nextToken = $phpcsFile->findNext(T_WHITESPACE, ($comma + 1), null, true);
253 if ($tokens[($comma + 1)]['code'] !== T_WHITESPACE) {
258 $phpcsFile->fixer->addContent($comma, ' ');
261 $gap = strlen($tokens[($comma + 1)]['content']);
270 $phpcsFile->fixer->replaceToken(($comma + 1), ' ');
/plugin/abortlogin/
DREADME.md4 Allowed ips are set in the Configuration Manager as a comma separated list
5 There is a test option available to admins, where a comma seperated list of
/plugin/findologicxmlexport/vendor/jms/serializer/src/Type/
Dgrammar.pp8 %token comma ,
34 ( ::comma:: type() )*
/plugin/asciidocjs/node_modules/acorn/src/
Dlval.js137 else this.expect(tt.comma)
138 if (allowEmpty && this.type === tt.comma) {
146 …if (this.type === tt.comma) this.raise(this.start, "Comma is not permitted after the rest element")
Dexpression.js81 if (this.type === tt.comma) {
84 …while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn, refDestructuringError…
395 first ? first = false : this.expect(tt.comma)
402 …if (this.type === tt.comma) this.raise(this.start, "Comma is not permitted after the rest element")
521 this.expect(tt.comma)
566 (this.type != tt.comma && this.type != tt.braceR)) {
750 this.expect(tt.comma)
755 if (allowEmpty && this.type === tt.comma)
759 … if (refDestructuringErrors && this.type === tt.comma && refDestructuringErrors.trailingComma < 0)
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/
Dlval.js134 else this.expect(tt.comma)
135 if (allowEmpty && this.type === tt.comma) {
143 …if (this.type === tt.comma) this.raise(this.start, "Comma is not permitted after the rest element")
Dexpression.js81 if (this.type === tt.comma) {
84 …while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn, refDestructuringError…
353 first ? first = false : this.expect(tt.comma)
470 this.expect(tt.comma)
504 (this.type != tt.comma && this.type != tt.braceR)) {
645 this.expect(tt.comma)
650 if (allowEmpty && this.type === tt.comma)
654 … if (this.type === tt.comma && refDestructuringErrors && !refDestructuringErrors.trailingComma) {
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
DClient.asciidoc129 $params['scroll_id'] = DEPRECATED (list) A comma-separated list of scroll IDs to clear
130 $params['body'] = (array) A comma-separated list of scroll IDs to clear if none was specified …
156 $params['index'] = (list) A comma-separated list of indices to restrict the results
157 $params['type'] = DEPRECATED (list) A comma-separated list of types to restrict the r…
164 $params['routing'] = (list) A comma-separated list of specific routing values
231 $params['index'] = (list) A comma-separated list of index names to search; use `_a…
232 $params['type'] = DEPRECATED (list) A comma-separated list of document types to s…
245 $params['routing'] = (list) A comma-separated list of specific routing values
293 $params['stored_fields'] = (list) A comma-separated list of stored fields to return in the respo…
346 $params['stored_fields'] = (list) A comma-separated list of stored fields to return in the respo…
[all …]
/plugin/asciidocjs/node_modules/acorn/src/loose/
Dexpression.js26 if (this.tok.type === tt.comma) {
29 while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn))
377 …if (isDummy(prop.key)) { if (isDummy(this.parseMaybeAssign())) this.next(); this.eat(tt.comma); co…
387 (this.tok.type != tt.comma && this.tok.type != tt.braceR)) {
409 this.eat(tt.comma)
534 if (this.eat(tt.comma)) {
545 this.eat(tt.comma)
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/loose/
Dexpression.js26 if (this.tok.type === tt.comma) {
29 while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn))
348 …if (isDummy(prop.key)) { if (isDummy(this.parseMaybeAssign())) this.next(); this.eat(tt.comma); co…
358 (this.tok.type != tt.comma && this.tok.type != tt.braceR)) {
380 this.eat(tt.comma)
493 if (this.eat(tt.comma)) {
504 this.eat(tt.comma)
Dstatement.js236 } while (this.eat(tt.comma))
267 …if (isDummy(method.key)) { if (isDummy(this.parseMaybeAssign())) this.next(); this.eat(tt.comma); …
363 this.eat(tt.comma)
398 this.eat(tt.comma)
420 this.eat(tt.comma)
/plugin/farm/install/animaltemplate/conf/
Dusers.auth.php.dist9 # user:MD5password:Real Name:email:groups,comma,seperated
/plugin/submgr/lang/en/
Dhelp.txt2 …ith a leading at-character: ''@group'' - multiple users and groups can be specified comma separated
/plugin/csv/_test/csv/
Dc-q-q-escaping.csv5 "column with enclosure "", and comma inside text","second column enclosure in text """
/plugin/feedback/lang/en/
Dintro.txt5 …used for sub-namespaces automatically. You can specify multiple addresses comma separated. To spec…
/plugin/asciidocjs/node_modules/uglify-js/lib/
Doutput.js435 function comma() { function in OutputStream
576 comma : comma,
1128 if (self.default) output.comma();
1132 if (self.default) output.comma();
1148 if (i) output.comma();
1152 if (self.argnames.length) output.comma();
1422 if (i) output.comma();
1482 if (i) output.comma();
1506 output.comma();
1602 if (i) output.comma();
[all …]
/plugin/charpicker/
DREADME.md7 Enter the characters in the configuration manager, in either the add or delete box, as a comma deli…

12345678910>>...13