Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for lastHeartbeatTime (0.23 sec)

  1. pkg/kubelet/kubelet_node_status.go

    	replacedheartbeatTime := metav1.Time{}
    	for i := range conditionsCopy {
    		originalConditionsCopy[i].LastHeartbeatTime = replacedheartbeatTime
    		conditionsCopy[i].LastHeartbeatTime = replacedheartbeatTime
    		if !apiequality.Semantic.DeepEqual(&originalConditionsCopy[i], &conditionsCopy[i]) {
    			return true
    		}
    	}
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. pkg/scheduler/testing/wrappers.go

    	n.Status.Conditions = []v1.NodeCondition{
    		{
    			Type:               typ,
    			Status:             status,
    			Message:            message,
    			Reason:             reason,
    			LastHeartbeatTime:  metav1.Time{Time: time.Now()},
    			LastTransitionTime: metav1.Time{Time: time.Now()},
    		},
    	}
    	return n
    }
    
    // PersistentVolumeClaimWrapper wraps a PersistentVolumeClaim inside.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  3. 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)
  4. pkg/apis/core/zz_generated.deepcopy.go

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

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *NodeCondition) DeepCopyInto(out *NodeCondition) {
    	*out = *in
    	in.LastHeartbeatTime.DeepCopyInto(&out.LastHeartbeatTime)
    	in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeCondition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/core/v1/generated.pb.go

    		return "nil"
    	}
    	s := strings.Join([]string{`&NodeCondition{`,
    		`Type:` + fmt.Sprintf("%v", this.Type) + `,`,
    		`Status:` + fmt.Sprintf("%v", this.Status) + `,`,
    		`LastHeartbeatTime:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.LastHeartbeatTime), "Time", "v1.Time", 1), `&`, ``, 1) + `,`,
    		`LastTransitionTime:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.LastTransitionTime), "Time", "v1.Time", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  10. 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