Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for families (0.14 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

      ServiceAccount serviceAccount = 28;
    
      // Defines which IP family to use for single stack or the order of IP families for dual-stack.
      // Valid list items are "IPv4", "IPv6".
      // More info: https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services
      repeated string ipFamilies = 29;
    
      // Controls whether Services are configured to use IPv4, IPv6, or both. Valid options
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. pkg/controller/endpoint/endpoints_controller_test.go

    					IPFamilies: []v1.IPFamily{v1.IPv6Protocol}, // <- set by a api-server defaulting logic
    				},
    			},
    			expectedEndpointFamily: ipv6,
    		},
    		{
    			name:       "v6 legacy headless service, in a dual stack cluster  (connected to a old api-server)",
    			ipFamilies: ipv4ipv6,
    			service: v1.Service{
    				Spec: v1.ServiceSpec{
    					ClusterIP: v1.ClusterIPNone, // <- families are not set by api-server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. src/net/netip/netip_test.go

    		a, b Prefix
    		want bool
    	}{
    		{Prefix{}, pfx("1.2.0.0/16"), false},    // first zero
    		{pfx("1.2.0.0/16"), Prefix{}, false},    // second zero
    		{pfx("::0/3"), pfx("0.0.0.0/3"), false}, // different families
    
    		{pfx("1.2.0.0/16"), pfx("1.2.0.0/16"), true}, // equal
    
    		{pfx("1.2.0.0/16"), pfx("1.2.3.0/24"), true},
    		{pfx("1.2.3.0/24"), pfx("1.2.0.0/16"), true},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  4. pkg/controller/endpointslice/endpointslice_controller_test.go

    		pods                  []*v1.Pod
    		expectedEndpointPorts []discovery.EndpointPort
    		expectedEndpoints     []discovery.Endpoint
    	}{
    		{
    			name: "pods with multiple IPs and Service with ipFamilies=ipv4",
    			service: &v1.Service{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "foobar",
    					Namespace:         "default",
    					CreationTimestamp: creationTimestamp,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheBuilder.java

       *
       * <p><b>Warning:</b> in most circumstances it is better to set a per-cache {@linkplain
       * #maximumSize(long) maximum size} instead of using soft references. You should only use this
       * method if you are well familiar with the practical consequences of soft references.
       *
       * <p><b>Note:</b> when this method is used, the resulting cache will use identity ({@code ==})
       * comparison to determine equality of values.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top