Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 255 for Idle (0.04 sec)

  1. manifests/charts/istiod-remote/templates/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.7K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerDaemonIntegrationTest.groovy

            requireIsolatedTestKitDir = true
        }
    
        @Rule
        final ConcurrentTestUtil concurrent = new ConcurrentTestUtil(60000)
    
        def "daemon process dedicated to test execution uses short idle timeout"() {
            when:
            runner().build()
    
            then:
            testKitDaemons().daemon.context.idleTimeout == 120000
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/upgrade.go

    // package.
    //
    // If pingPeriod is non-zero, for each incoming connection a background
    // goroutine will send periodic Ping frames to the server. Use this to keep
    // idle connections through certain load balancers alive longer.
    func NewResponseUpgraderWithPings(pingPeriod time.Duration) httpstream.ResponseUpgrader {
    	return responseUpgrader{pingPeriod: pingPeriod}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 28 08:02:09 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. 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)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/promise/counting.go

    type countingPromise struct {
    	lock          sync.Locker
    	cond          sync.Cond
    	activeCounter counter.GoRoutineCounter // counter of active goroutines
    	waitingCount  int                      // number of goroutines idle due to this being unset
    	isSet         bool
    	value         interface{}
    }
    
    var _ promiseifc.WriteOnce = &countingPromise{}
    
    // NewCountingWriteOnce creates a WriteOnce that uses locking and counts goroutine activity.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    	if !tr.IsIdleForTesting() {
    		t.Error("should be idle after CloseIdleConnections")
    	}
    	wantIdle("after close idle", 0)
    	if tr.PutIdleTestConn("http", "example.com") {
    		t.Fatal("put didn't fail")
    	}
    	wantIdle("after second put", 0)
    
    	tr.QueueForIdleConnForTesting() // should toggle the transport out of idle mode
    	if tr.IsIdleForTesting() {
    		t.Error("shouldn't be idle after QueueForIdleConnForTesting")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ExecutorFactory.java

         * @param maximumPoolSize The maximum number of threads allowed
         * @param keepAliveTime  when the number of threads is greater than
         *        the core, this is the maximum time that excess idle threads
         *        will wait for new tasks before terminating.
         * @param timeUnit the time unit for the {@code keepAliveTime} argument
         * @return The executor.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/PropertiesToDaemonParametersConverterTest.groovy

            then:
            def ex = thrown(IllegalArgumentException)
            ex.message.contains 'org.gradle.java.home'
            ex.message.contains 'foobar'
        }
    
        def "shows nice message for invalid idle timeout"() {
            when:
            converter.convert((DaemonBuildOptions.IdleTimeoutOption.GRADLE_PROPERTY): 'asdf', params)
    
            then:
            def ex = thrown(IllegalArgumentException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. 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)
Back to top