Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for lastHeartbeatTime (0.35 sec)

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

    	out.Type = core.NodeConditionType(in.Type)
    	out.Status = core.ConditionStatus(in.Status)
    	out.LastHeartbeatTime = in.LastHeartbeatTime
    	out.LastTransitionTime = in.LastTransitionTime
    	out.Reason = in.Reason
    	out.Message = in.Message
    	return nil
    }
    
    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. staging/src/k8s.io/api/core/v1/types.go

    	Status ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=ConditionStatus"`
    	// Last time we got an update on a given condition.
    	// +optional
    	LastHeartbeatTime metav1.Time `json:"lastHeartbeatTime,omitempty" protobuf:"bytes,3,opt,name=lastHeartbeatTime"`
    	// Last time the condition transit from one status to another.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      optional string status = 2;
    
      // Last time we got an update on a given condition.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastHeartbeatTime = 3;
    
      // Last time the condition transit from one status to another.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 4;
    
    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. pkg/apis/core/types.go

    )
    
    // NodeCondition represents the node's condition
    type NodeCondition struct {
    	Type   NodeConditionType
    	Status ConditionStatus
    	// +optional
    	LastHeartbeatTime metav1.Time
    	// +optional
    	LastTransitionTime metav1.Time
    	// +optional
    	Reason string
    	// +optional
    	Message string
    }
    
    // NodeAddressType defines the node's address type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":                   "NodeCondition contains condition information for a node.",
    	"type":               "Type of node condition.",
    	"status":             "Status of the condition, one of True, False, Unknown.",
    	"lastHeartbeatTime":  "Last time we got an update on a given condition.",
    	"lastTransitionTime": "Last time the condition transit from one status to another.",
    	"reason":             "(brief) reason for the condition's last transition.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      optional string status = 2;
    
      // Last time we got an update on a given condition.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastHeartbeatTime = 3;
    
      // Last time the condition transit from one status to another.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 4;
    
    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