| /plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/ |
| D | Multiple.php | 58 $multiple = new LUT\Multiple( 62 $multiple->attachIterator($foo, 'one'), 63 $multiple->attachIterator($bar, 'two') 65 ->when($result = iterator_to_array($multiple, false)) 81 $multiple = new LUT\Multiple( 85 $multiple->attachIterator($foobar, 'one', '!'), 86 $multiple->attachIterator($baz, 'two', '?') 88 ->when($result = iterator_to_array($multiple, false)) 104 ->given($multiple = new LUT\Multiple()) 105 ->when($result = iterator_to_array($multiple))
|
| D | Demultiplexer.php | 57 $multiple = new LUT\Multiple(), 58 $multiple->attachIterator($counter), 59 $multiple->attachIterator(clone $counter), 61 $multiple, 89 $multiple = new LUT\Multiple( 93 $multiple->attachIterator($counter, 'one'), 94 $multiple->attachIterator(clone $counter, 'two'), 96 $multiple,
|
| /plugin/struct/script/ |
| H A D | vanilla-combobox.js | 11 #multiple; 63 this.#multiple = this.#select.multiple; 277 …if ((this.shadowRoot.activeElement === this.#input) && this.#multiple && this.#input.value !== '')… 291 if (this.#multiple) { 314 if (this.#multiple) { 331 … if (this.#multiple && option.value === '') return; // Ignore empty options in multiple mode
|
| /plugin/asciidocjs/node_modules/handlebars/lib/handlebars/compiler/ |
| D | whitespace-control.js | 192 function omitRight(body, i, multiple) { argument 197 (!multiple && current.rightStripped) 204 multiple ? /^\s+/ : /^[ \t]*\r?\n?/, 217 function omitLeft(body, i, multiple) { argument 222 (!multiple && current.leftStripped) 229 current.value = current.value.replace(multiple ? /\s+$/ : /[ \t]+$/, '');
|
| /plugin/datepicker/script/jscalendar-1.0/ |
| D | calendar-setup.js | 101 …if (!(params.flat || params.multiple || params.inputField || params.displayArea || params.button))… 177 if (params.multiple) { 178 cal.multiple = {}; 179 for (var i = params.multiple.length; --i >= 0;) { 180 var d = params.multiple[i]; 182 cal.multiple[ds] = d;
|
| /plugin/asciidocjs/node_modules/handlebars/dist/amd/handlebars/compiler/ |
| D | whitespace-control.js | 186 function omitRight(body, i, multiple) { argument 188 if (!current || current.type !== 'ContentStatement' || !multiple && current.rightStripped) { 193 current.value = current.value.replace(multiple ? /^\s+/ : /^[ \t]*\r?\n?/, ''); 204 function omitLeft(body, i, multiple) { argument 206 if (!current || current.type !== 'ContentStatement' || !multiple && current.leftStripped) { 212 current.value = current.value.replace(multiple ? /\s+$/ : /[ \t]+$/, '');
|
| /plugin/asciidocjs/node_modules/handlebars/dist/cjs/handlebars/compiler/ |
| D | whitespace-control.js | 188 function omitRight(body, i, multiple) { argument 190 if (!current || current.type !== 'ContentStatement' || !multiple && current.rightStripped) { 195 current.value = current.value.replace(multiple ? /^\s+/ : /^[ \t]*\r?\n?/, ''); 206 function omitLeft(body, i, multiple) { argument 208 if (!current || current.type !== 'ContentStatement' || !multiple && current.leftStripped) { 214 current.value = current.value.replace(multiple ? /\s+$/ : /[ \t]+$/, '');
|
| /plugin/bpmnio/vendor/bpmn-js/dist/assets/bpmn-font/css/ |
| D | bpmn-codes.css | 7 .bpmn-icon-start-event-non-interrupting-parallel-multiple:before { content: '\e808'; } /* '' */ 12 .bpmn-icon-intermediate-event-catch-parallel-multiple:before { content: '\e80d'; } /* '' */ 17 .bpmn-icon-intermediate-event-catch-non-interrupting-parallel-multiple:before { content: '\e813'; }… 24 .bpmn-icon-start-event-parallel-multiple:before { content: '\e81a'; } /* '' */ 54 .bpmn-icon-end-event-multiple:before { content: '\e839'; } /* '' */ 59 .bpmn-icon-start-event-multiple:before { content: '\e83e'; } /* '' */ 68 .bpmn-icon-intermediate-event-catch-multiple:before { content: '\e847'; } /* '' */ 78 .bpmn-icon-intermediate-event-catch-non-interrupting-multiple:before { content: '\e851'; } /* '' */ 80 .bpmn-icon-intermediate-event-throw-multiple:before { content: '\e853'; } /* '' */ 86 .bpmn-icon-start-event-non-interrupting-multiple:before { content: '\e859'; } /* '' */
|
| D | bpmn.css | 63 .bpmn-icon-start-event-non-interrupting-parallel-multiple:before { content: '\e808'; } /* '' */ 68 .bpmn-icon-intermediate-event-catch-parallel-multiple:before { content: '\e80d'; } /* '' */ 73 .bpmn-icon-intermediate-event-catch-non-interrupting-parallel-multiple:before { content: '\e813'; }… 80 .bpmn-icon-start-event-parallel-multiple:before { content: '\e81a'; } /* '' */ 110 .bpmn-icon-end-event-multiple:before { content: '\e839'; } /* '' */ 115 .bpmn-icon-start-event-multiple:before { content: '\e83e'; } /* '' */ 124 .bpmn-icon-intermediate-event-catch-multiple:before { content: '\e847'; } /* '' */ 134 .bpmn-icon-intermediate-event-catch-non-interrupting-multiple:before { content: '\e851'; } /* '' */ 136 .bpmn-icon-intermediate-event-throw-multiple:before { content: '\e853'; } /* '' */ 142 .bpmn-icon-start-event-non-interrupting-multiple:before { content: '\e859'; } /* '' */
|
| /plugin/yalist/ |
| D | README.md | 5 and list items with multiple paragraphs. The complete syntax is as follows: 13 -- ordered list item w/ multiple paragraphs 14 ** unordered list item w/ multiple paragraphs 15 :: definition list definition w/multiple paragraphs
|
| /plugin/skipentity/ |
| D | action.php | 27 $multiple = $this->getConf('multiple') ? 1 : 0; 28 $JSINFO['multiple'] = $multiple;
|
| /plugin/multipoll/ |
| D | INFO | 7 desc allows to create multi polls (multiple questions, multiple answers), from poll plugin
|
| /plugin/combo/ComboStrap/Meta/Form/ |
| H A D | FormMetaField.php | 100 private $multiple = false; variable in ComboStrap\\Meta\\Form\\FormMetaField 316 if ($this->multiple) { 317 $associative[self::MULTIPLE_ATTRIBUTE] = $this->multiple; 495 $this->multiple = $bool; 502 return $this->multiple;
|
| /plugin/asciidocjs/node_modules/handlebars/dist/amd/ |
| D | precompiler.js | 163 var multiple = opts.templates.length !== 1 || opts.hasDirectory; 164 if (opts.simple && multiple) { 233 if (opts.amd && !multiple) { 243 if (multiple) {
|
| /plugin/asciidocjs/node_modules/handlebars/lib/ |
| D | precompiler.js | 169 const multiple = opts.templates.length !== 1 || opts.hasDirectory; 170 if (opts.simple && multiple) { 253 if (opts.amd && !multiple) { 270 if (multiple) {
|
| /plugin/asciidocjs/node_modules/handlebars/dist/cjs/ |
| D | precompiler.js | 178 var multiple = opts.templates.length !== 1 || opts.hasDirectory; 179 if (opts.simple && multiple) { 248 if (opts.amd && !multiple) { 258 if (multiple) {
|
| /plugin/dwcommits/conf/ |
| D | default.local.ini.dist | 1 ; This file enables you to specify multiple gits and dates. They will be added to the 8 ; There can be multiple identifiers sf the same name, enabling the listing of more
|
| /plugin/matrixnotifierwas/vendor/meet-kinksters/php-matrix-sdk/ |
| D | CONTRIBUTING.md | 19 - **One pull request per feature** - If you want to do more than one thing, send multiple pull requ… 21 …ndividual commit in your pull request is meaningful. If you had to make multiple intermediate comm…
|
| /plugin/dokumicrobugtracker/ |
| D | CHANGELOG | 10 … Fix #27, remove the forced title in the form, fix multiple post occurring when displaying multip…
|
| D | README.md | 61 There is currently a bug on the sort of header when displaying multiple form in the same page. 74 …| Fix #27, remove the forced title in the form, fix multiple post occurring when displaying multip…
|
| /plugin/crosspost/ |
| D | README.md | 1 This DokuWiki plugin allow crosspost article to multiple namespaces.
|
| /plugin/radarchart/ |
| D | README.md | 3 A flexible DokuWiki plugin for creating radar charts with multiple datasets, custom styling, and ex… 33 Advanced usage with multiple datasets and custom colors:
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/ |
| D | multiple.test | 2 "filter" tags accept multiple chained filters
|
| /plugin/findologicxmlexport/vendor/hoa/iterator/ |
| D | README.md | 257 $multiple = new Hoa\Iterator\Multiple( 261 $multiple->attachIterator($foobar, 'one', '!'); 262 $multiple->attachIterator($baz, 'two', '?'); 264 foreach ($multiple as $iterators) { 286 $multiple = new Hoa\Iterator\Multiple(); 287 $multiple->attachIterator($counter); 288 $multiple->attachIterator(clone $counter); 290 $multiple,
|
| /plugin/columns/ |
| D | plugin.info.txt | 6 desc Arrange information in multiple columns.
|