Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 84 for Idle (0.06 sec)

  1. src/runtime/metrics_test.go

    			t.Errorf("found no time spent on GC work: %#v", cpu)
    		}
    		if cpu.gcPause <= 0 {
    			t.Errorf("found no GC pauses: %f", cpu.gcPause)
    		}
    		if cpu.idle <= 0 {
    			t.Errorf("found no idle time: %f", cpu.idle)
    		}
    		if total := cpu.gcDedicated + cpu.gcAssist + cpu.gcIdle + cpu.gcPause; !withinEpsilon(cpu.gcTotal, total, 0.001) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientsManagerTest.groovy

        def "does not reserve idle client when no clients"() {
            expect:
            manager.reserveIdleClient(options) == null
        }
    
        def "does not reserve idle client when no matching client found"() {
            def noMatch = Stub(WorkerDaemonClient) {
                isCompatibleWith(_) >> false
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. pkg/proxy/apis/config/types.go

    	// regardless of maxPerCore (set maxPerCore=0 to leave the limit as-is).
    	Min *int32
    	// tcpEstablishedTimeout is how long an idle TCP connection will be kept open
    	// (e.g. '2s').  Must be greater than 0 to set.
    	TCPEstablishedTimeout *metav1.Duration
    	// tcpCloseWaitTimeout is how long an idle conntrack entry
    	// in CLOSE_WAIT state will remain in the conntrack
    	// table. (e.g. '60s'). Must be greater than 0 to set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

    class DaemonReuseIntegrationTest extends DaemonIntegrationSpec {
        @Rule BlockingHttpServer server = new BlockingHttpServer()
    
        def setup() {
            server.start()
        }
    
        def "idle daemon is reused in preference to starting a new daemon"() {
            given:
            executer.run()
            daemons.daemon.assertIdle()
    
            when:
            5.times {
                executer.run()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/DispatcherTest.kt

      }
    
      @Test
      fun idleCallbackInvokedWhenIdle() {
        val idle = AtomicBoolean()
        dispatcher.idleCallback = Runnable { idle.set(true) }
        client.newCall(newRequest("http://a/1")).enqueue(callback)
        client.newCall(newRequest("http://a/2")).enqueue(callback)
        executor.finishJob("http://a/1")
        assertThat(idle.get()).isFalse()
        val ready = CountDownLatch(1)
        val proceed = CountDownLatch(1)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

    function initPanAndZoom(svg, clickHandler) {
      'use strict';
    
      // Current mouse/touch handling mode
      const IDLE = 0;
      const MOUSEPAN = 1;
      const TOUCHPAN = 2;
      const TOUCHZOOM = 3;
      let mode = IDLE;
    
      // State needed to implement zooming.
      let currentScale = 1.0;
      const initWidth = svg.viewBox.baseVal.width;
      const initHeight = svg.viewBox.baseVal.height;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. src/runtime/runtime2.go

    	// running P (returned by pidleget) may add a timer at any time, so its mask
    	// must be set. An idle P (passed to pidleput) cannot add new timers while
    	// idle, so if it has no timers at that time, its mask may be cleared.
    	//
    	// Thus, we get the following effects on timer-stealing in findrunnable:
    	//
    	//   - Idle Ps with no timers when they go idle are never checked in findrunnable
    	//     (for work- or timer-stealing; this is the ideal case).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientsManager.java

            } catch (UnsupportedOperationException e) {
                return -1;
            }
        }
    
        /**
         * Select idle daemon clients to stop.
         *
         * @param selectionFunction Gets all idle daemon clients, daemons of returned clients are stopped
         */
        @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonConnector.java

            final Pair<Collection<DaemonInfo>, Collection<DaemonInfo>> idleBusy = partitionByState(daemonRegistry.getAll(), Idle);
            final Collection<DaemonInfo> idleDaemons = idleBusy.getLeft();
            final Collection<DaemonInfo> busyDaemons = idleBusy.getRight();
    
            // Check to see if there are any compatible idle daemons
            DaemonClientConnection connection = connectToIdleDaemon(idleDaemons, constraint);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailureTest.groovy

    2019-10-03T09:33:08.990+0200 [DEBUG] [org.gradle.execution.plan.DefaultPlanExecutor] Task worker [Thread[main,5,main]] finished, busy: 0.0 secs, idle: 0.021 secs
    \u001B[0K
    \u001B[0K
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top