Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 165 for Transition (0.27 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/openapi/enablement_test.go

    						SchemaProps: spec.SchemaProps{
    							Description: "The reason for the condition's last transition.",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"message": {
    						SchemaProps: spec.SchemaProps{
    							Description: "A human readable message indicating details about the 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)
  2. src/cmd/trace/gstate.go

    	// transition to GoRunning.
    	startRunningTime trace.Time
    
    	// startSyscall is the most recent event that caused a goroutine to
    	// transition to GoSyscall.
    	syscall struct {
    		time   trace.Time
    		stack  trace.Stack
    		active bool
    	}
    
    	// startBlockReason is the StateTransition.Reason of the most recent
    	// event that caused a goroutine to transition to GoWaiting.
    	startBlockReason string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. src/internal/trace/summary_test.go

    			}
    			if old, _ := st.Goroutine(); old != trace.GoNotExist && old != trace.GoUndetermined {
    				t.Errorf("expected transition from GoNotExist or GoUndetermined, got transition from %s instead", old)
    			}
    		}
    	default:
    		t.Errorf("unexpected want start event type: %s", wantStart)
    	}
    
    	switch wantEnd {
    	case trace.EventBad:
    		if region.End != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

                    // Transition any other nodes that depend on the predecessor state
                    dependencies.add(new TransitionDependents(predecessor));
                    seenPredecessor = true;
                    return false;
                }
                if (node == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  5. src/runtime/mgclimit.go

    	// N.B. finishGCTransition releases the lock.
    	//
    	// We don't release here to increase the chance that if there's a failure
    	// to finish the transition, that we throw on failing to acquire the lock.
    }
    
    // finishGCTransition notifies the limiter that the GC transition is complete
    // and releases ownership of it. It also accumulates STW time in the bucket.
    // now must be the timestamp from the end of the STW pause.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

         * correctly installed
         *
         * <p>{@link #transitioned}: is set by {@link #transitionService} to indicate that some
         * transition has been performed.
         *
         * <p>Together, they allow us to enforce that all services have their listeners installed prior
         * to any service performing a transition, then we can fail in the ServiceManager constructor
         * rather than in a Service.Listener callback.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/eviction_manager_test.go

    	// we should have memory pressure (because transition period not yet met)
    	if !manager.IsUnderMemoryPressure() {
    		t.Errorf("Manager should report memory pressure")
    	}
    
    	// no pod should have been killed
    	if podKiller.pod != nil {
    		t.Errorf("Manager chose to kill pod: %v when no pod should have been killed", podKiller.pod.Name)
    	}
    
    	// move the clock past transition period to ensure that we stop reporting pressure
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ServiceManager.java

         * correctly installed
         *
         * <p>{@link #transitioned}: is set by {@link #transitionService} to indicate that some
         * transition has been performed.
         *
         * <p>Together, they allow us to enforce that all services have their listeners installed prior
         * to any service performing a transition, then we can fail in the ServiceManager constructor
         * rather than in a Service.Listener callback.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"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
    }
    
    var map_DaemonSetList = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/pilot.libsonnet

            'Push Errors', queries.xdsErrors, |||
              Number of push errors. Many of these are at least potentional fatal and should be explored in-depth via Istiod logs.
              Note: metrics here do not use rate() to avoid missing transition from "No series"; series are not reported if there are no errors at all.
            |||
          ),
          panels.heatmap.base(
            'Push Time', queries.pushTime, |||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top