Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 585 for transitionTo (0.18 sec)

  1. src/internal/trace/testtrace/validation.go

    }
    
    func (v *Validator) getOrCreateThread(e *errAccumulator, ev trace.Event, m trace.ThreadID) *schedContext {
    	lenient := func() bool {
    		// Be lenient about GoUndetermined -> GoSyscall transitions if they
    		// originate from an old trace. These transitions lack thread
    		// information in trace formats older than 1.22.
    		if !v.Go121 {
    			return false
    		}
    		if ev.Kind() != trace.EventStateTransition {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. pkg/apis/apiserverinternal/types.go

    	// +optional
    	ObservedGeneration int64
    	// Last time the condition transitioned from one status to another.
    	LastTransitionTime metav1.Time
    	// The reason for the condition's last transition.
    	// +required
    	Reason string
    	// A human readable message indicating details about the transition.
    	// +required
    	Message string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/model/StateTransitionControllerTest.groovy

                controller.transition(TestState.A, TestState.B, action)
            }
    
            then:
            def e = thrown(IllegalStateException)
            e.message == "Cannot transition <state> to state B as already transitioning to this state."
    
            1 * action.run() >> {
                controller.transition(TestState.A, TestState.B, {})
            }
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/apiserverinternal/v1alpha1/generated.proto

      optional int64 observedGeneration = 3;
    
      // Last time the condition transitioned from one status to another.
      // +required
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 4;
    
      // The reason for the condition's last transition.
      // +required
      optional string reason = 5;
    
      // A human readable message indicating details about the transition.
      // +required
      optional string message = 6;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/openapi/enablement_test.go

    						SchemaProps: spec.SchemaProps{
    							Description: "Last time the condition transitioned from one status to another.",
    							Default:     map[string]interface{}{},
    							Ref:         ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"),
    						},
    					},
    					"reason": {
    						SchemaProps: spec.SchemaProps{
    							Description: "The reason for the condition's last transition.",
    							Type:        []string{"string"},
    							Format:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. cmd/bucket-lifecycle_test.go

    			expectedErr: errInvalidStorageClass,
    		},
    		{
    			// no transition rule
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 31 09:57:57 UTC 2022
    - 7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	"status":             "Status of the condition, one of True, False, Unknown.",
    	"lastTransitionTime": "Last time the condition transitioned from one status to another.",
    	"reason":             "The reason for the condition's last transition.",
    	"message":            "A human readable message indicating details about the transition.",
    }
    
    func (DaemonSetCondition) SwaggerDoc() map[string]string {
    	return map_DaemonSetCondition
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"status":             "Status of the condition, one of True, False, Unknown.",
    	"lastTransitionTime": "Last time the condition transitioned from one status to another.",
    	"reason":             "The reason for the condition's last transition.",
    	"message":            "A human readable message indicating details about the transition.",
    }
    
    func (DaemonSetCondition) SwaggerDoc() map[string]string {
    	return map_DaemonSetCondition
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  9. src/internal/trace/summary.go

    	switch ev.Kind() {
    	// Record sync time for the RangeActive events.
    	case EventSync:
    		s.syncTs = ev.Time()
    
    	// Handle state transitions.
    	case EventStateTransition:
    		st := ev.StateTransition()
    		switch st.Resource.Kind {
    		// Handle goroutine transitions, which are the meat of this computation.
    		case ResourceGoroutine:
    			id := st.Resource.Goroutine()
    			old, new := st.Goroutine()
    			if old == new {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apiserverinternal/v1alpha1/generated.proto

      optional int64 observedGeneration = 3;
    
      // Last time the condition transitioned from one status to another.
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 4;
    
      // The reason for the condition's last transition.
      // +required
      optional string reason = 5;
    
      // A human readable message indicating details about the transition.
      // +required
      optional string message = 6;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top