Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for evictionTime (0.29 sec)

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

    	if err := Convert_v1_PodSignature_To_core_PodSignature(&in.PodSignature, &out.PodSignature, s); err != nil {
    		return err
    	}
    	out.EvictionTime = in.EvictionTime
    	out.Reason = in.Reason
    	out.Message = in.Message
    	return nil
    }
    
    // Convert_v1_PreferAvoidPodsEntry_To_core_PreferAvoidPodsEntry is an autogenerated conversion function.
    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 *PreferAvoidPodsEntry) DeepCopyInto(out *PreferAvoidPodsEntry) {
    	*out = *in
    	in.PodSignature.DeepCopyInto(&out.PodSignature)
    	in.EvictionTime.DeepCopyInto(&out.EvictionTime)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PreferAvoidPodsEntry.
    func (in *PreferAvoidPodsEntry) DeepCopy() *PreferAvoidPodsEntry {
    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 *PreferAvoidPodsEntry) DeepCopyInto(out *PreferAvoidPodsEntry) {
    	*out = *in
    	in.PodSignature.DeepCopyInto(&out.PodSignature)
    	in.EvictionTime.DeepCopyInto(&out.EvictionTime)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PreferAvoidPodsEntry.
    func (in *PreferAvoidPodsEntry) DeepCopy() *PreferAvoidPodsEntry {
    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. staging/src/k8s.io/api/core/v1/types.go

    	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"`
    	// (brief) reason why this entry was added to the list.
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,3,opt,name=reason"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.pb.go

    	s := strings.Join([]string{`&PreferAvoidPodsEntry{`,
    		`PodSignature:` + strings.Replace(strings.Replace(this.PodSignature.String(), "PodSignature", "PodSignature", 1), `&`, ``, 1) + `,`,
    		`EvictionTime:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.EvictionTime), "Time", "v1.Time", 1), `&`, ``, 1) + `,`,
    		`Reason:` + fmt.Sprintf("%v", this.Reason) + `,`,
    		`Message:` + fmt.Sprintf("%v", this.Message) + `,`,
    		`}`,
    	}, "")
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // 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;
    
      // (brief) reason why this entry was added to the list.
      // +optional
      optional string reason = 3;
    
      // Human readable message indicating why this entry was added to the list.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    type PreferAvoidPodsEntry struct {
    	// 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)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_Preconditions
    }
    
    var map_PreferAvoidPodsEntry = map[string]string{
    	"":             "Describes a class of pods that should avoid this node.",
    	"podSignature": "The class of pods.",
    	"evictionTime": "Time at which this entry was added to the list.",
    	"reason":       "(brief) reason why this entry was added to the list.",
    	"message":      "Human readable message indicating why this entry was added to the list.",
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // 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;
    
      // (brief) reason why this entry was added to the list.
      // +optional
      optional string reason = 3;
    
      // Human readable message indicating why this entry was added to the list.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "The class of pods.",
    							Default:     map[string]interface{}{},
    							Ref:         ref("k8s.io/api/core/v1.PodSignature"),
    						},
    					},
    					"evictionTime": {
    						SchemaProps: spec.SchemaProps{
    							Description: "Time at which this entry was added to the list.",
    							Ref:         ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"),
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top