Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 255 for Idle (0.03 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/cmd/go/internal/par/queue_test.go

    	q := NewQueue(1)
    	select {
    	case <-q.Idle():
    	default:
    		t.Errorf("NewQueue(1) is not initially idle.")
    	}
    
    	started := make(chan struct{})
    	unblock := make(chan struct{})
    	q.Add(func() {
    		close(started)
    		<-unblock
    	})
    
    	<-started
    	idle := q.Idle()
    	select {
    	case <-idle:
    		t.Errorf("NewQueue(1) is marked idle while processing work.")
    	default:
    	}
    
    	close(unblock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 24 21:08:46 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/go/internal/par/queue.go

    			if len(st.backlog) == 0 {
    				if st.active--; st.active == 0 && st.idle != nil {
    					close(st.idle)
    				}
    				q.st <- st
    				return
    			}
    			f, st.backlog = st.backlog[0], st.backlog[1:]
    			q.st <- st
    		}
    	}()
    }
    
    // Idle returns a channel that will be closed when q has no (active or enqueued)
    // work outstanding.
    func (q *Queue) Idle() <-chan struct{} {
    	st := <-q.st
    	defer func() { q.st <- st }()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 24 21:08:46 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  10. 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)
Back to top