Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for transitioningTo (0.36 sec)

  1. src/runtime/proc.go

    		gp.trackingStamp = now
    	case _Grunnable:
    		// We just transitioned into runnable, so record what
    		// time that happened.
    		now := nanotime()
    		gp.trackingStamp = now
    	case _Grunning:
    		// We're transitioning into running, so turn off
    		// tracking and record how much time we spent in
    		// runnable.
    		gp.tracking = false
    		sched.timeToRun.record(gp.runnableTime)
    		gp.runnableTime = 0
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    		// * a transition to the Unknown state. Prior to this fix, a container would make an invalid transition
    		// * from Running->Waiting. This test validates the correct behavior of transitioning from Running->Terminated.
    		{
    			containers: []v1.Container{{Name: "unknown"}},
    			statuses: []*kubecontainer.Status{
    				{
    					Name:  "unknown",
    					State: kubecontainer.ContainerStateUnknown,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top