Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for transitioningTo (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top