Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 246 for Idle (0.07 sec)

  1. releasenotes/notes/set-tcp-idle-timeout-in-http-clusters.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 11 03:37:28 UTC 2024
    - 168 bytes
    - Viewed (0)
  2. releasenotes/notes/add-idle-timeout-to-destination-rule-tcp-settings.yaml

    Jacek Ewertowski <******@****.***> 1702999098 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 15:18:18 UTC 2023
    - 189 bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/EmbeddedDaemonRegistrySpec.groovy

            then:
            all.size() == 2
            idle.size() == 1
            notIdle.size() == 1
    
            when:
            markState(address(20), Busy)
    
            then:
            all.size() == 2
            idle.empty
            notIdle.size() == 2
    
            when:
            markState(address(10), Idle)
            markState(address(20), Idle)
    
            then:
            all.size() == 2
            idle.size() == 2
            notIdle.empty
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. src/net/tcpconn_keepalive_conf_solaris_test.go

    		Enable:   true,
    		Idle:     20 * time.Second,
    		Interval: -1,
    		Count:    10,
    	},
    	{
    		Enable:   true,
    		Idle:     20 * time.Second,
    		Interval: 10 * time.Second,
    		Count:    -1,
    	},
    	{
    		Enable:   true,
    		Idle:     -1,
    		Interval: -1,
    		Count:    10,
    	},
    	{
    		Enable:   true,
    		Idle:     -1,
    		Interval: 10 * time.Second,
    		Count:    -1,
    	},
    	{
    		Enable:   true,
    		Idle:     20 * time.Second,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonLifecycleSpec.groovy

            completeBuild()
    
            then:
            idle()
    
            and:
            stopped()
        }
    
        //Java 9 and above needs --add-opens to make environment variable mutation work
        @Requires(UnitTestPreconditions.Jdk8OrEarlier)
        def "existing foreground idle daemons are used"() {
            when:
            startForegroundDaemon()
    
            then:
            idle()
    
            when:
            startBuild()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. src/net/tcpconn_keepalive_conf_posix_test.go

    		Idle:     5 * time.Second,
    		Interval: -1,
    		Count:    10,
    	},
    	{
    		Enable:   true,
    		Idle:     5 * time.Second,
    		Interval: 3 * time.Second,
    		Count:    -1,
    	},
    	{
    		Enable:   true,
    		Idle:     -1,
    		Interval: -1,
    		Count:    10,
    	},
    	{
    		Enable:   true,
    		Idle:     -1,
    		Interval: 3 * time.Second,
    		Count:    -1,
    	},
    	{
    		Enable:   true,
    		Idle:     5 * time.Second,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:21 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/testing/DaemonsState.groovy

     */
    package org.gradle.launcher.daemon.testing
    
    /**
     * Represents the number of given busy and idle daemons in a registry at a particular time.
     */
    class DaemonsState {
        final int busy
        final int idle
    
        DaemonsState(int busy, int idle) {
            this.busy = Math.max(busy, 0)
            this.idle = Math.max(idle, 0)
        }
    
        static getWildcardState() {
            new DaemonsState()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/net/tcpsockopt_windows.go

    		// Now we will use the default of KeepAliveInterval on Windows if user doesn't
    		// provide one.
    		interval = defaultKeepAliveInterval
    	case idle < 0 && interval < 0:
    		// Nothing to do, just bail out.
    		return nil
    	case idle >= 0 && interval >= 0:
    		// Go ahead.
    	}
    
    	if idle == 0 {
    		idle = defaultTCPKeepAliveIdle
    	}
    	if interval == 0 {
    		interval = defaultTCPKeepAliveInterval
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/testing/DaemonEventSequenceBuilder.groovy

            state(busy, numDaemons - busy)
        }
    
        void idle() {
            idle(numDaemons)
        }
    
        void idle(int idle) {
            state(numDaemons - idle, idle)
        }
    
        void stopped() {
            numDaemons = 0
            state(0, 0)
        }
    
        void state(int busy, int idle) {
            state(new DaemonsState(busy, idle))
        }
    
        void state(DaemonsState checkpointState) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/net/tcpconn_keepalive_posix_test.go

    		return
    	}
    	cfg = KeepAliveConfig{
    		Enable:   tcpKeepAlive != 0,
    		Idle:     time.Duration(tcpKeepAliveIdle) * time.Second,
    		Interval: time.Duration(tcpKeepAliveInterval) * time.Second,
    		Count:    tcpKeepAliveCount,
    	}
    	return
    }
    
    func verifyKeepAliveSettings(t *testing.T, fd fdType, oldCfg, cfg KeepAliveConfig) {
    	if cfg.Idle == 0 {
    		cfg.Idle = defaultTCPKeepAliveIdle
    	}
    	if cfg.Interval == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:02:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top