Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for namespaceUri (0.22 sec)

  1. src/mdo/model.vm

        #end
                } else {
                    this.base = base;
                }
            }
    
        #if ( $class == $root )
            @Nonnull
            public Builder namespaceUri(String namespaceUri) {
                this.namespaceUri = namespaceUri;
                return this;
            }
    
            @Nonnull
            public Builder modelEncoding(String modelEncoding) {
                this.modelEncoding = modelEncoding;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeWriter.java

            @Override
            public void writeEmptyElement(String namespaceURI, String localName) throws XMLStreamException {
                indent();
                super.writeEmptyElement(namespaceURI, localName);
                hasChildren = true;
                anew = false;
            }
    
            @Override
            public void writeEmptyElement(String prefix, String localName, String namespaceURI) throws XMLStreamException {
                indent();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 27 23:11:34 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodeIterator.java

                if (wildcard && testPrefix == null) {
                    return true;
                }
                if (wildcard || testName.equals(nodeName)) {
                    return (namespaceURI == null || namespaceURI.isEmpty()) || (testPrefix == null || testPrefix.isEmpty());
                }
                return false;
            }
            if (test instanceof NodeTypeTest) {
                switch (((NodeTypeTest) test).getNodeType()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

        public XmlNodeImpl(
                String prefix,
                String namespaceUri,
                String name,
                String value,
                Map<String, String> attributes,
                List<XmlNode> children,
                Object location) {
            this.prefix = prefix == null ? "" : prefix;
            this.namespaceUri = namespaceUri == null ? "" : namespaceUri;
            this.name = Objects.requireNonNull(name);
            this.value = value;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. src/mdo/writer-stax.vm

            @Override
            public void writeEmptyElement(String namespaceURI, String localName) throws XMLStreamException {
                indent();
                super.writeEmptyElement(namespaceURI, localName);
                hasChildren = true;
            }
    
            @Override
            public void writeEmptyElement(String prefix, String localName, String namespaceURI) throws XMLStreamException {
                indent();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/java/org/apache/maven/model/building/BuildModelSourceTransformerTest.java

        @Test
        void testModelVersion() {
            Model initial = new Model(org.apache.maven.api.model.Model.newBuilder()
                    .namespaceUri("http://maven.apache.org/POM/4.0.0")
                    .build());
            Model expected = new Model(org.apache.maven.api.model.Model.newBuilder()
                    .namespaceUri("http://maven.apache.org/POM/4.0.0")
                    .modelVersion("4.0.0")
                    .build());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptor.groovy

            authors = ivy.info[0].ivyauthor
    
            extraInfo = [:]
            ivy.info[0].children().findAll { it.name() instanceof QName }.each {
                extraInfo[new javax.xml.namespace.QName(it.name().namespaceURI, it.name().localPart)] = it.text()
            }
    
            ivy.configurations.conf.each {
                configurations[it.@name] = new IvyDescriptorConfiguration(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/IvyDescriptorFileGeneratorTest.groovy

            then:
            ivyXml.info."foo".size() == 1
            ivyXml.info."foo"[0].namespaceURI() == "http://namespace/foo"
            ivyXml.info."foo"[0].text() == 'fooValue'
            ivyXml.info."bar".size() == 1
            ivyXml.info."bar"[0].namespaceURI() == "http://namespace/bar"
            ivyXml.info."bar"[0].text() == 'barValue'
        }
    
        def "writes supplied configurations"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/vnd.google-earth.kml+xml">
        <root-XML localName="kml"/>
        <root-XML namespaceURI="http://www.opengis.net/kml/2.2" localName="kml"/>
        <root-XML namespaceURI="http://earth.google.com/kml/2.0" localName="kml"/>
        <root-XML namespaceURI="http://earth.google.com/kml/2.1" localName="kml"/>
        <root-XML namespaceURI="http://earth.google.com/kml/2.2" localName="kml"/>
        <acronym>KML</acronym>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  10. 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)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top