Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 108 for lastProbeTime (0.44 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodStatusResult.json

            "subresource": "subresourceValue"
          }
        ]
      },
      "status": {
        "phase": "phaseValue",
        "conditions": [
          {
            "type": "typeValue",
            "status": "statusValue",
            "lastProbeTime": "2003-01-01T01:01:01Z",
            "lastTransitionTime": "2004-01-01T01:01:01Z",
            "reason": "reasonValue",
            "message": "messageValue"
          }
        ],
        "message": "messageValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodStatusResult.yaml

        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    status:
      conditions:
      - lastProbeTime: "2003-01-01T01:01:01Z"
        lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
      containerStatuses:
      - allocatedResources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    				Status:             "newStatus",
    				LastProbeTime:      metav1.NewTime(time.Date(2020, 5, 13, 1, 1, 1, 1, time.UTC)),
    				LastTransitionTime: metav1.NewTime(time.Date(2020, 5, 12, 1, 1, 1, 1, time.UTC)),
    				Reason:             "newReason",
    				Message:            "newMessage",
    			},
    			expectedPatchRequests:    1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. pkg/api/v1/pod/util.go

    	}
    
    	isEqual := condition.Status == oldCondition.Status &&
    		condition.Reason == oldCondition.Reason &&
    		condition.Message == oldCondition.Message &&
    		condition.LastProbeTime.Equal(&oldCondition.LastProbeTime) &&
    		condition.LastTransitionTime.Equal(&oldCondition.LastTransitionTime)
    
    	status.Conditions[conditionIndex] = *condition
    	// Return true if one of the fields have changed.
    	return !isEqual
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 17:18:04 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/types.go

    	// +optional
    	StartTime *metav1.Time
    }
    
    type CarpCondition struct {
    	Type   CarpConditionType
    	Status ConditionStatus
    	// +optional
    	LastProbeTime metav1.Time
    	// +optional
    	LastTransitionTime metav1.Time
    	// +optional
    	Reason string
    	// +optional
    	Message string
    }
    
    // CarpSpec is a description of a carp
    type CarpSpec struct {
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/example/types.go

    	// This is before the Kubelet pulled the container image(s) for the pod.
    	// +optional
    	StartTime *metav1.Time
    }
    
    type PodCondition struct {
    	Type   PodConditionType
    	Status ConditionStatus
    	// +optional
    	LastProbeTime metav1.Time
    	// +optional
    	LastTransitionTime metav1.Time
    	// +optional
    	Reason string
    	// +optional
    	Message string
    }
    
    // PodSpec is a description of a pod
    type PodSpec struct {
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 5.1K bytes
    - Viewed (0)
  7. pkg/apis/batch/v1/zz_generated.conversion.go

    	out.Type = batch.JobConditionType(in.Type)
    	out.Status = core.ConditionStatus(in.Status)
    	out.LastProbeTime = in.LastProbeTime
    	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: Thu Mar 07 20:49:09 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  8. pkg/apis/batch/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *JobCondition) DeepCopyInto(out *JobCondition) {
    	*out = *in
    	in.LastProbeTime.DeepCopyInto(&out.LastProbeTime)
    	in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobCondition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. pilot/pkg/status/distribution/state.go

    	needsReconcile := false
    	desiredCondition := v1alpha1.IstioCondition{
    		Type:               "Reconciled",
    		Status:             boolToConditionStatus(desired.AckedInstances == desired.TotalInstances),
    		LastProbeTime:      timestamppb.Now(),
    		LastTransitionTime: timestamppb.Now(),
    		Message:            fmt.Sprintf("%d/%d proxies up to date.", desired.AckedInstances, desired.TotalInstances),
    	}
    	current = current.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *JobCondition) DeepCopyInto(out *JobCondition) {
    	*out = *in
    	in.LastProbeTime.DeepCopyInto(&out.LastProbeTime)
    	in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobCondition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top