Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 131 for vips (0.12 sec)

  1. pilot/pkg/networking/core/listener_waypoint.go

    func (lb *ListenerBuilder) buildWaypointInbound() []*listener.Listener {
    	listeners := []*listener.Listener{}
    	// We create 3 listeners:
    	// 1. Decapsulation CONNECT listener.
    	// 2. IP dispatch listener, handling both VIPs and direct pod IPs.
    	// 3. Encapsulation CONNECT listener, originating the tunnel
    	wls, wps := findWaypointResources(lb.node, lb.push)
    
    	listeners = append(listeners,
    		lb.buildWaypointInboundConnectTerminate(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. pkg/proxy/apis/config/types.go

    	// sourceVip is the IP address of the source VIP endpoint used for
    	// NAT when loadbalancing
    	SourceVip string
    	// enableDSR tells kube-proxy whether HNS policies should be created
    	// with DSR
    	EnableDSR bool
    	// rootHnsEndpointName is the name of hnsendpoint that is attached to
    	// l2bridge for root network namespace
    	RootHnsEndpointName string
    	// forwardHealthCheckVip forwards service VIP for health check port on
    	// Windows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/crypto/internal/mlkem768/mlkem768.go

    // with the unintentional transposition of the matrix A reverted to match the
    // behavior of [Kyber version 3.0]. Future versions of this package might
    // introduce backwards incompatible changes to implement changes to FIPS 203.
    //
    // [Kyber version 3.0]: https://pq-crystals.org/kyber/data/kyber-specification-round3-20210804.pdf
    // [NIST FIPS 203 ipd]: https://doi.org/10.6028/NIST.FIPS.203.ipd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  4. src/crypto/aes/aes_test.go

    			}
    			w = w<<24 | w>>8
    		}
    	}
    }
    
    // Test vectors are from FIPS 197:
    //	https://csrc.nist.gov/publications/fips/fips197/fips-197.pdf
    
    // Appendix A of FIPS 197: Key expansion examples
    type KeyTest struct {
    	key []byte
    	enc []uint32
    	dec []uint32 // decryption expansion; not in FIPS 197, computed from C implementation.
    }
    
    var keyTests = []KeyTest{
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. pkg/controller/servicecidrs/servicecidrs_controller_test.go

    		cidrs      []*networkingapiv1alpha1.ServiceCIDR
    		ips        []*networkingapiv1alpha1.IPAddress
    		cidrSynced *networkingapiv1alpha1.ServiceCIDR
    		want       bool
    	}{
    		{
    			name:       "empty",
    			cidrSynced: makeServiceCIDR(defaultservicecidr.DefaultServiceCIDRName, "192.168.0.0/24", "2001:db2::/64"),
    			want:       true,
    		},
    		{
    			name: "CIDR and no IPs",
    			cidrs: []*networkingapiv1alpha1.ServiceCIDR{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. pkg/kubelet/certificate/kubelet.go

    	for dnsName := range seenDNSNames {
    		dnsNames = append(dnsNames, dnsName)
    	}
    	for ip := range seenIPs {
    		ips = append(ips, netutils.ParseIPSloppy(ip))
    	}
    
    	// return in stable order
    	sort.Strings(dnsNames)
    	sort.Slice(ips, func(i, j int) bool { return ips[i].String() < ips[j].String() })
    
    	return dnsNames, ips
    }
    
    // NewKubeletClientCertificateManager sets up a certificate manager without a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/net/ip_test.go

    func benchmarkIPEqual(b *testing.B, size int) {
    	ips := make([]IP, 1000)
    	for i := range ips {
    		ips[i] = make(IP, size)
    		rand.Read(ips[i])
    	}
    	// Half of the N are equal.
    	for i := 0; i < b.N/2; i++ {
    		x := ips[i%len(ips)]
    		y := ips[i%len(ips)]
    		x.Equal(y)
    	}
    	// The other half are not equal.
    	for i := 0; i < b.N/2; i++ {
    		x := ips[i%len(ips)]
    		y := ips[(i+1)%len(ips)]
    		x.Equal(y)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. pkg/dns/client/dns_test.go

    	}
    }
    
    var giantResponse = func() []dns.RR {
    	ips := make([]netip.Addr, 0)
    	for i := 0; i < 64; i++ {
    		ips = append(ips, netip.MustParseAddr(fmt.Sprintf("240.0.0.%d", i)))
    	}
    	return a("aaaaaaaaaaaa.aaaaaa.", ips)
    }()
    
    func makeUpstream(t test.Failer, responses map[string]string) string {
    	mux := dns.NewServeMux()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/helpers_test.go

    		add rule ip6 kube-proxy services ip6 daddr @nodeport-ips meta l4proto . th dport vmap @service-nodeports
    		add element ip6 kube-proxy cluster-ips { fd00:172:30::41 }
    		add element ip6 kube-proxy nodeport-ips { 2001:db8::1 }
    		add element ip6 kube-proxy nodeport-ips { 2001:db8:1::2 }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/conversion_test.go

    			service.Hostname, ServiceHostname(serviceName, namespace, domainSuffix))
    	}
    
    	ips := service.ClusterVIPs.GetAddressesFor(clusterID)
    	if len(ips) != 1 {
    		t.Fatalf("number of ips incorrect => %q, want 1", len(ips))
    	}
    
    	if ips[0] != ip {
    		t.Fatalf("service IP incorrect => %q, want %q", ips[0], ip)
    	}
    
    	actualIPs := service.ClusterVIPs.GetAddressesFor(clusterID)
    	expectedIPs := []string{ip}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top