Home
last modified time | relevance | path

Searched refs:node (Results 201 – 225 of 709) sorted by relevance

12345678910>>...29

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DSnapshotNamespace.asciidoc42 $params['master_timeout'] = (time) Explicit operation timeout for connection to master node
59 $params['master_timeout'] = (time) Explicit operation timeout for connection to master node
75 $params['master_timeout'] = (time) Explicit operation timeout for connection to master node
91 $params['master_timeout'] = (time) Explicit operation timeout for connection to master node
109 $params['master_timeout'] = (time) Explicit operation timeout for connection to master node
137 $params['master_timeout'] = (time) Explicit operation timeout for connection to master node
153 $params['master_timeout'] = (time) Explicit operation timeout for connection to master node
154 $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false)
169 $params['master_timeout'] = (time) Explicit operation timeout for connection to master node
186 $params['master_timeout'] = (time) Explicit operation timeout for connection to master node
[all...]
/plugin/highlight2wiki/
H A Daction.php193 foreach($dom->getElementsByTagName('*') as $node)
195 foreach($node->attributes as $attribute)
202 $node->removeAttributeNode($attribute);
208 //$node->removeAttributeNode($attribute);
215 foreach($dom->getElementsByTagName('script') as $node){$node->nodeValue="";}
221 foreach($dom->getElementsByTagName('style') as $node){$node->nodeValue="";}
/plugin/combo/resources/snippet/js/
H A Drequire.js18 onNodeCreated: function (node, config, module, path) { argument
25 node.setAttribute('integrity', sri[module]);
26 node.setAttribute('crossorigin', 'anonymous');
30 // "dojo": ['dojo/_base/loader', 'dojo/require', 'dojo/domReady', 'dojo/i18n', 'dojo/has', 'dojo/node', 'dojo/text', 'dojo/has', 'dojo/sniff', 'dojo/uacss', 'dojo/_base/sniff', 'dojo/promise', 'dojo/Deferred', 'dojo/when', 'dojo/_base/Deferred', 'dojo/DeferredList', 'dojo/on', 'dojo/_base/connect', 'dojo/_base/event', 'dojo/Evented', 'dojo/behavior', 'dojo/request', 'dojo/_base/xhr', 'dojo/io/iframe', 'dojo/io/script', 'dojo/store', 'dojo/data', 'dojo/dom', 'dojo/dom-attr', 'dojo/dom-class', 'dojo/dom-construct', 'dojo/dom-form', 'dojo/dom-geometry', 'dojo/dom-prop', 'dojo/dom-style', 'dojo/html', 'dojo/_base/html', 'dojo/query', 'dojo/NodeList', 'dojo/NodeList-data', 'dojo/NodeList-dom', 'dojo/NodeList-fx', 'dojo/NodeList-html', 'dojo/NodeList-traverse', 'dojo/selector', 'dojo/_base/query', 'dojo/_base/NodeList', 'dojo/_base/fx', 'dojo/fx', 'dojo/window', 'dojo/_base/window', 'dojo/ready', 'dojo/domReady', 'dojo/_base/unload', 'dojo/back', 'dojo/hash', 'dojo/mouse', 'dojo/touch', 'dojo/keys', 'dojo/robot', 'dojo/robotx', 'dojo/json5', 'dojo/_base/json', 'dojo/_base/Color', 'dojo/colors', 'dojo/_base/url', 'dojo/io-query', 'dojo/i18n', 'dojo/cldr', 'dojo/number', 'dojo/currency'],
/plugin/orgchart/
H A Dstyle.css14 .google-visualization-orgchart-table .google-visualization-orgchart-node {
20 .google-visualization-orgchart-table .google-visualization-orgchart-node a {
23 .google-visualization-orgchart-table .google-visualization-orgchart-node strong {
28 .google-visualization-orgchart-table .google-visualization-orgchart-node img {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DXML.php140 * @param DOMNode $node
142 public static function removeCharacterDataNodes(DOMNode $node) argument
144 if ($node->hasChildNodes()) {
145 for ($i = $node->childNodes->length - 1; $i >= 0; $i--) {
146 if (($child = $node->childNodes->item($i)) instanceof DOMCharacterData) {
147 $node->removeChild($child);
/plugin/eventline/timeline_ajax/
H A Dsimile-ajax-api.js34 var node = heads[h].firstChild;
35 while (node != null) {
36 if (node.nodeType == 1 && node.tagName.toLowerCase() == "script") {
37 var url = node.src;
43 node = node.nextSibling;
/plugin/tline/timeline_ajax/
H A Dsimile-ajax-api.js34 var node = heads[h].firstChild;
35 while (node != null) {
36 if (node.nodeType == 1 && node.tagName.toLowerCase() == "script") {
37 var url = node.src;
43 node = node.nextSibling;
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/
H A DDashboard.php22 * @param DirectoryNode $node
25 public function render(DirectoryNode $node, $file) argument
27 $classes = $node->getClassesAndTraits();
34 $this->setCommonTemplateVariables($template, $node);
36 $baseLink = $node->getId() . '/';
294 protected function getActiveBreadcrumb(AbstractNode $node) argument
299 $node->getName()
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/
H A DModuleNode.php296 foreach ($this->getNode('blocks') as $name => $node) {
398 foreach ($nodes as $node) {
399 if (!\count($node)) {
403 if ($node instanceof TextNode && ctype_space($node->getAttribute('data'))) {
407 if ($node instanceof BlockReferenceNode) {
471 protected function compileLoadTemplate(Compiler $compiler, $node, $var) argument
473 if ($node instanceof ConstantExpression) {
476 ->subcompile($node)
478 ->repr($node->getTemplateName())
480 ->repr($node->getTemplateLine())
H A DCheckSecurityNode.php38 foreach ($this->{'used'.ucfirst($type)} as $name => $node) {
39 if ($node instanceof Node) {
40 ${$type}[$name] = $node->getTemplateLine();
42 ${$type}[$node] = null;
/plugin/combo/ComboStrap/Xml/
H A DXmlDocument.php401 * finds all nodes that have a namespace node called $ns where their parent node doesn't also have the same namespace.
406 foreach ($nodes as $node) {
407 /** @var DOMElement $node */
408 $node->parentNode->removeChild($node);
416 foreach ($nodes as $node) {
417 /** @var DOMAttr $node */
419 $DOMNode = $node->parentNode;
420 $DOMNode->removeAttributeNode($node);
[all...]
/plugin/findologicxmlexport/vendor/twig/twig/src/Test/
H A DNodeTestCase.php27 public function testCompile($node, $source, $environment = null, $isPattern = false) argument
29 $this->assertNodeCompilation($source, $node, $environment, $isPattern);
32 …public function assertNodeCompilation($source, Node $node, Environment $environment = null, $isPat… argument
35 $compiler->compile($node);
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Event/
H A DNumberFootnotesListener.php30 foreach ($document->iterator() as $node) {
31 if (! $node instanceof FootnoteRef) {
35 $existingReference = $node->getReference();
58 $node->setReference($newReference);
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Inline/
H A DFootnoteRefRenderer.php33 public function render(Node $node, ChildNodeRendererInterface $DWRenderer)
35 FootnoteRef::assertInstanceOf($node);
37 $attrs = $node->data->getData('attributes');
40 $document = $node->parent()->parent();
45 $title = $node->getReference()->getLabel();
48 $node = $event->getNode();
49 if ($node instanceof Footnote && $title == $node->getReference()->getLabel()) {
50 $text = $DWRenderer->renderNode($node->children()[0]);
/plugin/jplayer/vendor/robloach/component-installer/src/ComponentInstaller/Resources/
H A Drequire.js1185 node: node,
1186 id: node && node.getAttribute('data-requiremodule')
1790 node;
1793 node = config.xhtml ?
1797 node.charset = 'utf-8';
1798 node.async = true;
1811 if (node.attachEvent &&
1844 node.src = url;
1858 return node;
1941 var node, context;
[all …]
/plugin/jplayer/components/
H A Drequire.js1185 node: node,
1186 id: node && node.getAttribute('data-requiremodule')
1790 node;
1793 node = config.xhtml ?
1797 node.charset = 'utf-8';
1798 node.async = true;
1811 if (node.attachEvent &&
1844 node.src = url;
1858 return node;
1941 var node, context;
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/
H A DFacade.php100 foreach ($report as $node) {
101 $id = $node->getId();
103 if ($node instanceof DirectoryNode) {
108 $directory->render($node, $target . $id . '/index.html');
109 $dashboard->render($node, $target . $id . '/dashboard.html');
117 $file->render($node, $target . $id . '.html');
/plugin/diagramsnet/lib/js/diagramly/graphml/
H A DmxGraphMlCodec.js584 var node = new mxCell();
585 node.vertex = true;
715 this.nodesMap[id] = {node: node, ports: portsMap}; property in mxGraphMlCodec.importNode.nodesMap
1138 node.insert(cell2);
1146 node.insert(cell1);
1154 node.insert(cell1);
1171 node.insert(cell1);
1241 node.insert(item1);
1656 node.insert(cell);
1698 node.insert(cell);
[all …]
/plugin/sequencediagram/bower_components/snap.svg/dist/
H A Dsnap.svg-min.js19node.ownerSVGElement&&w(a.node.ownerSVGElement)||a.node.parentNode&&w(a.node.parentNode)||c.select…
20node.childNodes.length&&("radialGradient"==e.node.firstChild.tagName||"linearGradient"==e.node.fir…
21node?b.node.ownerDocument:e.doc;return d[c in d.documentElement?"documentElement":"body"][c]}),l=f…
/plugin/scrape/HTMLPurifier/Lexer/
H A DPH5P.php
/plugin/html2pdf/html2pdf/html2ps/features/
H A Dtoc.php153 $node =& $params['node'];
155 if (preg_match('/^h(\d)$/i', $node->get_tagname(), $matches)) {
156 if (!$node->get_id()) {
158 $node->set_id($id);
161 $this->_locations[] = array('name' => $node->get_content(),
163 'anchor' => $node->get_id(),
164 'element' => &$node);
/plugin/medialist/
H A Dhelper.php259 foreach ($ins as $node) {
260 if ($node[0] == 'internalmedia') {
261 $id = cleanID($node[1][0]);
268 'type' => $node[0],
270 } elseif ($node[0] == 'externalmedia') {
272 'id' => $node[1][0],
275 'type' => $node[0],
/plugin/diagramsnet/lib/plugins/
H A Dupdate.js107 var node = (doc != null) ? doc.documentElement : null;
109 if (node != null && node.nodeName == 'updates')
111 if (node.hasAttribute('url'))
113 updateUrl = node.getAttribute('url');
116 if (node.hasAttribute('interval'))
118 updateInterval = node.getAttribute('interval');
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/xml/
H A DTree.php56 function addNode($id, $node) { argument
59 $this->nodes[] = $node;
64 $this->nodes[$id] = $node;
/plugin/wysiwyg/fckeditor/editor/plugins/placeholder/
H A Dfckplugin.js167 FCKPlaceholders._AcceptNode = function( node ) argument
169 if ( /\[\[[^\[\]]+\]\]/.test( node.nodeValue ) )
179 FCKXHtml.TagProcessors['span'] = function( node, htmlNode ) argument
182 node = FCKXHtml.XML.createTextNode( '[[' + htmlNode._fckplaceholder + ']]' ) ;
184 FCKXHtml._AppendChildNodes( node, htmlNode, false ) ;
186 return node ;

12345678910>>...29