Home
last modified time | relevance | path

Searched refs:_data (Results 1 – 25 of 101) sorted by relevance

12345

/plugin/elasticsearch/vendor/ruflin/elastica/src/Cluster/
DHealth.php28 protected $_data; variable in Elastica\\Cluster\\Health
41 return $this->_data;
49 $this->_data = $this->_retrieveHealthData();
59 return $this->_data['cluster_name'];
69 return $this->_data['status'];
77 return $this->_data['timed_out'];
85 return $this->_data['number_of_nodes'];
93 return $this->_data['number_of_data_nodes'];
101 return $this->_data['active_primary_shards'];
109 return $this->_data['active_shards'];
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Cluster/Health/
DIndex.php22 protected $_data; variable in Elastica\\Cluster\\Health\\Index
31 $this->_data = $data;
49 return $this->_data['status'];
57 return $this->_data['number_of_shards'];
65 return $this->_data['number_of_replicas'];
73 return $this->_data['active_primary_shards'];
81 return $this->_data['active_shards'];
89 return $this->_data['relocating_shards'];
97 return $this->_data['initializing_shards'];
105 return $this->_data['unassigned_shards'];
[all …]
DShard.php22 protected $_data; variable in Elastica\\Cluster\\Health\\Shard
31 $this->_data = $data;
49 return $this->_data['status'];
57 return $this->_data['primary_active'];
65 return 1 === $this->_data['active_shards'];
73 return 1 === $this->_data['relocating_shards'];
81 return 1 === $this->_data['initializing_shards'];
89 return 1 === $this->_data['unassigned_shards'];
/plugin/elasticsearch/vendor/ruflin/elastica/src/Bulk/Action/
DAbstractDocument.php15 protected $_data; variable in Elastica\\Bulk\\Action\\AbstractDocument
30 $this->_data = $document;
48 $this->_data = $script;
83 if (!$this->_data instanceof Document) {
87 return $this->_data;
97 if (!$this->_data instanceof AbstractScript) {
101 return $this->_data;
109 return $this->_data;
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Sampler/
DUniform.php62 protected $_data = []; variable in Hoa\\Compiler\\Llk\\Sampler\\Uniform
87 $this->_data[$name] = [];
110 $data = &$this->_data[$rule->getName()][$n];
122 $stat[$c] = $this->_data[$child][$n]['n'];
186 if (isset($this->_data[$ruleName][$n])) {
187 return $this->_data[$ruleName][$n]['n'];
190 $this->_data[$ruleName][$n] = ['n' => 0];
191 $out = &$this->_data[$ruleName][$n]['n'];
204 $this->_data[$ruleName][$n]['Γ'] = [];
205 $handle = &$this->_data[$ruleName][$n]['Γ'];
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
DDocument.php22 protected $_data = []; variable in Elastica\\Document
91 return $this->_data[$key];
103 if (!\is_array($this->_data)) {
106 $this->_data[$key] = $value;
116 return \is_array($this->_data) && \array_key_exists($key, $this->_data);
129 unset($this->_data[$key]);
193 $this->_data = $data;
205 return $this->_data;
DTask.php36 protected $_data; variable in Elastica\\Task
66 if (null === $this->_data) {
70 return $this->_data;
102 $this->_data = $this->getResponse()->getData();
DCluster.php40 protected $_data; variable in Elastica\\Cluster
61 $this->_data = $this->getResponse()->getData();
79 return \array_keys($this->_data['metadata']['indices']);
89 return $this->_data;
DStatus.php33 protected $_data; variable in Elastica\\Status
52 if (null === $this->_data) {
56 return $this->_data;
164 $this->_data = $this->getResponse()->getData();
/plugin/indexmenu/scripts/fancytree/modules/
Djquery.fancytree.persist.js179 local._data(prefix + ACTIVE, null);
182 local._data(prefix + EXPANDED, null);
185 local._data(prefix + FOCUS, null);
188 local._data(prefix + SELECTED, null);
214 res[ACTIVE] = local._data(prefix + ACTIVE);
215 res[EXPANDED] = (local._data(prefix + EXPANDED) || "").split(delim);
216 res[SELECTED] = (local._data(prefix + SELECTED) || "").split(delim);
217 res[FOCUS] = local._data(prefix + FOCUS);
247 _data: function (key, value) { method
266 data = local._data(cookieName),
[all …]
/plugin/metaeditor/
Djstree.js135 this._data = { property
458 this._data[deco] = {};
498 this._data.core.ready = false;
499 this._data.core.loaded = false;
500 this._data.core.rtl = (this.element.css("direction") === "rtl");
501 this.element[this._data.core.rtl ? 'addClass' : 'removeClass']("jstree-rtl");
518 this._data.core.original_container_html = this.element.find(" > ul > li").clone(true);
519 this._data.core.original_container_html
527 this._data.core.li_height = this.get_container_ul().children("li").first().height() || 24;
617 if(this._data.core.rtl) {
[all …]
/plugin/findologicxmlexport/vendor/hoa/event/
DBucket.php61 protected $_data = null; variable in Hoa\\Event\\Bucket
121 $old = $this->_data;
122 $this->_data = $data;
134 return $this->_data;
/plugin/amazon_heavy/
Dclass.xmlreader.php16 var $_data; variable in xmlreader
32 while (!feof ($fp)) $this->_data .= fgets($fp, 4096);
34 $this->_data = trim ($this->_data);
39 if (trim ($this->_data) == "") $this->error ("Data not ready.");
44 xml_parse_into_struct($parser, $this->_data, $vals, $index);
/plugin/asciidocjs/node_modules/ejs/lib/
Dutils.js190 _data: {}, property
192 this._data[key] = val;
195 return this._data[key];
198 delete this._data[key];
201 this._data = {};
/plugin/combo/ComboStrap/
H A DTemplate.php32 protected array $_data = array(); variable in ComboStrap\\Template
55 $this->_data[$key] = $value;
78 if (array_key_exists($variable, $this->_data)) {
79 $value = $this->_data[$variable];
101 extract($this->_data);
/plugin/syntaxhighlightjs/syntax/
Dsxh.php100 * @param array $_data The data from the handler() function
103 public function render($mode, Doku_Renderer $renderer, $_data) { argument
104 if (empty($_data)) return false;
105 list($state, $data) = $_data;
/plugin/jquery-syntax/
Daction.php36 '_data' => '',
47 …'_data' => "$noConflict jQuery(document).ready(function($) { $.syntax({blockLayout: 'table'}) })…
53 '_data' => '',
/plugin/elasticsearch/vendor/ruflin/elastica/src/Index/
DRecovery.php30 protected $_data = []; variable in Elastica\\Index\\Recovery
77 return $this->_data;
87 $this->_data = $this->getRecoveryData();
DStats.php29 protected $_data = []; variable in Elastica\\Index\\Stats
54 return $this->_data;
102 $this->_data = $this->getResponse()->getData();
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Rule/
DInvocation.php61 protected $_data = null; variable in Hoa\\Compiler\\Llk\\Rule\\Invocation
102 $this->_data = $data;
127 return $this->_data;
/plugin/codify/
Daction.php63 '_data' => ''
75 '_data' => ''
81 '_data' => ''
/plugin/elasticsearch/vendor/ruflin/elastica/src/Node/
DInfo.php33 protected $_data = []; variable in Elastica\\Node\\Info
166 return $this->_data;
192 return $this->_data['name'];
231 $this->_data = \reset($data['nodes']);
DStats.php33 protected $_data = []; variable in Elastica\\Node\\Stats
83 return $this->_data;
123 $this->_data = \reset($data['nodes']);
/plugin/facebook/
Daction.php59 '_data' => '',
63 '_data' => 'FB.init("9ec02de6127d88bbcc6103da6a44a6b0");',
/plugin/move/script/
Drename.js100 const events = jQuery._data($owner[0])['events'][event];
103 jQuery._data($owner[0])['events'][event] = events;

12345