Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for Transition (0.29 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    }
    
    func (v transitionRuleMatcher) matches(cr CompilationResult) bool {
    	return cr.UsesOldSelf == bool(v)
    }
    
    func (v transitionRuleMatcher) String() string {
    	if v {
    		return "is a transition rule"
    	}
    	return "is not a transition rule"
    }
    
    func TestCelCompilation(t *testing.T) {
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, apiextensionsfeatures.CRDValidationRatcheting, true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,7,opt,name=lastTransitionTime"`
    	// The reason for the condition's last transition.
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    	// A human readable message indicating details about the transition.
    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    				if currentReadyCondition.Status != v1.ConditionTrue && observedReadyCondition.Status == v1.ConditionTrue {
    					// If error happened during node status transition (Ready -> NotReady)
    					// we need to mark node for retry to force MarkPodsNotReady execution
    					// in the next iteration.
    					nc.nodesToRetry.Store(node.Name, struct{}{})
    				}
    				return
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    // An mspan representing actual memory has state mSpanInUse,
    // mSpanManual, or mSpanFree. Transitions between these states are
    // constrained as follows:
    //
    //   - A span may transition from free to in-use or manual during any GC
    //     phase.
    //
    //   - During sweeping (gcphase == _GCoff), a span may transition from
    //     in-use to free (as a result of sweeping) or manual to free (as a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"message":            "message is a human readable message indicating details about the transition. This may be an empty string.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  6. src/time/time.go

    //
    // A daylight savings time transition skips or repeats times.
    // For example, in the United States, March 13, 2011 2:15am never occurred,
    // while November 6, 2011 1:15am occurred twice. In such cases, the
    // choice of time zone, and therefore the time, is not well-defined.
    // Date returns a time that is correct in one of the two zones involved
    // in the transition, but it does not guarantee which.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// Status of the condition, one of True, False, Unknown.
    	Status ConditionStatus `json:"status"`
    	// (brief) machine readable reason for the condition's last transition.
    	// +optional
    	Reason string `json:"reason,omitempty"`
    	// Human readable message indicating details about last transition.
    	// +optional
    	Message string `json:"message,omitempty"`
    }
    
    type RowConditionType string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    							"field": "value2",
    						},
    					},
    				},
    
    				expectError{
    					applyPatchOperation{
    						"noop update field fails, since oldself is not null and transition rules are not ratcheted",
    						myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    							"field": "value",
    						},
    					},
    				},
    			},
    		},
    		// Features that should not ratchet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    	// and maxSmallSize will be considered large, even though they might fit in
    	// a size class. In practice this is completely fine, since the largest small
    	// size class has a single object in it already, precisely to make the transition
    	// to large objects smooth.
    	if size <= maxSmallSize-mallocHeaderSize {
    		if noscan && size < maxTinySize {
    			// Tiny allocator.
    			//
    			// Tiny allocator combines several tiny allocation requests
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

            },
            "message": {
              "description": "message is a human-readable message indicating details about last transition.",
              "type": "string"
            },
            "reason": {
              "description": "reason is a unique, one-word, CamelCase reason for the condition's last transition.",
              "type": "string"
            },
            "status": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
Back to top