Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for namespaceUri (0.14 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. 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)
  4. 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)
  5. 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)
  6. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    int[] attributeNameHash; protected String[] attributePrefix; protected String[] attributeUri; protected String[] attributeValue; protected int namespaceEnd; protected String[] namespacePrefix; protected int[] namespacePrefixHash; protected String[] namespaceUri; protected int entityEnd; protected String[] entityName; protected char[][] entityNameBuf; protected String[] entityReplacement; protected char[][] entityReplacementBuf; protected int[] entityNameHash; protected static final int READ_CHUNK_SIZE...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  7. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeStaxBuilder.java

                throws XMLStreamException {
            boolean spacePreserve = false;
            String lPrefix = null;
            String lNamespaceUri = null;
            String lName = null;
            String lValue = null;
            Object location = null;
            Map<String, String> attrs = null;
            List<XmlNode> children = null;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. pkg/kube/krt/index.go

    	}
    	log.Errorf("< END DUMP (index %v[%T]", i.c.(internalCollection[I]).name(), ptr.TypeName[K]())
    }
    
    // NewNamespaceIndex is a small helper to index a collection by namespace
    func NewNamespaceIndex[I Namespacer](c Collection[I]) *Index[I, string] {
    	return NewIndex(c, func(o I) []string {
    		return []string{o.GetNamespace()}
    	})
    }
    
    // NewIndex creates a simple index, keyed by key K, over an informer for O. This is similar to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 04:53:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. pkg/kube/krt/core.go

    // If implemented, this will be used to determine an objects' Name.
    type Namer interface {
    	GetName() string
    }
    
    // Namespacer is an optional interface that can be implemented by collection types.
    // If implemented, this will be used to determine an objects' Namespace.
    type Namespacer interface {
    	GetNamespace() string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top