Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 84 for Idle (0.05 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                illegalState()
    
            private
            fun illegalState(): Nothing =
                throw IllegalStateException("Operation is not valid in ${javaClass.simpleName} state.")
    
            class Idle(
                private val onFirstDiagnostic: (kind: DiagnosticKind, problem: PropertyProblem) -> State
            ) : State() {
    
                /**
                 * There's nothing to write, return null.
                 */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. cmd/metrics-resource.go

    			if ts != nil {
    				tot := ts.User + ts.System + ts.Idle + ts.Iowait + ts.Nice + ts.Steal
    				cpuUserVal := math.Round(ts.User/tot*100*100) / 100
    				updateResourceMetrics(cpuSubsystem, cpuUser, cpuUserVal, labels, false)
    				cpuSystemVal := math.Round(ts.System/tot*100*100) / 100
    				updateResourceMetrics(cpuSubsystem, cpuSystem, cpuSystemVal, labels, false)
    				cpuIdleVal := math.Round(ts.Idle/tot*100*100) / 100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/networkfilter_test.go

    	cases := []struct {
    		name        string
    		idleTimeout string
    		expected    *durationpb.Duration
    	}{
    		{
    			"no idle timeout",
    			"",
    			nil,
    		},
    		{
    			"invalid timeout",
    			"invalid-30s",
    			nil,
    		},
    		{
    			"valid idle timeout 30s",
    			"30s",
    			durationpb.New(30 * time.Second),
    		},
    	}
    
    	services := []*model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            fun illegalStateFor(operation: String): Nothing = throw IllegalStateException(
                "'$operation' is illegal while in '${javaClass.simpleName}' state."
            )
        }
    
        private
        inner class Idle : WritingState() {
            override fun maybeStart(buildScopedSpoolFile: StateFile, projectScopedSpoolFile: StateFile, writeContextForOutputStream: (StateFile) -> DefaultWriteContext): WritingState {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. src/runtime/mstats.go

    	// space of the heap into "spans", which are contiguous
    	// regions of memory 8K or larger. A span may be in one of
    	// three states:
    	//
    	// An "idle" span contains no objects or other data. The
    	// physical memory backing an idle span can be released back
    	// to the OS (but the virtual address space never is), or it
    	// can be converted into an "in use" or "stack" span.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    [[sec:status]]
    == Check Daemon status
    
    To get a list of running Daemons and their statuses, use the `--status` command:
    
    ----
    $ gradle --status
    ----
    
    ----
       PID STATUS   INFO
     28486 IDLE     7.5
     34247 BUSY     7.5
    ----
    
    Currently, a given Gradle version can only connect to Daemons of the same version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/runtime/HACKING.md

    (where to execute it), and a P (the rights and resources to execute
    it). When an M stops executing user Go code, for example by entering a
    system call, it returns its P to the idle P pool. In order to resume
    executing user Go code, for example on return from a system call, it
    must acquire a P from the idle pool.
    
    All `g`, `m`, and `p` objects are heap allocated, but are never freed,
    so their memory remains type stable. As a result, the runtime can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. subprojects/core/src/testFixtures/groovy/org/gradle/util/internal/MultithreadedTestRule.java

            }
        }
    
        private enum State {
            Idle, Blocking, Blocked, Unblocking, Unblocked, Failed
        }
    
        private class SyncPoint {
            private final Lock lock = new ReentrantLock();
            private final Condition condition = lock.newCondition();
            private State state = State.Idle;
            private ThreadHandle blockingThread;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/connection/ConnectionPoolTest.kt

        // Connections are replaced if they idle out or are evicted from the pool
        evictAllConnections(pool)
        assertThat(pool.connectionCount()).isEqualTo(2)
        forceConnectionsToExpire(pool, expireTime)
        assertThat(pool.connectionCount()).isEqualTo(2)
    
        // Excess connections aren't removed until they idle out, even if no longer needed
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. 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)
Back to top