Home
last modified time | relevance | path

Searched refs:tags (Results 251 – 275 of 538) sorted by path

1...<<11121314151617181920>>...22

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D4cd246e5c4c035a2cd4081ae9a3d54e5.asciidoc10 'source' => 'ctx._source.tags.add(params.tag)',
H A D527324766814561b75aaee853ede49a7.asciidoc8 'tags' => [
10 'field' => 'tags',
H A D774d715155cd13713e6e327adf6ce328.asciidoc8 'tags' => [
10 'field' => 'tags',
H A D98aeb275f829b5f7b8eb2147701565ff.asciidoc10 'source' => 'if (ctx._source.tags.contains(params.tag)) { ctx.op = \'delete\' } else { ctx.op = \'none\' }',
H A Dac544eb247a29ca42aab13826ca88561.asciidoc10 'source' => 'if (ctx._source.tags.contains(params.tag)) { ctx._source.tags.remove(ctx._source.tags.indexOf(params.tag)) }',
H A Df085fb032dae56a3b104ab874eaea2ad.asciidoc8 'tags' => [
10 'field' => 'tags',
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/
H A DMakefile4 git push origin --tags
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md52 * Added missing `throws` PHPDoc tags by @franmomu [#2077](https://github.com/ruflin/Elastica/pull/2077)
/plugin/eventline/timeline_ajax/
H A Dsimile-ajax-bundle.js266 var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");
267tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<…
270 …r.msie){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild…
/plugin/exttab1/
H A Dsyntax.php101 @param $data the data between \<exttab1> and \</exttab1> tags
/plugin/farm/install/animaltemplate/data/pages/wiki/
H A Dsyntax.txt306 …at least two spaces (like used for the previous examples) or by using the tags ''code'' or ''file'…
316 …ely (ie. do no formatting on it), enclose the area either with ''nowiki'' tags or even simpler, wi…
351 | description| show the item description. If [[doku>wiki:config#htmlok|HTML]] is disabled all tags
365 You can embed raw HTML or PHP code into your documents by using the ''html'' or ''php'' tags like t…
/plugin/farmer/_animal/data/pages/wiki/
H A Dsyntax.txt331 If you need to display text exactly like it is typed (without any formatting), enclose the area either with ''%%<nowiki>%%'' tags or even simpler, with double percent signs ''<nowiki>%%</nowiki>''.
345 You can include code blocks into your documents by either indenting them by at least two spaces (like used for the previous examples) or by using the tags ''%%<code>%%'' or ''%%<file>%%''.
406 You can embed raw HTML or PHP code into your documents by using the ''%%<html>%%'' or ''%%<php>%%'' tags. (Use uppercase tags if you need to enclose block level elements.)
462 | description| show the item description. If [[doku>config:htmlok|HTML]] is disabled all tags will be stripped |
/plugin/fckg/
H A DChanges287 Fixed some label tags in edit.php
/plugin/fckg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/
H A Dspellchecker.cfm40 <!--- Strip all tags for the text. (by FredCK - #339 / #681) --->
/plugin/fckg/fckeditor/editor/filemanager/connectors/php/
H A Dutil.php144 $tags = array( '<body', '<head', '<html', '<img', '<pre', '<script', '<table', '<title' ) ;
146 foreach( $tags as $tag )
/plugin/findologicxmlexport/
H A DREADME.md20 …- If you want to export `keywords`/`tags` you will also need to install the [Tag Plugin](https://w…
/plugin/findologicxmlexport/vendor/hoa/compiler/
H A DREADME.md157 is the unification of XML tags name.
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md340 - XML Discriminator tags don't work in YAML metadata [\#811](https://github.com/schmittjoh/serializ…
587 - Deserialization of collection when wraped by aditional xml tags [\#719](https://github.com/schmit…
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dannotations.rst678 This allows you to use the keys of an array as xml tags.
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/
H A DDocBlock.php27 private $tags = []; variable in phpDocumentor\\Reflection\\DocBlock
53 array $tags = [], argument
62 Assert::allIsInstanceOf($tags, Tag::class);
66 foreach ($tags as $tag) {
158 return $this->tags;
217 foreach ($this->tags as $key => $tag) {
219 unset($this->tags[$key]);
234 $this->tags[] = $tag;
H A DDocBlockFactory.php217 * @param string $tags Tag block to parse.
224 $tags = $this->filterTagBlock($tags);
225 if (!$tags) {
238 * @param string $tags
242 private function splitTagBlockIntoTagLines($tags) argument
245 foreach (explode("\n", $tags) as $tag_line) {
260 private function filterTagBlock($tags) argument
262 $tags = trim($tags);
263 if (!$tags) {
267 if ('@' !== $tags[0]) {
[all …]
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/
H A DDescription.php57 private $tags; variable in phpDocumentor\\Reflection\\DocBlock\\Description
63 * @param Tag[] $tags
65 public function __construct($bodyTemplate, array $tags = []) argument
70 $this->tags = $tags;
80 return $this->tags;
97 $tags = [];
98 foreach ($this->tags as $tag) {
99 $tags[] = '{' . $formatter->format($tag) . '}';
102 return vsprintf($this->bodyTemplate, $tags);
H A DDescriptionFactory.php59 list($text, $tags) = $this->parse($this->lex($contents), $context);
61 return new Description($text, $tags);
123 $tags = [];
126 $tags[] = $this->tagFactory->create($tokens[$i], $context);
138 return [implode('', $tokens), $tags];
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/
H A DAlignFormatter.php27 * @param Tag[] $tags All tags that should later be aligned with the formatter.
29 public function __construct(array $tags) argument
31 foreach ($tags as $tag) {
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/
H A Dbootstrap.min.css5 …e:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e0…

1...<<11121314151617181920>>...22