Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for transitioningTo (0.28 sec)

  1. src/runtime/stack.go

    	// of the G's stack. Note: it's safe to access gp.waitreason here.
    	// We're only checking if this is true if we took ownership of the
    	// G with the _Gscan bit. This prevents the goroutine from transitioning,
    	// which prevents gp.waitreason from changing.
    	if traceEnabled() && readgstatus(gp)&^_Gscan == _Gwaiting && gp.waitreason.isWaitingForGC() {
    		return false
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. 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)
  3. src/runtime/mprof.go

    	if readgstatus(gp1) == _Gdead {
    		// Dead goroutines should not appear in the profile. Goroutines that
    		// start while profile collection is active will get goroutineProfiled
    		// set to goroutineProfileSatisfied before transitioning out of _Gdead,
    		// so here we check _Gdead first.
    		return
    	}
    	if isSystemGoroutine(gp1, true) {
    		// System goroutines should not appear in the profile. (The finalizer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool.go

    	object = encodeDirObject(object)
    	if z.SinglePool() {
    		return z.serverPools[0].TransitionObject(ctx, bucket, object, opts)
    	}
    
    	// Avoid transitioning an object from a pool being decommissioned.
    	opts.SkipDecommissioned = true
    	idx, err := z.getPoolIdxExistingWithOpts(ctx, bucket, object, opts)
    	if err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  5. 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)
  6. RELEASE.md

        TensorFlow's core.
    *   Improved multi-threaded performance of `batch_matmul`.
    *   LSTMCell, BasicLSTMCell, and MultiRNNCell constructors now default to
        `state_is_tuple=True`. For a quick fix while transitioning to the new
        default, simply pass the argument `state_is_tuple=False`.
    *   DeviceFactory's AddDevices and CreateDevices functions now return a Status
        instead of void.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"evictionPressureTransitionPeriod": {
    						SchemaProps: spec.SchemaProps{
    							Description: "evictionPressureTransitionPeriod is the duration for which the kubelet has to wait before transitioning out of an eviction pressure condition. Default: \"5m\"",
    							Ref:         ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"),
    						},
    					},
    					"evictionMaxPodGracePeriod": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top