Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for transitioningTo (0.25 sec)

  1. pkg/controller/job/backoff_utils.go

    // 3. if the pod has been deleted, use the `deletionTimestamp - grace_period` to estimate the moment of deletion
    // 4. fallback to pod's creation time
    //
    // Pods owned by Kubelet are marked with Ready=False condition when
    // transitioning to terminal phase, thus being handled by (1.) or (2.).
    // Orphaned pods are deleted by PodGC, thus being handled by (3.).
    func getFinishedTime(p *v1.Pod) time.Time {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/internal/trace/resources.go

    	Reason string
    
    	// Stack is the stack trace of the resource making the state transition.
    	//
    	// This is distinct from the result (Event).Stack because it pertains to
    	// the transitioning resource, not any of the ones executing the event
    	// this StateTransition came from.
    	//
    	// An example of this difference is the NotExist -> Runnable transition for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. src/cmd/trace/pprof.go

    				if new == state && trackReason(st.Reason) {
    					tracking[id] = ev
    				}
    				continue
    			}
    			// We're tracking this goroutine.
    			if new == state {
    				// We're tracking this goroutine, but it's just transitioning
    				// to the same state (this is a no-ip
    				continue
    			}
    			// The goroutine has transitioned out of the state we care about,
    			// so remove it from tracking and record the stack.
    			delete(tracking, id)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

        @Override
        public GradleInternal getGradle() {
            // Should not ignore other threads, however it is currently possible for this to be queried by tasks at execution time (that is, when another thread is
            // transitioning the task graph state). Instead, it may be better to:
            // - have the threads use some specific immutable view of the build model state instead of requiring direct access to the build model.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

        public void transition(ModelNodeInternal node, ModelNode.State desired, boolean laterOk) {
            ModelPath path = node.getPath();
            ModelNode.State state = node.getState();
    
            LOGGER.debug("Project {} - Transitioning model element '{}' from state {} to {}", projectPath, path, state.name(), desired.name());
    
            if (desired.ordinal() < state.ordinal()) {
                if (laterOk) {
                    return;
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  6. src/runtime/preempt.go

    		case _Gcopystack:
    			// The stack is being copied. We need to wait
    			// until this is done.
    
    		case _Gpreempted:
    			// We (or someone else) suspended the G. Claim
    			// ownership of it by transitioning it to
    			// _Gwaiting.
    			if !casGFromPreempted(gp, _Gpreempted, _Gwaiting) {
    				break
    			}
    
    			// We stopped the G, so we have to ready it later.
    			stopped = true
    
    			s = _Gwaiting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/runtime/runtime2.go

    	// _Pidle means a P is not being used to run user code or the
    	// scheduler. Typically, it's on the idle P list and available
    	// to the scheduler, but it may just be transitioning between
    	// other states.
    	//
    	// The P is owned by the idle list or by whatever is
    	// transitioning its state. Its run queue is empty.
    	_Pidle = iota
    
    	// _Prunning means a P is owned by an M and is being used to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	}
    	if _, f := e.endpointsByServiceAndSlice[hostname]; !f {
    		e.endpointsByServiceAndSlice[hostname] = make(map[string][]*model.IstioEndpoint)
    	}
    	// We will always overwrite. A conflict here means an endpoint is transitioning
    	// from one slice to another See
    	// https://github.com/kubernetes/website/blob/master/content/en/docs/concepts/services-networking/endpoint-slices.md#duplicate-endpoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. src/runtime/trace.go

    	// enabled if gen != 0. This is used as an optimistic fast path check.
    	//
    	// Transitioning this value from true -> false is easy (once gen is 0)
    	// because it's OK for enabled to have a stale "true" value. traceAcquire will
    	// always double-check gen.
    	//
    	// Transitioning this value from false -> true is harder. We need to make sure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. cmd/data-scanner.go

    func applyExpiryRule(event lifecycle.Event, src lcEventSrc, obj ObjectInfo) bool {
    	globalExpiryState.enqueueByDays(obj, event, src)
    	return true
    }
    
    // Perform actions (removal or transitioning of objects), return true the action is successfully performed
    func applyLifecycleAction(event lifecycle.Event, src lcEventSrc, obj ObjectInfo) (success bool) {
    	switch action := event.Action; action {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
Back to top