Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 314 for vips (0.07 sec)

  1. src/crypto/tls/boring_test.go

    	testClientCert(t, "basic (client cert)", r1pool, L2_I.key, [][]byte{L2_I.der, I_R1.der}, true)
    	fipstls.Force()
    	testServerCert(t, "basic (fips)", r1pool, L2_I.key, [][]byte{L2_I.der, I_R1.der}, false)
    	testClientCert(t, "basic (fips, client cert)", r1pool, L2_I.key, [][]byte{L2_I.der, I_R1.der}, false)
    	fipstls.Abandon()
    
    	if t.Failed() {
    		t.Fatal("basic test failed, skipping exhaustive test")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pkg/proxy/util/utils.go

    func AddressSet(isValid func(ip net.IP) bool, addrs []net.Addr) sets.Set[string] {
    	ips := sets.New[string]()
    	for _, a := range addrs {
    		var ip net.IP
    		switch v := a.(type) {
    		case *net.IPAddr:
    			ip = v.IP
    		case *net.IPNet:
    			ip = v.IP
    		default:
    			continue
    		}
    		if isValid(ip) {
    			ips.Insert(ip.String())
    		}
    	}
    	return ips
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. src/internal/bytealg/compare_native.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build 386 || amd64 || s390x || arm || arm64 || loong64 || ppc64 || ppc64le || mips || mipsle || wasm || mips64 || mips64le || riscv64
    
    package bytealg
    
    import _ "unsafe" // For go:linkname
    
    //go:noescape
    func Compare(a, b []byte) int
    
    func CompareString(a, b string) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 726 bytes
    - Viewed (0)
  4. src/cmd/go/internal/telemetrystats/telemetrystats.go

    		telemetry.Inc("go/platform/target/goamd64:" + cfg.GOAMD64)
    	case "arm":
    		telemetry.Inc("go/platform/target/goarm:" + cfg.GOARM)
    	case "arm64":
    		telemetry.Inc("go/platform/target/goarm64:" + cfg.GOARM64)
    	case "mips":
    		telemetry.Inc("go/platform/target/gomips:" + cfg.GOMIPS)
    	case "ppc64":
    		telemetry.Inc("go/platform/target/goppc64:" + cfg.GOPPC64)
    	case "riscv64":
    		telemetry.Inc("go/platform/target/goriscv64:" + cfg.GORISCV64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/mips/include /tmp/mips/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build mips && linux
    
    package unix
    
    const (
    	SYS_SYSCALL                      = 4000
    	SYS_EXIT                         = 4001
    	SYS_FORK                         = 4002
    	SYS_READ                         = 4003
    	SYS_WRITE                        = 4004
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier.go

    				if cidr.Contains(proxier.nodeIP) {
    					allowFromNode = true
    				}
    			}
    			// For VIP-like LBs, the VIP is often added as a local
    			// address (via an IP route rule).  In that case, a request
    			// from a node to the VIP will not hit the loadbalancer but
    			// will loop back with the source IP set to the VIP.  We
    			// need the following rules to allow requests from this node.
    			if allowFromNode {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  7. src/internal/syscall/unix/siginfo_linux.go

    //
    // NOTE fields are exported to be used by TestSiginfoChildLayout.
    type SiginfoChild struct {
    	Signo       int32
    	siErrnoCode                // Two int32 fields, swapped on MIPS.
    	_           [is64bit]int32 // Extra padding for 64-bit hosts only.
    
    	// End of common part. Beginning of signal-specific part.
    
    	Pid    int32
    	Uid    uint32
    	Status int32
    
    	// Pad to 128 bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. src/net/netip/netip_test.go

    	b.ReportAllocs()
    	ips := []net.IP{}
    	for i := 0; i < b.N; i++ {
    		ip := net.IPv4(8, 8, 8, 8)
    		ips = ips[:0]
    		for i := 0; i < 100; i++ {
    			ips = append(ips, ip)
    		}
    	}
    }
    
    func BenchmarkIPv4(b *testing.B) {
    	b.ReportAllocs()
    	ips := []Addr{}
    	for i := 0; i < b.N; i++ {
    		ip := IPv4(8, 8, 8, 8)
    		ips = ips[:0]
    		for i := 0; i < 100; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  9. src/crypto/sha256/sha256block_386.s

    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    // SHA256 block routine. See sha256block.go for Go equivalent.
    //
    // The algorithm is detailed in FIPS 180-4:
    //
    //  https://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
    //
    // Wt = Mt; for 0 <= t <= 15
    // Wt = SIGMA1(Wt-2) + SIGMA0(Wt-15) + Wt-16; for 16 <= t <= 63
    //
    // a = H0
    // b = H1
    // c = H2
    // d = H3
    // e = H4
    // f = H5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	testCases := []struct {
    		name      string
    		pods      []*corev1.Pod
    		ips       []string
    		ports     []corev1.ServicePort
    		wantPorts []model.ServiceInstancePort
    	}{
    		{
    			name: "multiple proxy ips single port",
    			pods: []*corev1.Pod{pod1},
    			ips:  []string{"128.0.0.1", "192.168.2.6"},
    			ports: []corev1.ServicePort{
    				{
    					Name:       "tcp-port",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top