Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for localName (0.32 sec)

  1. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeWriter.java

                indent();
                super.writeStartElement(localName);
                depth++;
                hasChildren = false;
                anew = false;
            }
    
            @Override
            public void writeStartElement(String namespaceURI, String localName) throws XMLStreamException {
                indent();
                super.writeStartElement(namespaceURI, localName);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 27 23:11:34 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. pkg/config/resource/serialization.go

    func PilotConfigToInstance(c *config.Config, schema resource.Schema) *Instance {
    	return &Instance{
    		Metadata: Metadata{
    			Schema:      schema,
    			FullName:    FullName{Namespace(c.Namespace), LocalName(c.Name)},
    			CreateTime:  c.CreationTimestamp,
    			Version:     Version(c.ResourceVersion),
    			Labels:      c.Labels,
    			Annotations: c.Annotations,
    		},
    		Message: c.Spec,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 18 16:33:33 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. pkg/config/resource/name.go

    func (n Namespace) String() string {
    	return string(n)
    }
    
    // LocalName that uniquely identifies the resource within the Namespace.
    type LocalName string
    
    func (n LocalName) String() string {
    	return string(n)
    }
    
    // FullName is a name that uniquely identifies a resource within the mesh.
    type FullName struct {
    	Namespace Namespace
    	Name      LocalName
    }
    
    // String interface implementation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 14 13:55:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. src/net/smtp/smtp.go

    // automatically otherwise. If Hello is called, it must be called before
    // any of the other methods.
    func (c *Client) Hello(localName string) error {
    	if err := validateLine(localName); err != nil {
    		return err
    	}
    	if c.didHello {
    		return errors.New("smtp: Hello called after other methods")
    	}
    	c.localName = localName
    	return c.hello()
    }
    
    // cmd is a convenience function that sends a command and returns the response
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. src/mdo/writer-stax.vm

                hasChildren = true;
            }
    
            @Override
            public void writeEmptyElement(String prefix, String localName, String namespaceURI) throws XMLStreamException {
                indent();
                super.writeEmptyElement(prefix, localName, namespaceURI);
                hasChildren = true;
            }
    
            @Override
            public void writeStartElement(String localName) throws XMLStreamException {
    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. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/base/KtFe10PsiSymbolUtils.kt

            className = if (className.isNotEmpty()) FqName.fromSegments(className.asReversed()) else null,
            callableName = Name.identifier(selfName),
            pathToLocal = if (localName.isNotEmpty()) FqName.fromSegments(localName.asReversed()) else null
        )
    }
    
    internal fun PsiElement.getResolutionScope(bindingContext: BindingContext): LexicalScope? {
        for (parent in parentsWithSelf) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

                        pathToLocal = if (localName.isNotEmpty()) FqName.fromSegments(localName.asReversed()) else null
                    )
                }
                is ClassDescriptor -> {
                    if (current.kind == ClassKind.ENUM_ENTRY) {
                        if (!allowLocal) {
                            return null
                        }
    
                        localName += current.name.asString()
                    } else {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/util/hosts.go

    	name := GetFullNameFromFQDN(host)
    
    	// Otherwise, treat this as a short name and use the assumed namespace
    	if name.Namespace == "" {
    		name.Namespace = defaultNamespace
    		name.Name = resource.LocalName(host)
    	}
    	return name
    }
    
    // GetFullNameFromFQDN tries to parse namespace and name from a fqdn.
    // Empty strings are returned if either namespace or name cannot be parsed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 28 04:57:33 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/maven/MavenMetadataLoader.java

                    XMLHelper.parse(inputStream, null, new ContextualSAXHandler() {
                        @Override
                        public void endElement(String uri, String localName, String qName)
                                throws SAXException {
                            if ("metadata/versioning/snapshot/timestamp".equals(getContext())) {
                                mavenMetadata.timestamp = getText();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

                sitemapSet = new SitemapSet();
                sitemapSet.setType(SitemapSet.URLSET);
            }
    
            @Override
            public void startElement(final String uri, final String localName, final String qName, final Attributes attributes) {
                if (URL_ELEMENT.equals(qName)) {
                    sitemapUrl = new SitemapUrl();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top