Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 255 for Idle (0.03 sec)

  1. docs/changelogs/changelog_2x.md

    
    ## Version 2.7.0
    
    _2015-12-13_
    
     *  **Rewritten connection management.** Previously OkHttp's connection pool
        managed both idle and active connections for HTTP/2, but only idle
        connections for HTTP/1.x. With this update the connection pool manages both
        idle and active connections for everything. OkHttp now detects and warns on
        connections that were allocated but never released, and will enforce HTTP/2
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  2. cluster/gce/windows/configure.ps1

      }
    
      if ($restart_computer) {
        Restart-Computer -Force
        # Restart-Computer does not stop the rest of the script from executing.
        exit 0
      }
    
      # Set the TCP/IP Parameters to keep idle connections alive.
      Set-WindowsTCPParameters
    
      Set-PrerequisiteOptions
    
      if (Test-IsTestCluster $kube_env) {
        Log-Output 'Test cluster detected, installing OpenSSH.'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 21:28:26 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. src/time/sleep_test.go

    		var i = indices[ii]
    
    		var timer = timers[i]
    		var state = states[i]
    		states[i]++
    
    		switch state {
    		case 0:
    			timers[i] = newTimerFunc(0)
    
    		case 1:
    			<-timer.C // Timer is now idle.
    
    		// Reset to various long durations, which we'll cancel.
    		case 2:
    			if timer.Reset(1 * Minute) {
    				panic("shouldn't be active (1)")
    			}
    		case 4:
    			if timer.Reset(3 * Minute) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/list.md

    | `minio_node_cpu_avg_system_max`      | CPU system time (max).                     |
    | `minio_node_cpu_avg_idle`            | CPU idle time.                             |
    | `minio_node_cpu_avg_idle_avg`        | CPU idle time (avg).                       |
    | `minio_node_cpu_avg_idle_max`        | CPU idle time (max).                       |
    | `minio_node_cpu_avg_iowait`          | CPU ioWait time.                           |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

            def vfsLogs = enableVerboseVfsLogs()
            withWatchFs().run("assemble")
            then:
            vfsLogs.retainedFilesInCurrentBuild >= 4
            // Make sure the daemon is already idle before making the file changes
            daemon.becomesIdle()
    
            when:
            sourceFile.text = "public class MyClass { private void doStuff() {} }"
            waitForChangesToBePickedUp()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

                }
            """
    
            when:
            succeeds("run", "--parallel")
    
            then:
            noExceptionThrown()
        }
    
        def "re-uses an existing idle worker daemon"() {
            executer.withWorkerDaemonsExpirationDisabled()
            fixture.withWorkActionClassInBuildSrc()
    
            buildFile << """
                task runInDaemon(type: WorkerTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. src/net/http/httptest/server_test.go

    			t.Fatal(err)
    		}
    		return c
    	}
    
    	// Keep one connection in StateNew (connected, but not sending anything)
    	cnew := dial()
    	defer cnew.Close()
    
    	// Keep one connection in StateIdle (idle after a request)
    	cidle := dial()
    	defer cidle.Close()
    	cidle.Write([]byte("HEAD / HTTP/1.1\r\nHost: foo\r\n\r\n"))
    	_, err := http.ReadResponse(bufio.NewReader(cidle), nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 16:57:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/search.go

    				return filepath.SkipDir
    			}
    			return nil
    		})
    		if err != nil {
    			m.AddError(err)
    		}
    	}
    
    	// Wait for all in-flight operations to complete before returning.
    	defer func() {
    		<-q.Idle()
    		sort.Strings(m.Pkgs) // sort everything we added for determinism
    	}()
    
    	if filter == includeStd {
    		walkPkgs(cfg.GOROOTsrc, "", pruneGoMod)
    		if treeCanMatch("cmd") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/ProcessCrashHandlingIntegrationTest.groovy

            daemons.daemon.assertBusy()
            client.kill()
    
            then:
            daemons.daemon.becomesCanceled()
    
            and:
            daemons.daemon.stops()
        }
    
        def "daemon is idle after the client disconnects and build cancels in a timely manner"() {
            buildFile << """
                task block {
                    doLast {
                        ${server.callFromBuild("block")}
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. src/runtime/sigqueue.go

    		// Incorporate updates from sender into local copy.
    		for i := range sig.mask {
    			sig.recv[i] = atomic.Xchg(&sig.mask[i], 0)
    		}
    	}
    }
    
    // signalWaitUntilIdle waits until the signal delivery mechanism is idle.
    // This is used to ensure that we do not drop a signal notification due
    // to a race between disabling a signal and receiving a signal.
    // This assumes that signal delivery has already been disabled for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top