Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 84 for Idle (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    ====
    
    When a unit of work for a worker daemon is submitted, Gradle will first look to see if a compatible, idle daemon already exists.
    If so, it will send the unit of work to the idle daemon, marking it as busy.
    If not, it will start a new daemon.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top