Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for transitioningTo (0.25 sec)

  1. android/guava/src/com/google/common/util/concurrent/Service.java

        NEW,
    
        /** A service in this state is transitioning to {@link #RUNNING}. */
        STARTING,
    
        /** A service in this state is operational. */
        RUNNING,
    
        /** A service in this state is transitioning to {@link #TERMINATED}. */
        STOPPING,
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/Service.java

        NEW,
    
        /** A service in this state is transitioning to {@link #RUNNING}. */
        STARTING,
    
        /** A service in this state is operational. */
        RUNNING,
    
        /** A service in this state is transitioning to {@link #TERMINATED}. */
        STOPPING,
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. docs/distributed/DECOMMISSION.md

    ## NOTE
    
    - Empty delete markers (such as for objects with no other successor versions) do not transition to the new pool to avoid creating empty metadata on the other pool(s). If you believe transitioning empty delete markers is required, open a GitHub issue.
    
    ## TODO
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 11 14:59:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. src/runtime/cgo/abi_ppc64x.h

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Macros for transitioning from the host ABI to Go ABI
    //
    // On PPC64/ELFv2 targets, the following registers are callee
    // saved when called from C. They must be preserved before
    // calling into Go which does not preserve any of them.
    //
    //	R14-R31
    //	CR2-4
    //	VR20-31
    //	F14-F31
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 03 20:17:02 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/types.go

    	fsStatsImages fsStatsType = "images"
    )
    
    // Config holds information about how eviction is configured.
    type Config struct {
    	// PressureTransitionPeriod is duration the kubelet has to wait before transitioning out of a pressure condition.
    	PressureTransitionPeriod time.Duration
    	// Maximum allowed grace period (in seconds) to use when terminating pods in response to a soft eviction threshold being met.
    	MaxPodGracePeriodSeconds int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/mgclimit_test.go

    			t.Fatal("doesn't need update even though updated 1.5 periods ago")
    		}
    		l.Update(advance(0))
    		if l.NeedUpdate(advance(0)) {
    			t.Fatal("need update even though just updated")
    		}
    
    		// Test transitioning the bucket to enable the GC.
    
    		l.StartGCTransition(true, advance(109*time.Millisecond))
    		l.FinishGCTransition(advance(2*time.Millisecond + 1*time.Microsecond))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 16:02:20 UTC 2022
    - 9K bytes
    - Viewed (0)
  10. 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)
Back to top