Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 106 for families (0.35 sec)

  1. pkg/apis/core/validation/validation_test.go

    				s.Spec.IPFamilies = nil
    			},
    			numErrs: 0,
    		}, {
    			name: "valid, service with valid ipFamilies (v4)",
    			tweakSvc: func(s *core.Service) {
    				s.Spec.IPFamilies = []core.IPFamily{core.IPv4Protocol}
    			},
    			numErrs: 0,
    		}, {
    			name: "valid, service with valid ipFamilies (v6)",
    			tweakSvc: func(s *core.Service) {
    				s.Spec.IPFamilies = []core.IPFamily{core.IPv6Protocol}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K 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. common-protos/k8s.io/api/core/v1/generated.proto

      //
      // This field may hold a maximum of two entries (dual-stack families, in
      // either order).  These families must correspond to the values of the
      // clusterIPs field, if specified. Both clusterIPs and ipFamilies are
      // governed by the ipFamilyPolicy field.
      // +listType=atomic
      // +optional
      repeated string ipFamilies = 19;
    
      // IPFamilyPolicy represents the dual-stack-ness requested or required by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"ipFamilyPolicy":                "IPFamilyPolicy represents the dual-stack-ness requested or required by this Service. If there...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    		}
    	}
    
    	// match clusterIPs to their families, if they were provided
    	if !isHeadlessService(service) && len(service.Spec.ClusterIPs) > 0 && len(service.Spec.IPFamilies) > 0 {
    		for i, ip := range service.Spec.ClusterIPs {
    			if i > (len(service.Spec.IPFamilies) - 1) {
    				break // no more families to check
    			}
    
    			// 4=>6
    			if service.Spec.IPFamilies[i] == core.IPv4Protocol && netutils.IsIPv6String(ip) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. src/cmd/link/link_test.go

    have been born into the cause; innumerable young people have married into it; innumerable old people have died out of it. Scores of persons have deliriously found themselves made parties in Jarndyce and Jarndyce, without knowing how or why; whole families have inherited legendary hatreds with the suit. The little plaintiff or defendant, who was promised a new rocking-horse when Jarndyce and Jarndyce should be settled, has grown up, possessed himself of a real horse, and trotted away into the other...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      //
      // This field may hold a maximum of two entries (dual-stack families, in
      // either order).  These families must correspond to the values of the
      // clusterIPs field, if specified. Both clusterIPs and ipFamilies are
      // governed by the ipFamilyPolicy field.
      // +listType=atomic
      // +optional
      repeated string ipFamilies = 19;
    
      // IPFamilyPolicy represents the dual-stack-ness requested or required by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. src/net/netip/netip.go

    		return ip.addr.xor(p.ip.addr).and(mask6(p.Bits())).isZero()
    	}
    }
    
    // Overlaps reports whether p and o contain any IP addresses in common.
    //
    // If p and o are of different address families or either have a zero
    // IP, it reports false. Like the Contains method, a prefix with an
    // IPv4-mapped IPv6 address is still treated as an IPv6 mask.
    func (p Prefix) Overlaps(o Prefix) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// This field may hold a maximum of two entries (dual-stack families, in
    	// either order).  These families must correspond to the values of the
    	// clusterIPs field, if specified. Both clusterIPs and ipFamilies are
    	// governed by the ipFamilyPolicy field.
    	// +listType=atomic
    	// +optional
    	IPFamilies []IPFamily `json:"ipFamilies,omitempty" protobuf:"bytes,19,opt,name=ipFamilies,casttype=IPFamily"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top