Home
last modified time | relevance | path

Searched refs:nodeExists (Results 1 – 25 of 317) sorted by relevance

12345678910>>...13

/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/controller/volume/attachdetach/cache/
H A Ddesired_state_of_world.go202 if _, nodeExists := dsw.nodesManaged[nodeName]; !nodeExists {
219 nodeObj, nodeExists := dsw.nodesManaged[nodeName]
220 if !nodeExists {
272 nodeObj, nodeExists := dsw.nodesManaged[nodeName]
273 if !nodeExists {
297 nodeObj, nodeExists := dsw.nodesManaged[nodeName]
298 if !nodeExists {
325 _, nodeExists := dsw.nodesManaged[nodeName]
326 return nodeExists
335 if nodeExists {
[all …]
H A Dactual_state_of_world.go355 node, nodeExists := volumeObj.nodesAttachedTo[nodeName]
356 if !nodeExists {
448 nodeObj, nodeExists := volumeObj.nodesAttachedTo[nodeName]
449 if nodeExists {
548 _, nodeExists := volumeObj.nodesAttachedTo[nodeName]
549 if nodeExists {
568 if node, nodeExists := volumeObj.nodesAttachedTo[nodeName]; nodeExists {
603 if nodeObj, nodeExists := volumeObj.nodesAttachedTo[nodeName]; nodeExists {
H A Ddesired_state_of_world_test.go41 nodeExists := dsw.NodeExists(nodeName)
42 if !nodeExists {
66 nodeExists := dsw.NodeExists(nodeName)
67 if !nodeExists {
75 nodeExists = dsw.NodeExists(nodeName)
76 if !nodeExists {
332 nodeExists := dsw.NodeExists(nodeName)
333 if nodeExists {
360 if nodeExists {
399 if !nodeExists {
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.security.tests/src/org/eclipse/equinox/internal/security/tests/storage/
H A DSecurePreferencesTest.java205 assertTrue(preferences.nodeExists(null)); in testNodeResolution()
209 assertTrue(preferences.nodeExists("/test/cvs")); in testNodeResolution()
210 assertFalse(preferences.nodeExists("/test/nonExistent")); in testNodeResolution()
229 assertTrue(nodeRoot.nodeExists("test/cvs")); in testNodeResolution()
230 assertFalse(nodeRoot.nodeExists("test/nonExistent")); in testNodeResolution()
236 assertTrue(relativeNode1.nodeExists("eclipse.org")); in testNodeResolution()
237 assertFalse(relativeNode1.nodeExists("nonExistent")); in testNodeResolution()
243 assertTrue(relativeNode2.nodeExists("account1")); in testNodeResolution()
244 assertFalse(relativeNode2.nodeExists("nonExistent")); in testNodeResolution()
281 assertTrue(preferences.nodeExists(null)); in testNodeRemoval()
[all …]
H A DSlashEncodeTest.java111 assertFalse(preferences.nodeExists("ro")); in testPreferencesWithSlashes()
112 assertFalse(preferences.nodeExists("ro/ot")); in testPreferencesWithSlashes()
113 assertTrue(preferences.nodeExists(safePath)); in testPreferencesWithSlashes()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.runtime/tests/org.eclipse.core.tests.runtime/src/org/eclipse/core/tests/internal/preferences/
H A DTestBug388004.java73 if (!node.nodeExists(RuntimeTestsPlugin.PI_RUNTIME_TESTS)) in testBug()
76 if (!node.nodeExists("/default/" + RuntimeTestsPlugin.PI_RUNTIME_TESTS)) in testBug()
80 if (!node.nodeExists(RuntimeTestsPlugin.PI_RUNTIME_TESTS + "/" + NODE)) in testBug()
83 if (!node.nodeExists("/default/" + RuntimeTestsPlugin.PI_RUNTIME_TESTS + "/" + NODE)) in testBug()
87 if (node.nodeExists(RuntimeTestsPlugin.PI_RUNTIME_TESTS + "/" + NODE + "/" + KEY)) in testBug()
90 if (node.nodeExists("/default/" + RuntimeTestsPlugin.PI_RUNTIME_TESTS + "/" + NODE + "/" + KEY)) in testBug()
H A DEclipsePreferencesTest.java131 assertFalse("2.5", prefs.nodeExists("")); in testRemove()
640 assertTrue("1." + i, node.nodeExists("")); in testRemoveNode()
651 assertTrue("2." + i, !node.nodeExists("")); in testRemoveNode()
810 assertTrue("1.0", node.nodeExists("")); in testNodeExists()
811 assertTrue("1.1", !node.nodeExists(fake)); in testNodeExists()
821 assertTrue("2.1", node.nodeExists("")); in testNodeExists()
822 assertTrue("2.2", !parent.nodeExists(fake)); in testNodeExists()
823 assertTrue("2.3", !node.nodeExists(fake)); in testNodeExists()
833 assertTrue("3.1", node.nodeExists("")); in testNodeExists()
835 assertTrue("3.3", !node.nodeExists(fake)); in testNodeExists()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/tests/org.eclipse.core.tests.net/src/org/eclipse/core/tests/net/
H A DPreferenceModifyListenerTest.java54 assertFalse(debugString, exported.nodeExists("instance/org.eclipse.core.net")); in testPreApply()
55 assertFalse(debugString, exported.nodeExists("/instance/org.eclipse.core.net")); in testPreApply()
56 assertFalse(debugString, exported.nodeExists("configuration/org.eclipse.core.net")); in testPreApply()
57 assertFalse(debugString, exported.nodeExists("/configuration/org.eclipse.core.net")); in testPreApply()
/dports/devel/p5-Paranoid/Paranoid-2.08/t/
H A D60_avltree.t32 is( $obj->nodeExists('foo'), 0, 'avltree exists 1' );
49 ok( $obj->nodeExists('loo'), 'avltree nodeExists 1' );
50 ok( $obj->nodeExists('boo'), 'avltree nodeExists 2' );
/dports/biology/mmseqs2/MMseqs2-13-45111/src/taxonomy/
H A DNcbiTaxonomy.cpp144 if (!nodeExists(it->parentTaxId)) { in loadNodes()
178 if (!nodeExists(entry.first)) { in loadNames()
268 if (!nodeExists(child)) { in IsAncestor()
272 if (!nodeExists(ancestor)) { in IsAncestor()
281 if (!nodeExists(taxonA)) { in LCA()
283 } else if (!nodeExists(taxonB)) { in LCA()
292 while (it != taxa.end() && !nodeExists(*it)) { in LCA()
299 if (nodeExists(*it)) { in LCA()
393 if (taxonId < 0 || !nodeExists(taxonId)) { in nodeId()
448 if (!nodeExists(oldId) && nodeExists(mergedId)) { in loadMerged()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.runtime/bundles/org.eclipse.core.contenttype/src/org/eclipse/core/internal/content/
H A DPreferenceModifyListener.java26 if (root.nodeExists(InstanceScope.SCOPE)) { in preApply()
28 if (instance.nodeExists(ContentTypeManager.CONTENT_TYPE_PREF_NODE)) in preApply()
/dports/www/drupal8/drupal-8.9.20/core/modules/migrate/tests/src/Kernel/
H A DHighWaterTest.php270 self::assertTrue($this->nodeExists($title));
280 self::assertFalse($this->nodeExists($title));
291 protected function nodeExists($title) { function in Drupal\\Tests\\migrate\\Kernel\\HighWaterTest
/dports/www/drupal9/drupal-9.2.10/core/modules/migrate/tests/src/Kernel/
H A DHighWaterTest.php270 self::assertTrue($this->nodeExists($title));
280 self::assertFalse($this->nodeExists($title));
291 protected function nodeExists($title) { function in Drupal\\Tests\\migrate\\Kernel\\HighWaterTest
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/
H A DPreferenceModifyListener.java35 if (root.nodeExists(InstanceScope.SCOPE)) { in preApply()
38 if (instance.nodeExists(Activator.ID)) { in preApply()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/
H A DJavaCorePreferenceModifyListener.java34 if (root.nodeExists(InstanceScope.SCOPE)) { in preApply()
37 if (instance.nodeExists(JavaCore.PLUGIN_ID)) { in preApply()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/model/
H A DJavaCorePreferenceModifyListenerTest.java61 assertFalse(debugString, exported.nodeExists("instance/org.eclipse.jdt.core")); in testPreApply()
62 assertFalse(debugString, exported.nodeExists("/instance/org.eclipse.jdt.core")); in testPreApply()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/
H A DOSGiPreferencesServiceImpl.java120 if (!wrapped.nodeExists("")) { //$NON-NLS-1$ in parent()
132 public boolean nodeExists(String pathName) throws BackingStoreException { in nodeExists() method in OSGiPreferencesServiceImpl.OSGiLocalRootPreferences
133 return wrapped.nodeExists(fixPath(pathName)); in nodeExists()
/dports/textproc/sigil/Sigil-1.8.0/src/Query/
H A DCQueryUtil.cpp60 if (nodeExists(aNodes1, pNode)) in unionNodes()
71 bool CQueryUtil::nodeExists(std::vector<GumboNode*> aNodes, GumboNode* apNode) in nodeExists() function in CQueryUtil
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.resources/bundles/org.eclipse.core.resources/src/org/eclipse/core/internal/resources/
H A DProjectContentTypes.java114 if (!node.nodeExists(projectName)) in usesContentTypePreferences()
117 if (!node.nodeExists(Platform.PI_RUNTIME)) in usesContentTypePreferences()
120 if (!node.nodeExists(CONTENT_TYPE_PREF_NODE)) in usesContentTypePreferences()
H A DProjectPreferences.java80 if (!projectNode.nodeExists(qualifier)) in deleted()
545 public boolean nodeExists(String path) throws BackingStoreException { in nodeExists() method in ProjectPreferences
555 return super.nodeExists(path); in nodeExists()
557 return super.nodeExists(path); in nodeExists()
559 return super.nodeExists(path); in nodeExists()
561 return super.nodeExists(path); in nodeExists()
564 …return ResourcesPlugin.getWorkspace().getRoot().getProject(path).exists() || super.nodeExists(path… in nodeExists()
/dports/security/nextcloud-end_to_end_encryption/end_to_end_encryption/lib/Connector/Sabre/
H A DAPlugin.php101 if ($this->server->tree->nodeExists($path)) {
108 if ($this->server->tree->nodeExists($parent)) {
/dports/games/scummvm/scummvm-2.5.1/backends/fs/morphos/
H A Dmorphos-fs.cpp179 bool nodeExists = false; in exists() local
183 nodeExists = true; in exists()
187 return nodeExists; in exists()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/
H A DUserAdminStore.java106 if (propertyNode.nodeExists(typesNode)) in clearProperties()
148 if (propertyNode.nodeExists(typesNode)) in removeProperty()
166 if (credentialNode.nodeExists(typesNode)) in clearCredentials()
210 if (credentialNode.nodeExists(typesNode)) in removeCredential()
363 if (!rootNode.nodeExists(Role.anyoneString)) { in createAnonRole()
/dports/games/scummvm/scummvm-2.5.1/backends/fs/amigaos/
H A Damigaos-fs.cpp176 bool nodeExists = false; in exists() local
180 nodeExists = true; in exists()
184 return nodeExists; in exists()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.prefs/share/classes/java/util/prefs/
H A DAbstractPreferences.java910 public boolean nodeExists(String path) in nodeExists() method in AbstractPreferences
921 return nodeExists(new StringTokenizer(path, "/", true)); in nodeExists()
925 return root.nodeExists(new StringTokenizer(path.substring(1), "/", in nodeExists()
932 private boolean nodeExists(StringTokenizer path) in nodeExists() method in AbstractPreferences
949 return child.nodeExists(path); in nodeExists()

12345678910>>...13