Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 108 for lastProbeTime (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/example/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *PodCondition) DeepCopyInto(out *PodCondition) {
    	*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 PodCondition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolumeClaim.yaml

      allocatedResourceStatuses:
        allocatedResourceStatusesKey: allocatedResourceStatusesValue
      allocatedResources:
        allocatedResourcesKey: "0"
      capacity:
        capacityKey: "0"
      conditions:
      - lastProbeTime: "2003-01-01T01:01:01Z"
        lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. pkg/api/v1/pod/util_test.go

    		Conditions: []v1.PodCondition{
    			{
    				Type:               v1.PodReady,
    				Status:             v1.ConditionTrue,
    				Reason:             "successfully",
    				Message:            "sync pod successfully",
    				LastProbeTime:      time,
    				LastTransitionTime: metav1.NewTime(time.Add(1000)),
    			},
    		},
    	}
    	tests := []struct {
    		status     *v1.PodStatus
    		conditions v1.PodCondition
    		expected   bool
    		desc       string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/example/v1/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *PodCondition) DeepCopyInto(out *PodCondition) {
    	*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 PodCondition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.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: Fri Dec 15 04:12:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    	Status ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=ConditionStatus"`
    	// Last time we probed the condition.
    	// +optional
    	LastProbeTime metav1.Time `json:"lastProbeTime,omitempty" protobuf:"bytes,3,opt,name=lastProbeTime"`
    	// Last time the condition transitioned from one status to another.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/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: Wed May 29 22:40:29 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. pilot/pkg/autoregistration/internal/health/controller.go

    	cond := &v1alpha1.IstioCondition{
    		Type: status.ConditionHealthy,
    		// last probe and transition are the same because
    		// we only send on transition in the agent
    		LastProbeTime:      timestamppb.Now(),
    		LastTransitionTime: timestamppb.Now(),
    	}
    	out := HealthCondition{
    		proxy:     proxy,
    		entryName: entryName,
    		condition: cond,
    	}
    	if event.Healthy {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/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: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.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: Fri Dec 15 04:12:07 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top