Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for transitioningTo (0.26 sec)

  1. src/runtime/mgclimit.go

    	//
    	// gcBlackenEnabled isn't used directly so as to keep this structure
    	// unit-testable.
    	gcEnabled bool
    
    	// transitioning is true when the GC is in a STW and transitioning between
    	// the mark and sweep phases.
    	transitioning bool
    
    	// test indicates whether this instance of the struct was made for testing purposes.
    	test bool
    
    	bucket struct {
    		// Invariants:
    		// - fill >= 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/runtime/tracestatus.go

    	}
    	return w
    }
    
    // writeProcStatusForP emits a ProcStatus event for the provided p based on its status.
    //
    // The caller must fully own pp and it must be prevented from transitioning (e.g. this can be
    // called by a forEachP callback or from a STW).
    func (w traceWriter) writeProcStatusForP(pp *p, inSTW bool) traceWriter {
    	if !pp.trace.acquireStatus(w.gen) {
    		return w
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/kubelet/status/status_manager_test.go

    			false,
    			func(input v1.PodStatus) v1.PodStatus { return input },
    			func(input v1.PodStatus) v1.PodStatus { return input },
    			getPodStatus(),
    		},
    		{
    			"add DisruptionTarget condition when transitioning into failed phase; PodDisruptionConditions enabled",
    			true,
    			false,
    			func(input v1.PodStatus) v1.PodStatus { return input },
    			func(input v1.PodStatus) v1.PodStatus {
    				input.Phase = v1.PodFailed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top