Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 84 for Idle (0.05 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

            LOGGER.debug("Executing build {} in daemon client {pid={}}", buildId, processEnvironment.maybeGetPid());
    
            // Attempt to connect to an existing idle and compatible daemon
            int saneNumberOfAttempts = 100; //is it sane enough?
            for (int i = 1; i < saneNumberOfAttempts; i++) {
                final DaemonClientConnection connection = connector.connect(compatibilitySpec);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. src/runtime/runtime_test.go

    			b.ReportMetric(float64(latencies[len(latencies)*90/100]), "p90-ns")
    			b.ReportMetric(float64(latencies[len(latencies)*99/100]), "p99-ns")
    		}
    		return func(b *testing.B) {
    			b.Run("idle", runOne)
    
    			b.Run("loaded", func(b *testing.B) {
    				stop := applyGCLoad(b)
    				runOne(b)
    				// Make sure to stop the timer before we wait! The load created above
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/net/net.go

    	// The error's Timeout method will return true, but note that there
    	// are other possible errors for which the Timeout method will
    	// return true even if the deadline has not been exceeded.
    	//
    	// An idle timeout can be implemented by repeatedly extending
    	// the deadline after successful Read or Write calls.
    	//
    	// A zero value for t means I/O operations will not time out.
    	SetDeadline(t time.Time) error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. src/internal/trace/event.go

    		if go122.ProcStatus(e.base.extra(version.Go122)[0]) == go122.ProcSyscallAbandoned {
    			// We've lost information because this ProcSteal advanced on a
    			// SyscallAbandoned state. Treat the P as idle because ProcStatus
    			// treats SyscallAbandoned as Idle. Otherwise we'll have an invalid
    			// transition.
    			beforeState = ProcIdle
    		}
    		s = procStateTransition(ProcID(e.base.args[0]), beforeState, ProcIdle)
    	case go122.EvProcStatus:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/framework_test.go

    	r.ctrl.runningOperations.WaitForCompletion()
    	// Check every 10ms if the controller does something and stop if it's
    	// idle.
    	oldChanges := -1
    	for {
    		time.Sleep(10 * time.Millisecond)
    		changes := r.GetChangeCount()
    		if changes == oldChanges {
    			// No changes for last 10ms -> controller must be idle.
    			break
    		}
    		oldChanges = changes
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    		"during this window all incoming requests will be rejected with a status code 429 and a 'Retry-After' response header, "+
    		"in addition 'Connection: close' response header is set in order to tear down the TCP connection when idle.")
    
    	fs.DurationVar(&s.ShutdownWatchTerminationGracePeriod, "shutdown-watch-termination-grace-period", s.ShutdownWatchTerminationGracePeriod, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

         *
         * Only makes sense for forking executers.
         *
         * @return this executer
         */
        GradleExecuter withDefaultLocale(Locale defaultLocale);
    
        /**
         * Set the number of seconds an idle daemon should live for.
         *
         * @return this executer
         */
        GradleExecuter withDaemonIdleTimeoutSecs(int secs);
    
        /**
         * Set the working space for any daemons used by the builds.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    }
    
    func (cqs *ctlrTestQueueSet) StartRequest(ctx context.Context, width *fcrequest.WorkEstimate, hashValue uint64, flowDistinguisher, fsName string, descr1, descr2 interface{}, queueNoteFn fq.QueueNoteFn) (req fq.Request, idle bool) {
    	cqs.cts.lock.Lock()
    	defer cqs.cts.lock.Unlock()
    	cqs.countActive++
    	if testDebugLogs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. src/net/tcpsock_test.go

    	}
    }
    
    func TestDialTCPDefaultKeepAlive(t *testing.T) {
    	ln := newLocalListener(t, "tcp")
    	defer ln.Close()
    
    	got := time.Duration(-1)
    	testHookSetKeepAlive = func(cfg KeepAliveConfig) { got = cfg.Idle }
    	defer func() { testHookSetKeepAlive = func(KeepAliveConfig) {} }()
    
    	c, err := DialTCP("tcp", nil, ln.Addr().(*TCPAddr))
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer c.Close()
    
    	if got != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  10. pkg/model/proxy.go

    	// TLSClientRootCert is the absolute path to client root cert file
    	TLSClientRootCert string `json:"TLS_CLIENT_ROOT_CERT,omitempty"`
    
    	CertBaseDir string `json:"BASE,omitempty"`
    
    	// IdleTimeout specifies the idle timeout for the proxy, in duration format (10s).
    	// If not set, default timeout is 1 hour.
    	IdleTimeout string `json:"IDLE_TIMEOUT,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top