Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for localName (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    				}
    				if s == nil {
    					s = n
    				} else {
    					s = &Qualified{Scope: s, Name: n, LocalName: false}
    				}
    			}
    			if s == nil {
    				st.fail("missing scope in unresolved name")
    			}
    			st.advance(1)
    			n := st.baseUnresolvedName()
    			return &Qualified{Scope: s, Name: n, LocalName: false}
    		}
    	} else {
    		return st.baseUnresolvedName()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/util/in_mesh.go

    func getNamesSidecarInjectionStatus(ns resource.Namespace, c analysis.Context) (enabled bool, ok bool) {
    	enabled, ok = false, false
    
    	namespace := c.Find(gvk.Namespace, resource.NewFullName("", resource.LocalName(ns)))
    	if namespace != nil {
    		enabled, ok = namespace.Metadata.Labels[InjectionLabelName] == InjectionLabelEnableValue, true
    	}
    
    	return enabled, ok
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. istioctl/pkg/precheck/precheck.go

    				Origin: &legacykube.Origin{
    					Type: config.GroupVersionKind(deployment.GroupVersionKind()),
    					FullName: resource.FullName{
    						Namespace: resource.Namespace(deployment.GetNamespace()),
    						Name:      resource.LocalName(deployment.GetName()),
    					},
    					ResourceVersion: resource.Version(deployment.GetResourceVersion()),
    					Ref:             nil,
    					FieldsMap:       nil,
    				},
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. src/net/smtp/smtp_test.go

    	var cmdbuf strings.Builder
    	bcmdbuf := bufio.NewWriter(&cmdbuf)
    	var fake faker
    	fake.ReadWriter = bufio.NewReadWriter(bufio.NewReader(strings.NewReader(server)), bcmdbuf)
    	c := &Client{Text: textproto.NewConn(fake), localName: "localhost"}
    
    	if err := c.helo(); err != nil {
    		t.Fatalf("HELO failed: %s", err)
    	}
    	if err := c.ehlo(); err == nil {
    		t.Fatalf("Expected first EHLO to fail")
    	}
    	if err := c.ehlo(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		name = q.Name
    	}
    	q = &Qualified{Scope: scope, Name: name, LocalName: q.LocalName}
    	if r := fn(q); r != nil {
    		return r
    	}
    	return q
    }
    
    func (q *Qualified) GoString() string {
    	return q.goString(0, "")
    }
    
    func (q *Qualified) goString(indent int, field string) string {
    	s := ""
    	if q.LocalName {
    		s = " LocalName: true"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  10. cluster/addons/node-problem-detector/npd.yaml

              mountPath: /dev/kmsg
              readOnly: true
            - name: localtime
              mountPath: /etc/localtime
              readOnly: true
          volumes:
          - name: log
            hostPath:
              path: /var/log/
          - name: kmsg
            hostPath:
              path: /dev/kmsg
          - name: localtime
            hostPath:
              path: /etc/localtime
              type: "FileOrCreate"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top