Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for namespaceUri (0.29 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. src/mdo/reader-stax.vm

        #if ( $Helper.xmlFieldMetadata( $field ).format )
            ${classLcapName}.${field.name}($Helper.xmlFieldMetadata( $field ).format);
        #end
      #end
      #if ( $class == $root )
            ${classLcapName}.namespaceUri(parser.getNamespaceURI());
            ${classLcapName}.modelEncoding(parser.getEncoding());
      #end
            return ${classLcapName}.build();
        }
    
     #end
    #end
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  7. pkg/controller/deployment/util/deployment_util.go

    		}
    		var ret []*apps.ReplicaSet
    		for i := range rsList.Items {
    			ret = append(ret, &rsList.Items[i])
    		}
    		return ret, err
    	}
    }
    
    // TODO: switch RsListFunc and podListFunc to full namespacers
    
    // RsListFunc returns the ReplicaSet from the ReplicaSet namespace and the List metav1.ListOptions.
    type RsListFunc func(string, metav1.ListOptions) ([]*apps.ReplicaSet, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
Back to top