Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for localName (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java

            @Override
            public void startDocument() {
                dataMap.clear();
            }
    
            @Override
            public void startElement(final String uri, final String localName, final String qName, final Attributes attributes) {
                if ("field".equals(qName)) {
                    fieldName = attributes.getValue("name");
                    if (StringUtil.isBlank(fieldName)) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. pkg/config/analysis/local/helpers_test.go

    	ValidateProto: validation.EmptyValidate,
    }.MustBuild()
    
    func createTestResource(t *testing.T, ns, name, version string) *resource.Instance {
    	t.Helper()
    	rname := resource.NewFullName(resource.Namespace(ns), resource.LocalName(name))
    	return &resource.Instance{
    		Metadata: resource.Metadata{
    			FullName: rname,
    			Version:  resource.Version(version),
    		},
    		Message: &emptypb.Empty{},
    		Origin: &kube.Origin{
    			FullName: rname,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/xml/SAXParserFactoryUtilTest.java

            is.setSystemId("include.xml");
            parser.parse(is, new DefaultHandler() {
    
                @Override
                public void startElement(final String uri, final String localName, final String qName, final Attributes attributes)
                        throws SAXException {
                    if ("bar".equals(qName)) {
                        included = true;
                    }
                }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/analyzers_bench_test.go

    	// Generate blank test data
    	store := memory.MakeSkipValidation(collections.All)
    	collections.All.ForEach(func(s resource2.Schema) bool {
    		for i := 0; i < count; i++ {
    			name := resource.NewFullName("default", resource.LocalName(fmt.Sprintf("%s-%d", s.Kind(), i)))
    			_, _ = store.Create(config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: s.GroupVersionKind(),
    					Name:             name.Name.String(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/webhook/webhook.go

    			if wh.ClientConfig.Service == nil {
    				// it is an url, skip it
    				continue
    			}
    			fname := resource.NewFullName(
    				resource.Namespace(wh.ClientConfig.Service.Namespace),
    				resource.LocalName(wh.ClientConfig.Service.Name))
    			if !context.Exists(gvk.Service, fname) {
    				context.Report(gvk.MutatingWebhookConfiguration, msg.NewInvalidWebhook(resources[fmt.Sprintf("%v/%v", name, wh.Name)],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top