Home
last modified time | relevance | path

Searched refs:index (Results 201 – 225 of 1806) sorted by relevance

12345678910>>...73

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Spanner/
H A DReadRequest.php30 public $index; variable in Google\\Service\\Spanner\\ReadRequest
71 public function setIndex($index) argument
73 $this->index = $index;
80 return $this->index;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Indices/
H A DCloneIndices.php35 $index = $this->index ?? null;
38 if (isset($index) && isset($target)) {
39 return "/$index/_clone/$target";
H A DShrink.php35 $index = $this->index ?? null;
38 if (isset($index) && isset($target)) {
39 return "/$index/_shrink/$target";
H A DSplit.php35 $index = $this->index ?? null;
38 if (isset($index) && isset($target)) {
39 return "/$index/_split/$target";
H A DPutAlias.php35 if (isset($this->index) !== true) {
37 'index is required for put_alias'
40 $index = $this->index;
48 return "/$index/_alias/$name";
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Rollup/
H A DRollup.php35 $index = $this->index ?? null;
38 if (isset($index) && isset($rollup_index)) {
39 return "/$index/_rollup/$rollup_index";
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DWebDriverSelectInterface.php37 * Select the option at the given index.
39 * @param int $index The index of the option. (0-based)
43 public function selectByIndex($index); argument
89 * Deselect the option at the given index.
91 * @param int $index The index of the option. (0-based)
94 public function deselectByIndex($index); argument
H A DAbstractWebDriverCheckboxOrRadio.php73 public function selectByIndex($index) argument
75 $this->byIndex($index);
120 * Selects or deselects a checkbox or a radio button by its index.
122 * @param int $index
126 protected function byIndex($index, $select = true) argument
129 if (!isset($elements[$index])) {
130 throw new NoSuchElementException(sprintf('Cannot locate %s with index: %d', $this->type, $index));
133 $select ? $this->selectOption($elements[$index]) : $this->deselectOption($elements[$index]);
[all...]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Objects/
H A DDisallowObjectStringIndexSniff.php63 $index = $phpcsFile->findNext(T_WHITESPACE, ($stackPtr + 1), null, true);
64 if ($tokens[$index]['code'] !== T_CONSTANT_ENCAPSED_STRING) {
69 $next = $phpcsFile->findNext(T_WHITESPACE, ($index + 1), null, true);
76 $content = trim($tokens[$index]['content'], '"\' ');
/plugin/tablelayout/_jstest/
H A Dsort.tests.js15 expectedClasses.forEach(function (expectedClassName, index) { argument
16 assert.equal($actualSortedRows[index].className, expectedClassName);
27 expectedClasses.forEach(function (expectedClassName, index) { argument
28 assert.equal($actualSortedRows[index].className, expectedClassName);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AIPlatformNotebooks/
H A DDisk.php44 public $index; variable in Google\\Service\\AIPlatformNotebooks\\Disk
143 public function setIndex($index) argument
145 $this->index = $index;
152 return $this->index;
H A DLocalDisk.php40 public $index; variable in Google\\Service\\AIPlatformNotebooks\\LocalDisk
127 public function setIndex($index) argument
129 $this->index = $index;
136 return $this->index;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Sheets/
H A DSheetProperties.php33 public $index; variable in Google\\Service\\Sheets\\SheetProperties
100 public function setIndex($index) argument
102 $this->index = $index;
109 return $this->index;
/plugin/s5/ui/i18n/
H A Dframing.css7 div#header {top: 0; left: 0; z-index: 1;}
8 div#footer {top: auto; bottom: 0; width: 100%; z-index: 5;}
9 .slide {top: 0; width: 88%; padding: 1em 7% 2em 5%; z-index: 2;}
11 div#controls {bottom: 1em; left: 0; width: 100%; text-align: center; z-index: 1000;}
14 #currentSlide {position: absolute; left: 0; bottom: 0.5em; z-index: 10;
/plugin/interwikiformatting/
H A Dsyntax.php70 foreach ($word_separators as $index => $sep) { $text_replacements[$sep] = ' '; }
81 $index = strrpos($title, '?');
83 if ($index !== false) { $title = substr($title, 0, -(strlen($title) - $index)); }
86 foreach ($strippable_extensions as $index => $ext)
111 foreach ($capitalize_exceptions as $index => $exception)
/plugin/elasticsearch/vendor/ruflin/elastica/src/Bulk/
H A DAction.php12 public const OP_TYPE_INDEX = 'index';
133 * @param Index|string $index
137 public function setIndex($index): self argument
139 if ($index instanceof Index) {
140 $index = $index->getName();
142 $this->_metadata['_index'] = $index;
/plugin/combo/resources/snippet/js/
H A Dpage-explorer-tree.js9 for (const [index, currentPart] of currentIdParts.entries()) {
11 if (index < baseParts.length) {
12 if (currentPart === baseParts[index]) {
17 if (index < currentIdParts.length - 1) {
/plugin/aichat/vendor/vanderlee/php-sentence/src/
H A DSentence.php47 * Generate an in-text replacement code for the specified index
49 * @param int $index
53 private function getReplaceCode(int $index) argument
55 return 0x02 . $index . 0x03;
59 * Clean floating point numbers by replace them with an in-text index
70 $index = 0;
74 $code = $this->getReplaceCode($index);
76 $this->replacements[$index] = $number;
80 ++$index;
96 foreach ($this->replacements as $index
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DUcdn.php119 $index = 0;
121 $index = self::$index0[$code >> (8)] << 5;
123 $index = self::$index1[$index + $offset] << 3;
125 $index = self::$index2[$index + $offset];
127 return self::$ucd_records[$index];
1784 /* index tables for the database records */
/plugin/issuetracker/
H A Dtablekit.js358 index = Math.min(table.rows[0].cells.length, index);
359 index = Math.max(1, index);
360 index -= 1;
363 cell = $(index);
413 index = (index || index === 0) ? index : TableKit.getCellIndex(cell);
629 index = Math.min(table.rows[0].cells.length, index);
630 index = Math.max(1, index);
631 index -= 1;
753 index = Math.min(table.tBodies[0].rows.length, index);
754 index = Math.max(1, index);
[all …]
/plugin/s5reloaded/ui/thesis/
H A Dframing.css9 div#header {top: 0; height: 3em; z-index: 1;}
10 div#footer {top: auto; bottom: 0; height: 2.5em; z-index: 5;}
11 .slide {top: 0; width: 92%; padding: 3.5em 4% 4%; z-index: 2; list-style: none;}
12 div#controls {left: 50%; bottom: 0; width: 50%; z-index: 100;}
15 #currentSlide {position: absolute; width: 10%; left: 45%; bottom: 1em; z-index: 10;}
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Analytics/
H A DCustomDimension.php41 public $index; variable in Google\\Service\\Analytics\\CustomDimension
128 public function setIndex($index) argument
130 $this->index = $index;
137 return $this->index;
/plugin/s5/ui/default/
H A Dframing.css9 div#header {top: 0; height: 3em; z-index: 1;}
10 div#footer {top: auto; bottom: 0; height: 2.5em; z-index: 5;}
11 .slide {top: 0; width: 92%; padding: 3.5em 4% 4%; z-index: 2; list-style: none;}
12 div#controls {left: 50%; bottom: 0; width: 50%; z-index: 100;}
15 #currentSlide {position: absolute; width: 10%; left: 45%; bottom: 1em; z-index: 10;}
/plugin/s5/ui/dokuwiki/
H A Dframing.css9 div#header {top: 0; height: 2em; z-index: 1;}
10 div#footer {top: auto; bottom: 0; height: 2.5em; z-index: 5;}
11 .slide {top: 0; width: 92%; padding: 3.5em 4% 4%; z-index: 2; list-style: none;}
12 div#controls {left: 50%; bottom: 0; width: 50%; z-index: 100;}
15 #currentSlide {position: absolute; width: 10%; left: 45%; bottom: 1em; z-index: 10;}
/plugin/commonmark/vendor/league/commonmark/src/
H A DCursor.php

12345678910>>...73