Home
last modified time | relevance | path

Searched refs:node_id (Results 1 – 25 of 26) sorted by relevance

12

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Nodes/
H A DStats.php30 protected $node_id; variable in Elasticsearch\\Endpoints\\Nodes\\Stats
36 $node_id = $this->node_id ?? null;
40 if (isset($node_id) && isset($metric) && isset($index_metric)) {
41 return "/_nodes/$node_id/stats/$metric/$index_metric";
46 if (isset($node_id) && isset($metric)) {
47 return "/_nodes/$node_id/stats/$metric";
49 if (isset($node_id)) {
50 return "/_nodes/$node_id/stats";
78 public function setNodeId($node_id) argument
[all...]
H A DUsage.php30 protected $node_id; variable in Elasticsearch\\Endpoints\\Nodes\\Usage
35 $node_id = $this->node_id ?? null;
38 if (isset($node_id) && isset($metric)) {
39 return "/_nodes/$node_id/usage/$metric";
41 if (isset($node_id)) {
42 return "/_nodes/$node_id/usage";
62 public function setNodeId($node_id): Usage argument
64 if (isset($node_id) !== true) {
67 if (is_array($node_id)
[all...]
H A DInfo.php30 protected $node_id; variable in Elasticsearch\\Endpoints\\Nodes\\Info
35 $node_id = $this->node_id ?? null;
38 if (isset($node_id) && isset($metric)) {
39 return "/_nodes/$node_id/$metric";
41 if (isset($node_id)) {
42 return "/_nodes/$node_id";
63 public function setNodeId($node_id): Info argument
65 if (isset($node_id) !== true) {
68 if (is_array($node_id)
[all...]
H A DHotThreads.php30 protected $node_id; variable in Elasticsearch\\Endpoints\\Nodes\\HotThreads
34 $node_id = $this->node_id ?? null;
36 if (isset($node_id)) {
37 return "/_nodes/$node_id/hot_threads";
59 public function setNodeId($node_id): HotThreads argument
61 if (isset($node_id) !== true) {
64 if (is_array($node_id) === true) {
65 $node_id = implode(",", $node_id);
[all...]
H A DGetRepositoriesMeteringInfo.php31 protected $node_id; variable in Elasticsearch\\Endpoints\\Nodes\\GetRepositoriesMeteringInfo
35 $node_id = $this->node_id ?? null;
37 if (isset($node_id)) {
38 return "/_nodes/$node_id/_repositories_metering";
53 public function setNodeId($node_id): GetRepositoriesMeteringInfo argument
55 if (isset($node_id) !== true) {
58 if (is_array($node_id) === true) {
59 $node_id = implode(",", $node_id);
[all...]
H A DReloadSecureSettings.php30 protected $node_id; variable in Elasticsearch\\Endpoints\\Nodes\\ReloadSecureSettings
34 $node_id = $this->node_id ?? null;
36 if (isset($node_id)) {
37 return "/_nodes/$node_id/reload_secure_settings";
64 public function setNodeId($node_id): ReloadSecureSettings argument
66 if (isset($node_id) !== true) {
69 if (is_array($node_id) === true) {
70 $node_id = implode(",", $node_id);
[all...]
H A DClearRepositoriesMeteringArchive.php31 protected $node_id; variable in Elasticsearch\\Endpoints\\Nodes\\ClearRepositoriesMeteringArchive
36 $node_id = $this->node_id ?? null;
39 if (isset($node_id) && isset($max_archive_version)) {
40 return "/_nodes/$node_id/_repositories_metering/$max_archive_version";
55 public function setNodeId($node_id): ClearRepositoriesMeteringArchive argument
57 if (isset($node_id) !== true) {
60 if (is_array($node_id) === true) {
61 $node_id = implode(",", $node_id);
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Cat/
H A DAllocation.php30 protected $node_id; variable in Elasticsearch\\Endpoints\\Cat\\Allocation
34 $node_id = $this->node_id ?? null;
36 if (isset($node_id)) {
37 return "/_cat/allocation/$node_id";
61 public function setNodeId($node_id): Allocation argument
63 if (isset($node_id) !== true) {
66 if (is_array($node_id) === true) {
67 $node_id = implode(",", $node_id);
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Cluster/
H A DStats.php30 protected $node_id; variable in Elasticsearch\\Endpoints\\Cluster\\Stats
34 $node_id = $this->node_id ?? null;
36 if (isset($node_id)) {
37 return "/_cluster/stats/nodes/$node_id";
55 public function setNodeId($node_id): Stats argument
57 if (isset($node_id) !== true) {
60 if (is_array($node_id) === true) {
61 $node_id = implode(",", $node_id);
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/SearchableSnapshots/
H A DCacheStats.php30 protected $node_id; variable in Elasticsearch\\Endpoints\\SearchableSnapshots\\CacheStats
34 $node_id = $this->node_id ?? null;
36 if (isset($node_id)) {
37 return "/_searchable_snapshots/$node_id/cache/stats";
52 public function setNodeId($node_id): CacheStats argument
54 if (isset($node_id) !== true) {
57 if (is_array($node_id) === true) {
58 $node_id = implode(",", $node_id);
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Shutdown/
H A DGetNode.php30 protected $node_id; variable in Elasticsearch\\Endpoints\\Shutdown\\GetNode
34 $node_id = $this->node_id ?? null;
36 if (isset($node_id)) {
37 return "/_nodes/$node_id/shutdown";
54 public function setNodeId($node_id): GetNode argument
56 if (isset($node_id) !== true) {
59 $this->node_id = $node_id;
H A DDeleteNode.php31 protected $node_id; variable in Elasticsearch\\Endpoints\\Shutdown\\DeleteNode
35 $node_id = $this->node_id ?? null;
37 if (isset($node_id)) {
38 return "/_nodes/$node_id/shutdown";
55 public function setNodeId($node_id): DeleteNode argument
57 if (isset($node_id) !== true) {
60 $this->node_id = $node_id;
H A DPutNode.php31 protected $node_id; variable in Elasticsearch\\Endpoints\\Shutdown\\PutNode
35 $node_id = $this->node_id ?? null;
37 if (isset($node_id)) {
38 return "/_nodes/$node_id/shutdown";
65 public function setNodeId($node_id): PutNode argument
67 if (isset($node_id) !== true) {
70 $this->node_id = $node_id;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DNodesNamespace.php33 * $params['node_id'] = (list) Comma-separated list of node IDs or names used to limit returned information.
45 $node_id = $this->extractArgument($params, 'node_id');
51 $endpoint->setNodeId($node_id);
59 * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information.
70 $node_id = $this->extractArgument($params, 'node_id');
75 $endpoint->setNodeId($node_id);
82 * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
96 $node_id
[all...]
H A DShutdownNamespace.php33 * $params['node_id'] = (string) The node id of node to be removed from the shutdown state
44 $node_id = $this->extractArgument($params, 'node_id');
49 $endpoint->setNodeId($node_id);
56 * $params['node_id'] = (string) Which node for which to retrieve the shutdown status
67 $node_id = $this->extractArgument($params, 'node_id');
72 $endpoint->setNodeId($node_id);
79 * $params['node_id'] = (string) The node id of node to be shut down
91 $node_id
[all...]
H A DSearchableSnapshotsNamespace.php33 * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
44 $node_id = $this->extractArgument($params, 'node_id');
49 $endpoint->setNodeId($node_id);
H A DClusterNamespace.php356 * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
366 $node_id = $this->extractArgument($params, 'node_id');
371 $endpoint->setNodeId($node_id);
H A DCatNamespace.php60 * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information
76 $node_id = $this->extractArgument($params, 'node_id');
81 $endpoint->setNodeId($node_id);
596 * $params['parent_task_id'] = (string) Return tasks with specified parent task id (node_id:task_number). Set to -1 to return all.
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DNodesNamespace.asciidoc35 $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
54 $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
68 $params['node_id'] = (list) A comma-separated list of node IDs to span the reload/reinit call. Should stay empty because reloading usually involves all cluster nodes.
81 $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
96 $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
H A DTasksNamespace.asciidoc35 $params['task_id'] = (string) Cancel the task with specified task id (node_id:task_number)
51 $params['task_id'] = (string) Return the task with specified id (node_id:task_number)
H A DClusterNamespace.asciidoc271 $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
/plugin/markdownextra/
H A Dmarkdown.php3157 $node_id = $this->fn_id_prefix . $matches[1];
3161 if (isset($this->footnotes[$node_id])) {
3162 $num =& $this->footnotes_numbers[$node_id];
3166 $this->footnotes_ordered[$node_id] = $this->footnotes[$node_id];
3167 $this->footnotes_ref_count[$node_id] = 1;
3171 $ref_count_mark = $this->footnotes_ref_count[$node_id] += 1;
3187 $node_id = $this->encodeAttribute($node_id);
3190 "<sup id=\"fnref$ref_count_mark:$node_id\">".
3191 "<a href=\"#fn:$node_id\"$attr>$num</a>".
/plugin/markdownextra/lib/meltdown/js/lib/
H A Djs-markdown-extra.js2757 var node_id = self.fn_id_prefix + m1;
2761 if (node_id in self.footnotes) {
2763 self.footnotes_ordered.push([node_id, self.footnotes[node_id]]);
2764 delete self.footnotes[node_id];
2780 node_id = self.encodeAttribute(node_id);
2782 return "<sup id=\"fnref:" + node_id + "\">" +
2783 "<a href=\"#fn:" + node_id + "\"" + attr + ">" + num + "</a>" +
/plugin/codeprettify/code-prettify/
H A DCHANGES.md4 because Perl is [hard](http://www.perlmonks.org/?node_id=663393) to parse.
/plugin/imapmarkers/syntax/
H A Dimapmarkers_simple_html_dom.php641 $node_id = explode(' ', trim($node->attr['id']))[0];
643 if ($id !== $node_id) {

12