Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for EndpointHints (0.47 sec)

  1. pkg/apis/discovery/v1beta1/zz_generated.conversion.go

    	if err := s.AddGeneratedConversionFunc((*v1beta1.EndpointHints)(nil), (*discovery.EndpointHints)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1beta1_EndpointHints_To_discovery_EndpointHints(a.(*v1beta1.EndpointHints), b.(*discovery.EndpointHints), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 15.3K bytes
    - Viewed (0)
  2. pkg/apis/discovery/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.EndpointHints)(nil), (*discovery.EndpointHints)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_EndpointHints_To_discovery_EndpointHints(a.(*v1.EndpointHints), b.(*discovery.EndpointHints), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*discovery.EndpointHints)(nil), (*v1.EndpointHints)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 14.4K bytes
    - Viewed (0)
  3. pkg/apis/discovery/zz_generated.deepcopy.go

    func (in *EndpointHints) DeepCopyInto(out *EndpointHints) {
    	*out = *in
    	if in.ForZones != nil {
    		in, out := &in.ForZones, &out.ForZones
    		*out = make([]ForZone, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointHints.
    func (in *EndpointHints) DeepCopy() *EndpointHints {
    	if in == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1/zz_generated.deepcopy.go

    func (in *EndpointHints) DeepCopyInto(out *EndpointHints) {
    	*out = *in
    	if in.ForZones != nil {
    		in, out := &in.ForZones, &out.ForZones
    		*out = make([]ForZone, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointHints.
    func (in *EndpointHints) DeepCopy() *EndpointHints {
    	if in == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/discovery/v1beta1/zz_generated.deepcopy.go

    func (in *EndpointHints) DeepCopyInto(out *EndpointHints) {
    	*out = *in
    	if in.ForZones != nil {
    		in, out := &in.ForZones, &out.ForZones
    		*out = make([]ForZone, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointHints.
    func (in *EndpointHints) DeepCopy() *EndpointHints {
    	if in == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  6. pkg/apis/discovery/validation/validation.go

    	}
    
    	return allErrs
    }
    
    func validateHints(endpointHints *discovery.EndpointHints, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	fzPath := fldPath.Child("forZones")
    	if len(endpointHints.ForZones) > maxZoneHints {
    		allErrs = append(allErrs, field.TooMany(fzPath, len(endpointHints.ForZones), maxZoneHints))
    		return allErrs
    	}
    
    	zoneNames := sets.String{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 08:49:15 UTC 2021
    - 7.8K bytes
    - Viewed (0)
  7. pkg/registry/discovery/endpointslice/strategy_test.go

    					{
    						Hints: &discovery.EndpointHints{
    							ForZones: []discovery.ForZone{{Name: "zone-a"}},
    						},
    					},
    					{
    						Hints: &discovery.EndpointHints{
    							ForZones: []discovery.ForZone{{Name: "zone-b"}},
    						},
    					},
    				},
    			},
    			expectedEPS: &discovery.EndpointSlice{
    				Endpoints: []discovery.Endpoint{
    					{
    						Hints: &discovery.EndpointHints{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/discovery/v1beta1/generated.pb.go

    func (m *EndpointHints) Reset()      { *m = EndpointHints{} }
    func (*EndpointHints) ProtoMessage() {}
    func (*EndpointHints) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6555bad15de200e0, []int{2}
    }
    func (m *EndpointHints) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *EndpointHints) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/discovery/v1/generated.pb.go

    func (m *EndpointHints) Reset()      { *m = EndpointHints{} }
    func (*EndpointHints) ProtoMessage() {}
    func (*EndpointHints) Descriptor() ([]byte, []int) {
    	return fileDescriptor_2237b452324cf77e, []int{2}
    }
    func (m *EndpointHints) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *EndpointHints) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 55.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/discovery/v1/generated.proto

      // to mean that the endpoint is not terminating.
      // +optional
      optional bool terminating = 3;
    }
    
    // EndpointHints provides hints describing how an endpoint should be consumed.
    message EndpointHints {
      // forZones indicates the zone(s) this endpoint should be consumed by to
      // enable topology aware routing.
      // +listType=atomic
      repeated ForZone forZones = 1;
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top