- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for namespaceURI (0.06 seconds)
-
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java
} /** * Sets the namespace URI of the XML node. * * @param namespaceUri the namespace URI of the XML node * @return this builder instance */ public Builder namespaceUri(String namespaceUri) { this.namespaceUri = namespaceUri; return this; } /** * Sets the namespace prefix of the XML node.Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Dec 17 15:20:44 GMT 2025 - 18.3K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelVersionUtils.java
// Fallback to namespace URI detection String namespaceUri = root.namespaceDeclaration(null); if (MAVEN_4_2_0_NAMESPACE.equals(namespaceUri)) { return MODEL_VERSION_4_2_0; } else if (MAVEN_4_1_0_NAMESPACE.equals(namespaceUri)) { return MODEL_VERSION_4_1_0; } else if (MAVEN_4_0_0_NAMESPACE.equals(namespaceUri)) { return MODEL_VERSION_4_0_0; }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 9.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
public boolean isSameNode(Node other) { return false; } @Override public String lookupPrefix(String namespaceURI) { return null; } @Override public boolean isDefaultNamespace(String namespaceURI) { return false; } @Override public String lookupNamespaceURI(String prefix) { return null;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 21.1K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java
synchronized (this) { if (pluginDescriptorV4 == null) { pluginDescriptorV4 = org.apache.maven.api.plugin.descriptor.PluginDescriptor.newBuilder() .namespaceUri(null) .modelEncoding(null) .name(name) .description(description) .groupId(groupId)
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 16.2K bytes - Click Count (0) -
src/main/webapp/js/purify.min.js
t=ae(e);t&&t.tagName||(t={namespaceURI:rt,tagName:"template"});const n=h(e.tagName),o=h(t.tagName);return!!at[e.namespaceURI]&&(e.namespaceURI===nt?t.namespaceURI===ot?"svg"===n:t.namespaceURI===tt?"svg"===n&&("annotation-xml"===o||ct[o]):Boolean(yt[n]):e.namespaceURI===tt?t.namespaceURI===ot?"math"===n:t.namespaceURI===nt?"math"===n&&st[o]:Boolean(Et[n]):e.namespaceURI===ot?!(t.namespaceURI===nt&&!st[o])&&!(t.namespaceURI===tt&&!ct[o])&&!Et[n]&&(ut[n]||!yt[n]):!("application/xhtml+xml"!==mt||!at[e.namespaceURI]))...Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 22.7K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategyTest.java
assertEquals(expectedNamespaceUri, root.namespaceURI()); // Verify child elements namespace updated recursively Element dependencies = DomUtils.findChildElement(root, "dependencies"); assertNotNull(dependencies); assertEquals(expectedNamespaceUri, dependencies.namespaceURI());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 38.8K bytes - Click Count (0) -
compat/maven-model/src/test/java/org/apache/maven/model/v4/ModelXmlTest.java
assertEquals("http://maven.apache.org/POM/4.0.0", node.namespaceUri()); assertEquals("m", node.prefix()); assertEquals("configuration", node.name()); assertEquals(1, node.children().size()); XmlNode myConfig = node.children().get(0); assertEquals("http://fabric8.io/fabric8-maven-plugin", myConfig.namespaceUri()); assertEquals("", myConfig.prefix());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 4K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelVersionUtilsTest.java
Document document = Document.of(pomXml); Element root = document.root(); assertEquals(namespace, root.namespaceURI(), "POM should preserve the specified namespace"); } @Test @DisplayName("should handle custom modelVersion values") void shouldHandleCustomModelVersionValues() {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 19.6K bytes - Click Count (0)