Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 219 for Transition (0.14 sec)

  1. common-protos/k8s.io/api/apps/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // The reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // A human readable message indicating details about the transition.
      // +optional
      optional string message = 5;
    }
    
    // DaemonSetList is a collection of daemon sets.
    message DaemonSetList {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. pkg/apis/apps/types.go

    	Status api.ConditionStatus
    	// The last time this condition was updated.
    	LastTransitionTime metav1.Time
    	// The reason for the condition's last transition.
    	Reason string
    	// A human readable message indicating details about the transition.
    	Message string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // StatefulSetList is a collection of StatefulSets.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // The reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // A human readable message indicating details about the transition.
      // +optional
      optional string message = 5;
    }
    
    // DaemonSetList is a collection of daemon sets.
    message DaemonSetList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. src/net/http/httptest/server.go

    			if oldState, ok := s.conns[c]; ok {
    				if oldState != http.StateNew && oldState != http.StateIdle {
    					panic("invalid state transition")
    				}
    				s.conns[c] = cs
    			}
    		case http.StateIdle:
    			if oldState, ok := s.conns[c]; ok {
    				if oldState != http.StateActive {
    					panic("invalid state transition")
    				}
    				s.conns[c] = cs
    			}
    			if s.closed {
    				s.closeConn(c)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	BackupManifestPath(component string) string
    	// BackupManifestDir should point to the backup directory used for backuping manifests during the transition
    	BackupManifestDir() string
    	// BackupEtcdDir should point to the backup directory used for backuping manifests during the transition
    	BackupEtcdDir() string
    	// CleanupDirs cleans up all temporary directories
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation_test.go

    					oldObject: map[string]interface{}{"field": "x"},
    					expectErrs: []string{
    						`field: Invalid value: "string": failed rule: self == oldSelf`,
    					}},
    			},
    		},
    		{name: "correlatable transition rule",
    			// Ensures a transition rule under a "listMap" is supported.
    			schema: apiextensions.JSONSchemaProps{
    				Type: "object",
    				Properties: map[string]apiextensions.JSONSchemaProps{
    					"field": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 04:49:59 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  7. cmd/erasure-metadata_test.go

    		}
    		actual := fi.TransitionInfoEquals(ofi)
    		if i == 0 && !actual {
    			t.Fatalf("Test %d: Expected FileInfo's transition info to be equal: fi %v ofi %v", i, fi, ofi)
    		}
    		if i != 0 && actual {
    			t.Fatalf("Test %d: Expected FileInfo's transition info to be inequal: fi %v ofi %v", i, fi, ofi)
    		}
    	}
    	fi := FileInfo{
    		TransitionTier:      inputs[0].tier,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 20:57:37 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. pkg/kubelet/status/status_manager.go

    				// is terminal. This avoids sending an unnecessary patch request to add
    				// the condition if the actual status phase transition is delayed.
    				if transitioningToTerminalPhase && !couldHaveRunningContainers {
    					// update the LastTransitionTime again here because the older transition
    					// time set in updateStatusInternal is likely stale as sending of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // The reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // A human readable message indicating details about the transition.
      // +optional
      optional string message = 5;
    }
    
    // DaemonSetList is a collection of daemon sets.
    message DaemonSetList {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // The reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // A human readable message indicating details about the transition.
      // +optional
      optional string message = 5;
    }
    
    // DaemonSetList is a collection of daemon sets.
    message DaemonSetList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
Back to top