Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for PodSignature (0.26 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.PodSignature)(nil), (*core.PodSignature)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_PodSignature_To_core_PodSignature(a.(*v1.PodSignature), b.(*core.PodSignature), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.PodSignature)(nil), (*v1.PodSignature)(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)
  2. pkg/apis/core/zz_generated.deepcopy.go

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

    func (in *PodSignature) DeepCopyInto(out *PodSignature) {
    	*out = *in
    	if in.PodController != nil {
    		in, out := &in.PodController, &out.PodController
    		*out = new(metav1.OwnerReference)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodSignature.
    func (in *PodSignature) DeepCopy() *PodSignature {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation.go

    	allErrors := field.ErrorList{}
    	if avoidPodEntry.PodSignature.PodController == nil {
    		allErrors = append(allErrors, field.Required(fldPath.Child("PodSignature"), ""))
    	} else {
    		if !*(avoidPodEntry.PodSignature.PodController.Controller) {
    			allErrors = append(allErrors,
    				field.Invalid(fldPath.Child("PodSignature").Child("PodController").Child("Controller"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.pb.go

    func (m *PodSignature) Reset()      { *m = PodSignature{} }
    func (*PodSignature) ProtoMessage() {}
    func (*PodSignature) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{148}
    }
    func (m *PodSignature) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *PodSignature) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// The class of pods.
    	PodSignature PodSignature
    	// Time at which this entry was added to the list.
    	// +optional
    	EvictionTime metav1.Time
    	// (brief) reason why this entry was added to the list.
    	// +optional
    	Reason string
    	// Human readable message indicating why this entry was added to the list.
    	// +optional
    	Message string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // Describes a class of pods that should avoid this node.
    type PreferAvoidPodsEntry struct {
    	// The class of pods.
    	PodSignature PodSignature `json:"podSignature" protobuf:"bytes,1,opt,name=podSignature"`
    	// Time at which this entry was added to the list.
    	// +optional
    	EvictionTime metav1.Time `json:"evictionTime,omitempty" protobuf:"bytes,2,opt,name=evictionTime"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation_test.go

    				"spec.taints[0].value":  true,
    				"spec.taints[0].effect": true,
    				"metadata.annotations.scheduler.alpha.kubernetes.io/preferAvoidPods[0].PodSignature":                          true,
    				"metadata.annotations.scheduler.alpha.kubernetes.io/preferAvoidPods[0].PodSignature.PodController.Controller": true,
    			}
    			if val, ok := expectedFields[field]; ok {
    				if !val {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string uid = 1;
    }
    
    // Describes a class of pods that should avoid this node.
    message PreferAvoidPodsEntry {
      // The class of pods.
      optional PodSignature podSignature = 1;
    
      // Time at which this entry was added to the list.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time evictionTime = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string uid = 1;
    }
    
    // Describes a class of pods that should avoid this node.
    message PreferAvoidPodsEntry {
      // The class of pods.
      optional PodSignature podSignature = 1;
    
      // Time at which this entry was added to the list.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time evictionTime = 2;
    
    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