Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setReady (0.12 sec)

  1. src/runtime/mgcpacer.go

    	scan := c.heapScan.Load()
    	work := c.heapScanWork.Load() + c.stackScanWork.Load() + c.globalsScanWork.Load()
    
    	// Assume we're under the soft goal. Pace GC to complete at
    	// heapGoal assuming the heap is in steady-state.
    	heapGoal := int64(c.heapGoal())
    
    	// The expected scan work is computed as the amount of bytes scanned last
    	// GC cycle (both heap and stack), plus our estimate of globals work for this cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/manager_test.go

    		originalCallback(resourceName, devices)
    		updateChan <- new(interface{})
    	}
    	activePods := func() []*v1.Pod {
    		return []*v1.Pod{}
    	}
    
    	// test steady state, initialization where sourcesReady, containerMap and containerRunningSet
    	// are relevant will be tested with a different flow
    	err = w.Start(activePods, &sourcesReadyStub{}, containermap.NewContainerMap(), sets.New[string]())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    	// that some future caller of find *must* observe the new high index. That caller
    	// (or any other racing with it), then makes searchAddr positive before continuing, bringing
    	// us back to our monotonically decreasing steady-state.
    	//
    	// A pageAlloc lock serializes updates between min, max, and searchAddr, so abs(searchAddr)
    	// is always guaranteed to be >= min and < max (converted to heap addresses).
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	}
    
    	for desc, test := range map[string]struct {
    		mutatePodFn    func(*v1.Pod)
    		mutateStatusFn func(*kubecontainer.PodStatus)
    		actions        podActions
    	}{
    		"steady state; do nothing; ignore ephemeral container": {
    			actions: noAction,
    		},
    		"No ephemeral containers running; start one": {
    			mutateStatusFn: func(status *kubecontainer.PodStatus) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top