Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for AvoidPods (0.3 sec)

  1. pkg/apis/core/json.go

    var _ = json.Marshaler(&AvoidPods{})
    var _ = json.Unmarshaler(&AvoidPods{})
    
    // MarshalJSON panics to prevent marshalling of internal structs
    func (AvoidPods) MarshalJSON() ([]byte, error) { panic("do not marshal internal struct") }
    
    // UnmarshalJSON panics to prevent unmarshalling of internal structs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 25 18:06:51 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.AvoidPods)(nil), (*core.AvoidPods)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_AvoidPods_To_core_AvoidPods(a.(*v1.AvoidPods), b.(*core.AvoidPods), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.AvoidPods)(nil), (*v1.AvoidPods)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. pkg/apis/core/zz_generated.deepcopy.go

    		}
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AvoidPods.
    func (in *AvoidPods) DeepCopy() *AvoidPods {
    	if in == nil {
    		return nil
    	}
    	out := new(AvoidPods)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		}
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AvoidPods.
    func (in *AvoidPods) DeepCopy() *AvoidPods {
    	if in == nil {
    		return nil
    	}
    	out := new(AvoidPods)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    func ValidateAvoidPodsInNodeAnnotations(annotations map[string]string, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	v1Avoids, err := schedulinghelper.GetAvoidPodsFromNodeAnnotations(annotations)
    	if err != nil {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("AvoidPods"), core.PreferAvoidPodsAnnotationKey, err.Error()))
    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. staging/src/k8s.io/api/core/v1/generated.pb.go

    var xxx_messageInfo_AttachedVolume proto.InternalMessageInfo
    
    func (m *AvoidPods) Reset()      { *m = AvoidPods{} }
    func (*AvoidPods) ProtoMessage() {}
    func (*AvoidPods) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{4}
    }
    func (m *AvoidPods) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *AvoidPods) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      optional string devicePath = 2;
    }
    
    // AvoidPods describes pods that should avoid this node. This is the value for a
    // Node annotation with key scheduler.alpha.kubernetes.io/preferAvoidPods and
    // will eventually become a field of NodeStatus.
    message AvoidPods {
      // Bounded-sized list of signatures of pods that should avoid this node, sorted
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// DevicePath represents the device path where the volume should be available
    	DevicePath string
    }
    
    // AvoidPods describes pods that should avoid this node. This is the value for a
    // Node annotation with key scheduler.alpha.kubernetes.io/preferAvoidPods and
    // will eventually become a field of NodeStatus.
    type AvoidPods struct {
    	// Bounded-sized list of signatures of pods that should avoid this node, sorted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (AttachedVolume) SwaggerDoc() map[string]string {
    	return map_AttachedVolume
    }
    
    var map_AvoidPods = map[string]string{
    	"":                "AvoidPods describes pods that should avoid this node. This is the value for a Node annotation with key scheduler.alpha.kubernetes.io/preferAvoidPods and will eventually become a field of NodeStatus.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      optional string devicePath = 2;
    }
    
    // AvoidPods describes pods that should avoid this node. This is the value for a
    // Node annotation with key scheduler.alpha.kubernetes.io/preferAvoidPods and
    // will eventually become a field of NodeStatus.
    message AvoidPods {
      // Bounded-sized list of signatures of pods that should avoid this node, sorted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top