Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Nname (0.04 sec)

  1. src/cmd/compile/internal/types/type.go

    		return CMPeq
    
    	case TSSA:
    		tname := t.extra.(string)
    		xname := x.extra.(string)
    		// desire fast sorting, not pretty sorting.
    		if len(tname) == len(xname) {
    			if tname == xname {
    				return CMPeq
    			}
    			if tname < xname {
    				return CMPlt
    			}
    			return CMPgt
    		}
    		if len(tname) > len(xname) {
    			return CMPgt
    		}
    		return CMPlt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. istioctl/pkg/describe/describe.go

    		if !containerStatus.Ready {
    			fmt.Fprintf(writer, "WARNING: Pod %s Container %s NOT READY\n", kname(pod.ObjectMeta), containerStatus.Name)
    		}
    	}
    	for _, containerStatus := range pod.Status.InitContainerStatuses {
    		if !containerStatus.Ready {
    			fmt.Fprintf(writer, "WARNING: Pod %s Init Container %s NOT READY\n", kname(pod.ObjectMeta), containerStatus.Name)
    		}
    	}
    
    	if ignoreUnmeshed {
    		return
    	}
    
    	if !isMeshed(pod) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/link/internal/ld/xcoff.go

    		return f.sectNameToScnum[".text"]
    	case &Segdata:
    		if sect.Name == ".noptrbss" || sect.Name == ".bss" {
    			return f.sectNameToScnum[".bss"]
    		}
    		if sect.Name == ".tbss" {
    			return f.sectNameToScnum[".tbss"]
    		}
    		return f.sectNameToScnum[".data"]
    	case &Segdwarf:
    		name, _ := xcoffGetDwarfSubtype(sect.Name)
    		return f.sectNameToScnum[name]
    	case &Segrelrodata:
    		return f.sectNameToScnum[".data"]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  10. src/net/dnsclient_unix_test.go

    func mustNewName(name string) dnsmessage.Name {
    	nn, err := dnsmessage.NewName(name)
    	if err != nil {
    		panic(fmt.Sprint("creating name: ", err))
    	}
    	return nn
    }
    
    func mustQuestion(name string, qtype dnsmessage.Type, class dnsmessage.Class) dnsmessage.Question {
    	return dnsmessage.Question{
    		Name:  mustNewName(name),
    		Type:  qtype,
    		Class: class,
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top