Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 338 for pname (0.04 sec)

  1. src/reflect/type.go

    func (t *interfaceType) Method(i int) (m Method) {
    	if i < 0 || i >= len(t.Methods) {
    		return
    	}
    	p := &t.Methods[i]
    	pname := t.nameOff(p.Name)
    	m.Name = pname.Name()
    	if !pname.IsExported() {
    		m.PkgPath = pkgPath(pname)
    		if m.PkgPath == "" {
    			m.PkgPath = t.PkgPath.Name()
    		}
    	}
    	m.Type = toType(t.typeOff(p.Typ))
    	m.Index = i
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. cmd/iam.go

    		if errors.Is(err, errNoSuchPolicy) {
    			for _, pname := range policies {
    				_, err := sys.store.GetPolicy(pname)
    				if errors.Is(err, errNoSuchPolicy) {
    					// all policies presented in the claim should exist
    					iamLogIf(GlobalContext, fmt.Errorf("expected policy (%s) missing from the JWT claim %s, rejecting the request", pname, iamPolicyClaimNameOpenID()))
    					return false
    				}
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. operator/pkg/name/name.go

    	s := string(n)
    	return ComponentName(strings.ToUpper(s[0:1]) + s[1:])
    }
    
    // UserFacingComponentName returns the name of the given component that should be displayed to the user in high
    // level CLIs (like progress log).
    func UserFacingComponentName(name ComponentName) string {
    	ret, ok := userFacingComponentNames[name]
    	if !ok {
    		return "Unknown"
    	}
    	return ret
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. src/net/http/filetransport_test.go

    	}
    }
    
    func TestFileTransport(t *testing.T) {
    	check := checker(t)
    
    	dname := t.TempDir()
    	fname := filepath.Join(dname, "foo.txt")
    	err := os.WriteFile(fname, []byte("Bar"), 0644)
    	check("WriteFile", err)
    	defer os.Remove(fname)
    
    	tr := &Transport{}
    	tr.RegisterProtocol("file", NewFileTransport(Dir(dname)))
    	c := &Client{Transport: tr}
    
    	fooURLs := []string{"file:///foo.txt", "file://../foo.txt"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 17:07:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/counter/stackcounter.go

    		name = name[:maxNameLen-len(bad)] + bad
    	}
    	return name
    }
    
    // DecodeStack expands the (compressed) stack encoded in the counter name.
    func DecodeStack(ename string) string {
    	if !strings.Contains(ename, "\n") {
    		return ename // not a stack counter
    	}
    	lines := strings.Split(ename, "\n")
    	var lastPath string // empty or ends with .
    	for i, line := range lines {
    		path, rest := cutLastDot(line)
    		if len(path) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. releasenotes/notes/external-name.yaml

          that points to `example.com`. This is implemented by a DNS `CNAME` redirect.
          
          In Istio, the implementation of `ExternalName`, historically, was substantially different. Each `ExternalName` represented its own
          service, and traffic matching the service was sent to the configured DNS name.
          
          This caused a few issues:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. CNAME

    Harshavardhana <******@****.***> 1624037668 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 18 17:34:28 UTC 2021
    - 14 bytes
    - Viewed (0)
  8. releasenotes/notes/external-name-on.yaml

          that points to `example.com`. This is implemented by a DNS `CNAME` redirect.
    
          In Istio, the implementation of `ExternalName`, historically, was substantially different. Each `ExternalName` represented its own
          service, and traffic matching the service was sent to the configured DNS name.
    
          This caused a few issues:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 02 18:58:52 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. src/cmd/fix/main_test.go

    					out, out2)
    				tdiff(t, "first", out, "second", out2)
    			}
    		})
    	}
    }
    
    func tdiff(t *testing.T, aname, a, bname, b string) {
    	t.Errorf("%s", diff.Diff(aname, []byte(a), bname, []byte(b)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/envoy/configdump/route.go

    	if len(routes) == 0 {
    		return nil, fmt.Errorf("no routes found")
    	}
    	sort.Slice(routes, func(i, j int) bool {
    		iName, err := strconv.Atoi(routes[i].Name)
    		if err != nil {
    			return false
    		}
    		jName, err := strconv.Atoi(routes[j].Name)
    		if err != nil {
    			return false
    		}
    		return iName < jName
    	})
    	return routes, nil
    }
    
    func isPassthrough(action any) bool {
    	a, ok := action.(*route.Route_Route)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 05:38:17 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top