Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 92 for Idle (0.03 sec)

  1. src/database/sql/driver/driver.go

    	// The name is a string in a driver-specific format.
    	//
    	// Open may return a cached connection (one previously
    	// closed), but doing so is unnecessary; the sql package
    	// maintains a pool of idle connections for efficient re-use.
    	//
    	// The returned connection is only used by one goroutine at a
    	// time.
    	Open(name string) (Conn, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. src/runtime/os_windows.go

    			if mp == getg().m {
    				// Don't profile ourselves.
    				continue
    			}
    
    			lock(&mp.threadLock)
    			// Do not profile threads blocked on Notes,
    			// this includes idle worker threads,
    			// idle timer thread, idle heap scavenger, etc.
    			if mp.thread == 0 || mp.profilehz == 0 || mp.blocked {
    				unlock(&mp.threadLock)
    				continue
    			}
    			// Acquire our own handle to the thread.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	req, idle := plState.queues.StartRequest(ctx, &workEstimate, hashValue, flowDistinguisher, selectedFlowSchema.Name, rd.RequestInfo, rd.User, queueNoteFn)
    	if idle {
    		cfgCtlr.maybeReapReadLocked(plName, plState)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  4. cmd/server-main.go

    		Value:  xhttp.DefaultShutdownTimeout,
    		Usage:  "shutdown timeout to gracefully shutdown server",
    		EnvVar: "MINIO_SHUTDOWN_TIMEOUT",
    		Hidden: true,
    	},
    	cli.DurationFlag{
    		Name:   "idle-timeout",
    		Value:  xhttp.DefaultIdleTimeout,
    		Usage:  "idle timeout is the maximum amount of time to wait for the next request when keep-alive are enabled",
    		EnvVar: "MINIO_IDLE_TIMEOUT",
    		Hidden: true,
    	},
    	cli.DurationFlag{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.PrintStream;
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * The entry point for a daemon process.
     *
     * If the daemon hits the specified idle timeout the process will exit with 0. If the daemon encounters an internal error or is explicitly stopped (which can be via receiving a stop command, or
     * unexpected client disconnection) the process will exit with 1.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationQueue.java

                    // `getMaxWorkerCount() - 1` because main thread executes work as well. See https://github.com/gradle/gradle/issues/3273
                    // TODO This could be more efficient, so that we only start a worker when there are none idle _and_ there is a worker lease available
                    executor.execute(new WorkerRunnable());
                    workerCount++;
                }
            } finally {
                lock.unlock();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 31 15:18:20 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    		req.queueNoteFn(inQueue)
    	}
    }
    
    func (req *request) Finish(execFn func()) bool {
    	exec, idle := req.wait()
    	if !exec {
    		return idle
    	}
    	func() {
    		defer func() {
    			idle = req.qs.finishRequestAndDispatchAsMuchAsPossible(req)
    		}()
    
    		execFn()
    	}()
    
    	return idle
    }
    
    func (req *request) wait() (bool, bool) {
    	qs := req.qs
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top