Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for slowAbs (0.17 sec)

  1. pkg/kube/client.go

    	return c.version.Get()
    }
    
    func (c *client) ClusterID() cluster.ID {
    	return c.clusterID
    }
    
    // Wait for cache sync immediately, rather than with 100ms delay which slows tests
    // See https://github.com/kubernetes/kubernetes/issues/95262#issuecomment-703141573
    func fastWaitForCacheSync(stop <-chan struct{}, informerFactory informerfactory.InformerFactory) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. src/runtime/time.go

    	return t.modify(when, period, nil, nil, 0)
    }
    
    // cleanHead cleans up the head of the timer queue. This speeds up
    // programs that create and delete timers; leaving them in the heap
    // slows down heap operations.
    // The caller must have locked ts.
    func (ts *timers) cleanHead() {
    	ts.trace("cleanHead")
    	assertLockHeld(&ts.mu)
    	gp := getg()
    	for {
    		if len(ts.heap) == 0 {
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    			pkgs:     []string{"flag", "net", "os", "os/exec", "encoding/gob"},
    		})
    	// We don't want the following line, because it
    	// slows down all.bash (by 10 seconds on my laptop).
    	// The race builder should catch any error here, but doesn't.
    	// TODO(iant): Figure out how to catch this.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top