Home
last modified time | relevance | path

Searched refs:Index (Results 26 – 50 of 135) sorted by relevance

123456

/plugin/elasticsearch/vendor/ruflin/elastica/src/Cluster/Health/
H A DIndex.php12 class Index class
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dnamespaces.asciidoc12 | `indices()` | Index-centric stats and info
28 // Index Stats
H A Dcommunity.asciidoc145 ===== Index Helper
149 [quote, Index Helper]
H A Dindex-operations.asciidoc2 === Index management operations
4 Index management operations allow you to manage the indices in your {es}
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DBulk.php58 * @param Index|string $index
64 if ($index instanceof Index) {
H A DClient.php165 public function getIndex(string $name): Index
167 return new Index($this, $name);
203 * Array of \Elastica\Document as input. Index has to be set inside the
236 * Array of \Elastica\Document as input. Index has to be set inside the
454 * @param Index|string $index Index name
H A DDocument.php41 * @param Index|string $index Index name
/plugin/combo/action/
H A Droutermessage.php7 use ComboStrap\Index; alias
193 $pagesWithSameName = Index::getOrCreate()->getPagesWithSameLastName($pageOrigin);
/plugin/ol3/
H A Dstyle.css1Index:10}.ol-scale-step-text{position:absolute;bottom:-5px;font-size:12px;z-Index:11;color:#000;te…
/plugin/searchindex/lang/cs/
H A Dintro.txt1 ====== Search Index Manager ======
/plugin/projects/pchart/pchart/
H A Dpchart.php1514 $Index = 1;
1521 $XIn[$Index] = $Index;
1524 $Index++;
1527 $Index--;
1543 $Yt[$Index] = ($un - $qn * $U[$Index-1]) / ($qn * $Yt[$Index-1] + 1);
1614 $Index = 1;
1619 $XIn[$Index] = $Index;
1622 $Index++;
1624 $Index--;
1640 $Yt[$Index] = ($un - $qn * $U[$Index-1]) / ($qn * $Yt[$Index-1] + 1);
[all …]
/plugin/charter/lib/pchart/
H A DpChart.class.php1539 $Index = 1;
1546 $XIn[$Index] = $Index;
1549 $Index++;
1552 $Index--;
1568 $Yt[$Index] = ($un - $qn * $U[$Index-1]) / ($qn * $Yt[$Index-1] + 1);
1639 $Index = 1;
1644 $XIn[$Index] = $Index;
1647 $Index++;
1649 $Index--;
1665 $Yt[$Index] = ($un - $qn * $U[$Index-1]) / ($qn * $Yt[$Index-1] + 1);
[all …]
/plugin/combo/ComboStrap/
H A DRouterBestEndPage.php36 $pagesWithSameName = Index::getOrCreate()
/plugin/elasticsearch/helper/
H A Dclient.php132 * @param \Elastica\Index $index
135 protected function createMappings(\Elastica\Index $index): \Elastica\Response
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md34 * Changed `Elastica\Index\Settings::get` adding ability to get default settings by @krasilnikovm [#2115](https://github.com/ruflin/Elastica/pull/2115)
67 * Deprecated passing a `string` as 1st argument to `Search::addIndex()` and `Search::hasIndex()`, pass an Index instance instead by @franmomu [#2103](https://github.com/ruflin/Elastica/pull/2103)
68 * Deprecated passing an array of `string` as 1st argument to `Search::addIndices()`, use an array of Index instances by @franmomu [#2103](https://github.com/ruflin/Elastica/pull/2103)
94 * Fixed version parameters for Index::addDocument() by @pidera [#2050](https://github.com/ruflin/Elastica/pull/2050)
148 * Added `Elastica\Index::openPointInTime()` for opening a PiT on the index [#1994](https://github.com/ruflin/Elastica/pull/1994)
202 * Added endpoint options support to `Elastica\Index::create()` [#1859](https://github.com/ruflin/Elastica/pull/1859)
216 * Reviewed options handling in `Elastica\Index::create()` [#1822](https://github.com/ruflin/Elastica/pull/1822)
240 * Deprecated passing `bool` or `null` as 2nd argument to `Elastica\Index::create()` [#1828](https://github.com/ruflin/Elastica/pull/1828)
317 * The method `Index::deleteById()` does not throw an `NotFoundException` when deleting a non-existing document [#1732](https://github.com/ruflin/Elastica/pull/1732)
349 * Deprecated usage of `\Elastica\Type` class, `\Elastica\Index` clas
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/
H A Drenderer.index1 C:21:"Doctum\Renderer\Index":3398:{a:3:{i:0;a:34:{s:20:"Elasticsearch\Client";s:40:"f6943c4681d5ffdba5a789013583e504cb70a3cf"; (…)
/plugin/siteexport/
H A DREADME.md147 * [[.:index|Index of the page]]
148 * [[.:sub:index|Index of the sub namespace]]
149 * [[.:sub:sub:index|Index of the sub/sub namespace]]
152 * [[.:another-sub:index|Index of another sub namespace]]
/plugin/statdisplay/pchart/
H A DPieChart.php657 $Index = count ( $Plots );
672 $this->canvas->drawAntialiasPixel(new Point($Plots[$Index - 4], $Plots [$Index - 3]),
H A DpChart.php1633 $Index = 1;
1637 $data->getXYMap($ColName, $XIn, $YIn, $Missing, $Index);
1640 assert($Index + 1 >= count($XIn));
1646 $this->calculateCubicCurve($Yt, $XIn, $YIn, $U, $Index);
1648 $Yt [$Index] = 0;
1650 for($k = $Index - 1; $k >= 1; $k --)
1654 for($X = 1; $X <= $Index; $X = $X + $Accuracy) {
1660 $khi = $Index;
1715 $YPos = $this->GArea_Y2 - (($YIn [$Index] - $this->VMin) * $this->DivisionRatio);
1737 private function calculateCubicCurve(array & $Yt, array $XIn, array $YIn, array & $U, $Index) { argument
[all …]
/plugin/statistics/inc/pchart/
H A DPieChart.php702 $Index = count($Plots);
722 new Point($Plots[$Index - 4], $Plots [$Index - 3]),
H A DpChart.php1765 $Index = 1;
1770 $data->getXYMap($ColName, $XIn, $YIn, $Missing, $Index);
1773 assert($Index + 1 >= count($XIn));
1779 $this->calculateCubicCurve($Yt, $XIn, $YIn, $U, $Index);
1781 $Yt [$Index] = 0;
1783 for($k = $Index - 1; $k >= 1; $k--)
1787 for($X = 1; $X <= $Index; $X = $X + $Accuracy) {
1793 $khi = $Index;
1850 $YPos = $this->GArea_Y2 - (($YIn [$Index] - $this->VMin) * $this->DivisionRatio);
1874 private function calculateCubicCurve(array & $Yt, array $XIn, array $YIn, array & $U, $Index) { argument
[all...]
/plugin/indexnumber/
H A DREADME.md1 # Index numbers plugin
/plugin/fckg/fckeditor/editor/dialog/fck_link/
H A Dfck_link.js1381 this.stack[this.Index] = (new Option(title,value,false,false));
1382 this.Index++;
1384 Index: 0, property in anchorOption
1390 this.Index = 0;
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dextends.rst50 {% block title %}Index{% endblock %}
58 <h1>Index</h1>
/plugin/ckgdoku/ckeditor/plugins/link/dialogs/
H A Dlink.js1Index]=(new Option(ad,ac,false,false));this.Index++},Index:0,stack:undefined,selection:"",ini:func… property in AnonymousFunction5fc9cfb10100.R.X

123456