Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for npidle (0.11 sec)

  1. src/internal/trace/resources.go

    	ProcNotExist                      // Proc does not exist.
    	ProcRunning                       // Proc is running.
    	ProcIdle                          // Proc is idle.
    )
    
    // Executing returns true if the state indicates that the proc is executing
    // and bound to its thread.
    func (s ProcState) Executing() bool {
    	return s == ProcRunning
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. manifests/charts/base/crds/crd-all.gen.yaml

                                      format: int32
                                      type: integer
                                    idleTimeout:
                                      description: The idle timeout for upstream connection
                                        pool connections.
                                      type: string
                                      x-kubernetes-validations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  3. src/internal/trace/oldtrace.go

    				// These are goroutines that already existed when tracing started but for which we
    				// received neither GoWaiting, GoInSyscall, or GoStart. These are goroutines that are in
    				// the states _Gidle or _Grunnable.
    				it.extra = append(it.extra, Event{
    					ctx: schedCtx{
    						// G: GoID(gid),
    						G: NoGoroutine,
    						P: NoProc,
    						M: NoThread,
    					},
    					table: it.evt,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/v1/default_plugins.go

    		// This plugin should come before DefaultPreemption because if
    		// there is a problem with a Pod and PostFilter gets called to
    		// resolve the problem, it is better to first deallocate an
    		// idle ResourceClaim than it is to evict some Pod that might
    		// be doing useful work.
    		for i := range config.MultiPoint.Enabled {
    			if config.MultiPoint.Enabled[i].Name == names.DefaultPreemption {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    // clue that the given priority level is undesired and idle.
    func (cfgCtlr *configController) maybeReap(plName string) {
    	cfgCtlr.lock.RLock()
    	defer cfgCtlr.lock.RUnlock()
    	plState := cfgCtlr.priorityLevelStates[plName]
    	if plState == nil {
    		klog.V(7).Infof("plName=%s, plState==nil", plName)
    		return
    	}
    	useless := plState.quiescing && plState.numPending == 0 && plState.queues.IsIdle()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    When set to `true` the <<gradle_daemon.adoc#gradle_daemon, Gradle Daemon>> is used to run the build.
    +
    _Default is `true`._
    
    `org.gradle.daemon.idletimeout=(# of idle millis)`::
    Gradle Daemon will terminate itself after a specified number of idle milliseconds.
    +
    _Default is `10800000` (3 hours)._
    
    `org.gradle.debug=(true,false)`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    	<-drv.waitingCh
    	// Now close the busy connections. This provides a connection for
    	// the blocked goroutine and then fills up the idle queue.
    	for _, v := range rows {
    		v.Close()
    	}
    	// At this point we give the new connection to DB. This connection is
    	// now useless, since the idle queue is full and there are no pending
    	// requests. DB should deal with this situation without leaking the
    	// connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. src/internal/trace/event/go122/event.go

    	ProcRunning
    	ProcIdle
    	ProcSyscall
    	ProcSyscallAbandoned
    )
    
    func (s ProcStatus) String() string {
    	switch s {
    	case ProcRunning:
    		return "Running"
    	case ProcIdle:
    		return "Idle"
    	case ProcSyscall:
    		return "Syscall"
    	}
    	return "Bad"
    }
    
    const (
    	// Various format-specific constants.
    	MaxBatchSize      = 64 << 10
    	MaxFramesPerStack = 128
    	MaxStringSize     = 1 << 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/tests/go122-annotations.test

    EventBatch gen=1 m=18446744073709551615 time=28113086274600 size=1620
    Strings
    String id=1
    	data="Not worker"
    String id=2
    	data="GC (dedicated)"
    String id=3
    	data="GC (fractional)"
    String id=4
    	data="GC (idle)"
    String id=5
    	data="unspecified"
    String id=6
    	data="forever"
    String id=7
    	data="network"
    String id=8
    	data="select"
    String id=9
    	data="sync.(*Cond).Wait"
    String id=10
    	data="sync"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top