Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 84 for Idle (0.09 sec)

  1. src/runtime/os_linux.go

    	// into (0,period].
    	//
    	// Otherwise, this would show up as a bias away from short-lived threads and
    	// from threads that are only occasionally active: for example, when the
    	// garbage collector runs on a mostly-idle system, the additional threads it
    	// activates may do a couple milliseconds of GC-related work and nothing
    	// else in the few seconds that the profiler observes.
    	spec := new(itimerspec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/status/server.go

    				DialContext:     d.DialContext,
    				// https://github.com/kubernetes/kubernetes/blob/0153febd9f0098d4b8d0d484927710eaf899ef40/pkg/probe/http/http.go#L55
    				// Match Kubernetes logic. This also ensures idle timeouts do not trigger probe failures
    				DisableKeepAlives: !ProbeKeepaliveConnections,
    			})
    			if err != nil {
    				return nil, err
    			}
    			// Construct a http client and cache it in order to reuse the connection.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  3. src/net/dial_test.go

    	}{
    		{-1, -1},
    		{0, 0},
    		{5 * time.Second, 5 * time.Second},
    		{30 * time.Second, 30 * time.Second},
    	}
    
    	var got time.Duration = -1
    	testHookSetKeepAlive = func(cfg KeepAliveConfig) { got = cfg.Idle }
    
    	for _, test := range tests {
    		got = -1
    		d := Dialer{KeepAlive: test.ka}
    		c, err := d.Dial("tcp", ls.Listener.Addr().String())
    		if err != nil {
    			t.Fatal(err)
    		}
    		c.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. docs/en/docs/async.md

    ---
    
    Imagine you are the computer / program 🤖 in that story.
    
    While you are at the line, you are just idle 😴, waiting for your turn, not doing anything very "productive". But the line is fast because the cashier is only taking the orders (not preparing them), so that's fine.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/os/file.go

    // That error implements the Timeout method, and calling the Timeout
    // method will return true, but there are other possible errors for which
    // the Timeout 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.
    func (f *File) SetDeadline(t time.Time) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. src/os/signal/signal_test.go

    		// Older linux kernels seem to have some hiccups delivering the signal
    		// in a timely manner on ppc64 and ppc64le. When running on a
    		// ppc64le/ubuntu 16.04/linux 4.4 host the time can vary quite
    		// substantially even on an idle system. 5 seconds is twice any value
    		// observed when running 10000 tests on such a system.
    		settleTime = 5 * time.Second
    	} else if s := os.Getenv("GO_TEST_TIMEOUT_SCALE"); s != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/types.go

    	// kubelet will configure all containers to use this for DNS resolution
    	// instead of the host's DNS servers.
    	ClusterDNS []string
    	// streamingConnectionIdleTimeout is the maximum time a streaming connection
    	// can be idle before the connection is automatically closed.
    	StreamingConnectionIdleTimeout metav1.Duration
    	// nodeStatusUpdateFrequency is the frequency that kubelet computes node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    `-Dorg.gradle.daemon.idletimeout=(number of milliseconds)`::
    A <<build_environment.adoc#sec:gradle_configuration_properties,Gradle property>> wherein the Gradle Daemon will stop itself after this number of milliseconds of idle time. _Default is 10800000_ (3 hours).
    
    [[sec:command_line_logging]]
    == Logging options
    
    === Setting log level
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. src/net/http/client.go

    	if err != nil {
    		return nil, err
    	}
    	return c.Do(req)
    }
    
    // CloseIdleConnections closes any connections on its [Transport] which
    // were previously connected from previous requests but are now
    // sitting idle in a "keep-alive" state. It does not interrupt any
    // connections currently in use.
    //
    // If [Client.Transport] does not have a [Client.CloseIdleConnections] method
    // then this method does nothing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  10. src/runtime/trace.go

    	systemstack(func() {
    		lock(&trace.lock)
    		trace.flushedGen.Store(gen)
    		unlock(&trace.lock)
    	})
    
    	// Perform status reset on dead Ps because they just appear as idle.
    	//
    	// Preventing preemption is sufficient to access allp safely. allp is only
    	// mutated by GOMAXPROCS calls, which require a STW.
    	//
    	// TODO(mknyszek): Consider explicitly emitting ProcCreate and ProcDestroy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top