Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for npidle (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    	if qs == nil {
    		qs = &ctlrTestQueueSet{cts: cqc.cts, qc: cqc.qc, dc: dc}
    		cqc.cts.queues[cqc.qc.Name] = qs
    	} else {
    		qs.qc, qs.dc = cqc.qc, dc
    	}
    	return qs
    }
    
    func (cqs *ctlrTestQueueSet) IsIdle() bool {
    	cqs.cts.lock.Lock()
    	defer cqs.cts.lock.Unlock()
    	klog.V(7).Infof("For %p QS %s, countActive==%d", cqs, cqs.qc.Name, cqs.countActive)
    	return cqs.countActive == 0
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/options.go

    	fs.StringVar(&c.ImageServiceEndpoint, "image-service-endpoint", c.ImageServiceEndpoint, "The endpoint of container image service. If not specified, it will be the same with --container-runtime-endpoint by default. Unix Domain Socket are supported on Linux, while npipe and tcp endpoints are supported on Windows. Examples...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.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/registry/core/service/storage/alloc.go

    		a.Destroy()
    	}
    }
    
    // This is O(N), but we expect haystack to be small;
    // so small that we expect a linear search to be faster
    func containsNumber(haystack []int, needle int) bool {
    	for _, v := range haystack {
    		if v == needle {
    			return true
    		}
    	}
    	return false
    }
    
    // This is O(N), but we expect serviceNodePorts to be small;
    // so small that we expect a linear search to be faster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K 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. src/mdo/reader.vm

            entities.put("Iacute", "\u00cd");
            entities.put("Icirc", "\u00ce");
            entities.put("Iuml", "\u00cf");
            entities.put("ETH", "\u00d0");
            entities.put("Ntilde", "\u00d1");
            entities.put("Ograve", "\u00d2");
            entities.put("Oacute", "\u00d3");
            entities.put("Ocirc", "\u00d4");
            entities.put("Otilde", "\u00d5");
            entities.put("Ouml", "\u00d6");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  8. 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)
  9. src/encoding/xml/xml.go

    	"Eacute":   "\u00C9",
    	"Ecirc":    "\u00CA",
    	"Euml":     "\u00CB",
    	"Igrave":   "\u00CC",
    	"Iacute":   "\u00CD",
    	"Icirc":    "\u00CE",
    	"Iuml":     "\u00CF",
    	"ETH":      "\u00D0",
    	"Ntilde":   "\u00D1",
    	"Ograve":   "\u00D2",
    	"Oacute":   "\u00D3",
    	"Ocirc":    "\u00D4",
    	"Otilde":   "\u00D5",
    	"Ouml":     "\u00D6",
    	"times":    "\u00D7",
    	"Oslash":   "\u00D8",
    	"Ugrave":   "\u00D9",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  10. 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)
Back to top