Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for workerCh (0.16 sec)

  1. cluster/gce/windows/k8s-node-setup.psm1

        # for the bug where the logging agent cannot start up if the file is
        # corrupted.
        Remove-Item `
          -Force `
          -ErrorAction Ignore `
          ("$STACKDRIVER_ROOT\LoggingAgent\Main\pos\winevtlog.pos\worker0\" +
           "storage.json")
        Log-Output ("Skip: Stackdriver logging agent is already installed")
        return
      }
    
      if (IsLoggingAgentInstalled) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  2. src/os/os_test.go

    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			<-hold
    			err := RemoveAll(root)
    			if err != nil {
    				t.Errorf("unexpected error: %T, %q", err, err)
    			}
    		}()
    	}
    	close(hold) // let workers race to remove root
    	wg.Wait()
    }
    
    // Test that reading from a pipe doesn't use up a thread.
    func TestPipeThreads(t *testing.T) {
    	switch runtime.GOOS {
    	case "illumos", "solaris":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    		// time so we can track it for the GC CPU limiter.
    		//
    		// Limiter event tracking might be disabled if we end up here
    		// while on a mark worker.
    		start := nanotime()
    		track := pp.limiterEvent.start(limiterEventScavengeAssist, start)
    
    		// Scavenge, but back out if the limiter turns on.
    		released := h.pages.scavenge(bytesToScavenge, func() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top