Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for workerCh (0.2 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        }
    
        @Override
        public GradleExecuter withWorkerDaemonsExpirationDisabled() {
            return withCommandLineGradleOpts("-Dorg.gradle.workers.internal.disable-daemons-expiration=true");
        }
    
        @Override
        public boolean usesSharedDaemons() {
            return isSharedDaemons();
        }
    
        @Override
        public File getDaemonBaseDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/testing/testing.go

    	}
    
    	parseCpuList()
    
    	m.before()
    	defer m.after()
    
    	// Run tests, examples, and benchmarks unless this is a fuzz worker process.
    	// Workers start after this is done by their parent process, and they should
    	// not repeat this work.
    	if !*isFuzzWorker {
    		deadline := m.startAlarm()
    		haveExamples = len(m.examples) > 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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