Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for transitioningTo (0.27 sec)

  1. 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)
  2. src/runtime/nonwindows_stub.go

    // precision of timers, this should be enough larger than the relaxed
    // timer precision to keep the timer error acceptable.
    const osRelaxMinNS = 0
    
    var haveHighResSleep = true
    
    // osRelax is called by the scheduler when transitioning to and from
    // all Ps being idle.
    func osRelax(relax bool) {}
    
    // enableWER is called by setTraceback("wer").
    // Windows Error Reporting (WER) is only supported on Windows.
    func enableWER() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 03:12:13 UTC 2024
    - 962 bytes
    - Viewed (0)
  3. src/runtime/cgo/abi_loong64.h

    // Copyright 2022 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 ABI0.
    //
    // These macros save and restore the callee-saved registers
    // from the stack, but they don't adjust stack pointer, so
    // the user should prepare stack space in advance.
    // SAVE_R22_TO_R31(offset) saves R22 ~ R31 to the stack space
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 02:34:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. docs/bucket/lifecycle/README.md

    ```
    
    ## 4. Enable ILM transition feature
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/endpointslice_test.go

    	}
    	cache.Update(hostname, "slice2", []*model.IstioEndpoint{ep3})
    	if !testEndpointsEqual(cache.Get(hostname), []*model.IstioEndpoint{ep1, ep2, ep3}) {
    		t.Fatalf("unexpected endpoints")
    	}
    
    	// dedup when transitioning
    	cache.Update(hostname, "slice2", []*model.IstioEndpoint{ep2, ep3})
    	if !testEndpointsEqual(cache.Get(hostname), []*model.IstioEndpoint{ep1, ep2, ep3}) {
    		t.Fatalf("unexpected endpoints")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
Back to top