Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 584 for lastTransitionTime (0.18 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/networking.k8s.io.v1alpha1.ServiceCIDR.yaml

        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      cidrs:
      - cidrsValue
    status:
      conditions:
      - lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        observedGeneration: 3
        reason: reasonValue
        status: statusValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Namespace.json

        "finalizers": [
          "finalizersValue"
        ]
      },
      "status": {
        "phase": "phaseValue",
        "conditions": [
          {
            "type": "typeValue",
            "status": "statusValue",
            "lastTransitionTime": "2004-01-01T01:01:01Z",
            "reason": "reasonValue",
            "message": "messageValue"
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. pkg/apis/apps/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *DaemonSetCondition) DeepCopyInto(out *DaemonSetCondition) {
    	*out = *in
    	in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DaemonSetCondition.
    func (in *DaemonSetCondition) DeepCopy() *DaemonSetCondition {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 24.7K bytes
    - Viewed (0)
  4. pkg/api/testing/node_example.json

            },
            "conditions": [
                {
                    "type": "Ready",
                    "status": "True",
                    "lastHeartbeatTime": "2015-04-22T11:58:17Z",
                    "lastTransitionTime": "2015-04-22T11:49:52Z",
                    "reason": "kubelet is posting ready status"
                }
            ],
            "addresses": [
                {
                    "type": "ExternalIP",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 00:36:50 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.yaml

        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec: {}
    status:
      commonEncodingVersion: commonEncodingVersionValue
      conditions:
      - lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        observedGeneration: 3
        reason: reasonValue
        status: statusValue
        type: typeValue
      storageVersions:
      - apiServerID: apiServerIDValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.json

          }
        ],
        "commonEncodingVersion": "commonEncodingVersionValue",
        "conditions": [
          {
            "type": "typeValue",
            "status": "statusValue",
            "observedGeneration": 3,
            "lastTransitionTime": "2004-01-01T01:01:01Z",
            "reason": "reasonValue",
            "message": "messageValue"
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta2/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *DaemonSetCondition) DeepCopyInto(out *DaemonSetCondition) {
    	*out = *in
    	in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DaemonSetCondition.
    func (in *DaemonSetCondition) DeepCopy() *DaemonSetCondition {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:00 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/example/v1/zz_generated.conversion.go

    	out.Type = example.PodConditionType(in.Type)
    	out.Status = example.ConditionStatus(in.Status)
    	out.LastProbeTime = in.LastProbeTime
    	out.LastTransitionTime = in.LastTransitionTime
    	out.Reason = in.Reason
    	out.Message = in.Message
    	return nil
    }
    
    // Convert_v1_PodCondition_To_example_PodCondition is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  9. pkg/kubelet/status/status_manager.go

    	if oldCondition != nil && condition.Status == oldCondition.Status {
    		lastTransitionTime = oldCondition.LastTransitionTime
    	}
    	condition.LastTransitionTime = lastTransitionTime
    }
    
    // deletePodStatus simply removes the given pod from the status cache.
    func (m *manager) deletePodStatus(uid types.UID) {
    	m.podStatusesLock.Lock()
    	defer m.podStatusesLock.Unlock()
    	delete(m.podStatuses, uid)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.json

                }
              ]
            }
          ]
        },
        "conditions": [
          {
            "type": "typeValue",
            "status": "statusValue",
            "observedGeneration": 3,
            "lastTransitionTime": "2004-01-01T01:01:01Z",
            "reason": "reasonValue",
            "message": "messageValue"
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 06:46:00 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top