Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for pname (0.07 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                return false;
            }
            String name = type.getName();
            String saved = name;
            while (true) {
                int len = name.lastIndexOf('.');
                if (len == -1) {
                    break;
                }
                name = name.substring(0, len) + "$" + name.substring(len + 1);
                type.setName(name);
                if (resolve(type)) {
                    return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    	f := new(Field)
    	f.pos = pos
    
    	if p.tok == _Name || name != nil {
    		// name
    		if name == nil {
    			name = p.name()
    		}
    
    		if p.tok == _Lbrack {
    			// name "[" ...
    			f.Type = p.arrayOrTArgs()
    			if typ, ok := f.Type.(*IndexExpr); ok {
    				// name "[" ... "]"
    				typ.X = name
    			} else {
    				// name "[" n "]" E
    				f.Name = name
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    			}
    		}
    		pname := filepath.Join(libdir, name+".a")
    		if ctxt.Debugvlog != 0 {
    			ctxt.Logf("searching for %s.a in %s\n", name, pname)
    		}
    		if _, err := os.Stat(pname); err == nil {
    			return addlibpath(ctxt, "internal", "internal", pname, name, "", zerofp)
    		}
    	}
    
    	if name == "runtime" {
    		Exitf("error: unable to find runtime.a")
    	}
    	ctxt.Logf("warning: unable to find %s.a\n", name)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    	}
    
    	// Wrapper calls into gcc, passing a pointer to the argument frame.
    	fmt.Fprintf(fgo2, "//go:cgo_import_static %s\n", cname)
    	fmt.Fprintf(fgo2, "//go:linkname __cgofn_%s %s\n", cname, cname)
    	fmt.Fprintf(fgo2, "var __cgofn_%s byte\n", cname)
    	fmt.Fprintf(fgo2, "var %s = unsafe.Pointer(&__cgofn_%s)\n", cname, cname)
    
    	nret := 0
    	if !void {
    		d.Type.Results.List[0].Names = []*ast.Ident{ast.NewIdent("r1")}
    		nret = 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/crypto/tls/tls_test.go

    			aName, bName := CipherSuiteName(a), CipherSuiteName(b)
    			// * < RC4
    			if !strings.Contains(aName, "RC4") && strings.Contains(bName, "RC4") {
    				return -1
    			} else if strings.Contains(aName, "RC4") && !strings.Contains(bName, "RC4") {
    				return +1
    			}
    			// * < CBC_SHA256
    			if !strings.Contains(aName, "CBC_SHA256") && strings.Contains(bName, "CBC_SHA256") {
    				return -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/sidecar_simulation_test.go

    		}
    	}
    	ports := `
      ports:
      - name: http
        number: 80
        protocol: HTTP
      - name: auto
        number: 81
      - name: tcp
        number: 82
        protocol: TCP
      - name: tls
        number: 83
        protocol: TLS
      - name: https
        number: 84
        protocol: HTTPS
      - name: grpc
        number: 85
        protocol: GRPC
      - name: h2
        number: 86
        protocol: HTTP2`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    const nonEncodedNameMax = 254
    
    // A Name is a non-encoded and non-escaped domain name. It is used instead of strings to avoid
    // allocations.
    type Name struct {
    	Data   [255]byte
    	Length uint8
    }
    
    // NewName creates a new Name from a string.
    func NewName(name string) (Name, error) {
    	n := Name{Length: uint8(len(name))}
    	if len(name) > len(n.Data) {
    		return Name{}, errCalcLen
    	}
    	copy(n.Data[:], name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  10. hack/local-up-cluster.sh

        sudo tar -C /opt/cni/bin -xzvf "${cni_plugin_tarball}" &&
        rm -rf "${cni_plugin_tarball}" &&
        sudo find /opt/cni/bin -type f -not \( \
            -iname host-local \
            -o -iname bridge \
            -o -iname portmap \
            -o -iname loopback \
            \) \
            -delete
    
      # containerd 1.4.12 installed by docker in kubekins supports CNI version 0.4.0
      echo "Configuring cni"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top