Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 455 for lastTransitionTime (0.41 sec)

  1. pilot/pkg/config/kube/gateway/conditions_test.go

    					Status:             metav1.ConditionTrue,
    					ObservedGeneration: 1,
    					LastTransitionTime: lastTransitionTime,
    					Message:            "Route was valid",
    				},
    				{
    					Type:               string(k8s.RouteConditionResolvedRefs),
    					Status:             metav1.ConditionTrue,
    					ObservedGeneration: 1,
    					LastTransitionTime: lastTransitionTime,
    					Message:            "All references resolved",
    				},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. pkg/registry/certificates/certificates/strategy_test.go

    						{Type: certapi.CertificateFailed, LastUpdateTime: now, LastTransitionTime: now},
    						{Type: certapi.CertificateDenied, LastUpdateTime: now, LastTransitionTime: later, Reason: "because1"},
    						{Type: certapi.CertificateApproved, LastUpdateTime: now, LastTransitionTime: later, Reason: "because2"},
    						{Type: certapi.CertificateDenied, LastUpdateTime: later, LastTransitionTime: later, Reason: "because3"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/apihelpers/helpers.go

    		return
    	}
    
    	if existingCondition.Status != newCondition.Status {
    		existingCondition.Status = newCondition.Status
    		existingCondition.LastTransitionTime = newCondition.LastTransitionTime
    	}
    
    	existingCondition.Reason = newCondition.Reason
    	existingCondition.Message = newCondition.Message
    }
    
    // GetFlowSchemaConditionByType gets conditions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status_test.go

    				assert.False(t, cond.LastTransitionTime.IsZero(), "LastTransitionTime for %v condition is zero", cond.Type)
    				updatedNode.Status.Conditions[i].LastHeartbeatTime = metav1.Time{}
    				updatedNode.Status.Conditions[i].LastTransitionTime = metav1.Time{}
    			}
    
    			// Version skew workaround. See: https://github.com/kubernetes/kubernetes/issues/16961
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apiserverinternal/v1alpha1/types.go

    	ObservedGeneration int64 `json:"observedGeneration,omitempty" protobuf:"varint,3,opt,name=observedGeneration"`
    	// Last time the condition transitioned from one status to another.
    	LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,4,opt,name=lastTransitionTime"`
    	// The reason for the condition's last transition.
    	// +required
    	Reason string `json:"reason" protobuf:"bytes,5,opt,name=reason"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/mismatch.status.yaml.golden

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: GatewayClass
    metadata:
      creationTimestamp: null
      name: istio
      namespace: default
    spec: null
    status:
      conditions:
      - lastTransitionTime: fake
        message: Handled by Istio controller
        reason: Accepted
        status: "True"
        type: Accepted
      supportedFeatures:
      - HTTPRouteFeatureA
      - HTTPRouteFeatureB
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 520 bytes
    - Viewed (0)
  7. pkg/controller/deployment/progress_test.go

    		Reason:             util.NewRSAvailableReason,
    		LastUpdateTime:     testTime,
    		LastTransitionTime: testTime,
    	}
    	replicaSetUpdated := apps.DeploymentCondition{
    		Type:               apps.DeploymentProgressing,
    		Status:             v1.ConditionTrue,
    		Reason:             util.ReplicaSetUpdatedReason,
    		LastUpdateTime:     testTime,
    		LastTransitionTime: testTime,
    	}
    
    	tests := []struct {
    		name            string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Namespace.yaml

        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      finalizers:
      - finalizersValue
    status:
      conditions:
      - 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: Fri Dec 15 04:12:07 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.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: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/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: Tue Oct 31 21:05:58 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top