Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 92 for Idle (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cmd/data-scanner.go

    	scannerCycle                         = uatomic.NewDuration(dataScannerStartDelay)
    	scannerIdleMode                      = uatomic.NewInt32(0) // default is throttled when idle
    	scannerExcessObjectVersions          = uatomic.NewInt64(100)
    	scannerExcessObjectVersionsTotalSize = uatomic.NewInt64(1024 * 1024 * 1024 * 1024) // 1 TB
    	scannerExcessFolders                 = uatomic.NewInt64(50000)
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  10. src/runtime/time.go

    	// at any time, including between the ts := assignment and the
    	// call to ts.lock. If a reschedule happened then, we would be
    	// adding t to some other P's timers, perhaps even a P that the scheduler
    	// has marked as idle with no timers, in which case the timer could
    	// go unnoticed until long after t.when.
    	// Calling acquirem instead of using getg().m makes sure that
    	// we end up locking and inserting into the current P's timers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top