Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for IdleTimeout (0.26 sec)

  1. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

    class LeakingProcessKillPatternTest extends Specification {
    
        def "matches worker process started in test on Windows"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:00:39 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_inbound.go

    	}
    	tcpProxy := &tcp.TcpProxy{
    		StatPrefix:       statPrefix,
    		ClusterSpecifier: &tcp.TcpProxy_Cluster{Cluster: fcc.clusterName},
    		IdleTimeout:      parseDuration(lb.node.Metadata.IdleTimeout),
    	}
    	tcpFilter := setAccessLogAndBuildTCPFilter(lb.push, lb.node, tcpProxy, istionetworking.ListenerClassSidecarInbound, fcc.policyService)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server.go

    		handler.InstallTracingFilter(tp)
    	}
    
    	s := &http.Server{
    		Addr:           net.JoinHostPort(address.String(), strconv.FormatUint(uint64(port), 10)),
    		Handler:        &handler,
    		IdleTimeout:    90 * time.Second, // matches http.DefaultTransport keep-alive timeout
    		ReadTimeout:    4 * 60 * time.Minute,
    		WriteTimeout:   4 * 60 * time.Minute,
    		MaxHeaderBytes: 1 << 20,
    	}
    
    	if tlsOptions != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  4. api/go1.8.txt

    pkg net/http, type PushOptions struct, Header Header
    pkg net/http, type PushOptions struct, Method string
    pkg net/http, type Request struct, GetBody func() (io.ReadCloser, error)
    pkg net/http, type Server struct, IdleTimeout time.Duration
    pkg net/http, type Server struct, ReadHeaderTimeout time.Duration
    pkg net/http, type Transport struct, ProxyConnectHeader Header
    pkg net/http, var ErrAbortHandler error
    pkg net/http, var ErrServerClosed error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 05:25:57 UTC 2016
    - 16.3K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    		conf = new(http2Server)
    	}
    	conf.state = &http2serverInternalState{activeConns: make(map[*http2serverConn]struct{})}
    	if h1, h2 := s, conf; h2.IdleTimeout == 0 {
    		if h1.IdleTimeout != 0 {
    			h2.IdleTimeout = h1.IdleTimeout
    		} else {
    			h2.IdleTimeout = h1.ReadTimeout
    		}
    	}
    	s.RegisterOnShutdown(conf.state.startGracefulShutdown)
    
    	if s.TLSConfig == nil {
    		s.TLSConfig = new(tls.Config)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    24438 ?        Sl     3:46 /opt/files/jdk-linux/jdk-8u161-linux-x64.tar.gz/bin/java -Dorg.gradle.daemon.idletimeout=120000 -Dorg.gradle.daemon.registry.base=/home/tcagent1/agent/work/668602365d1521fc/build/daemon -Dorg.gradle.native.dir=/home/tcagent1/agent/work/668602365d1521fc/intTestHomeDir/worker-1/native -Dorg.gradle.deprecation.trace=true -Djava.io.tmp...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. src/net/http/server.go

    		s.activeConn = make(map[*conn]struct{})
    	}
    	if add {
    		s.activeConn[c] = struct{}{}
    	} else {
    		delete(s.activeConn, c)
    	}
    }
    
    func (s *Server) idleTimeout() time.Duration {
    	if s.IdleTimeout != 0 {
    		return s.IdleTimeout
    	}
    	return s.ReadTimeout
    }
    
    func (s *Server) readHeaderTimeout() time.Duration {
    	if s.ReadHeaderTimeout != 0 {
    		return s.ReadHeaderTimeout
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_test.go

    				}
    			}
    
    			// Verify that the values were set correctly.
    			g.Expect(httpProtocolOptions.CommonHttpProtocolOptions.IdleTimeout).To(Not(BeNil()))
    			g.Expect(httpProtocolOptions.CommonHttpProtocolOptions.IdleTimeout).To(Equal(durationpb.New(time.Duration(15000000000))))
    		})
    	}
    }
    
    // clusterTest defines a structure containing all information needed to build a cluster for tests
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                        a destination.
                                      format: int32
                                      type: integer
                                    idleTimeout:
                                      description: The idle timeout for upstream connection
                                        pool connections.
                                      type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    +
    _Default is `false`._
    
    `org.gradle.daemon=(true,false)`::
    When set to `true` the <<gradle_daemon.adoc#gradle_daemon, Gradle Daemon>> is used to run the build.
    +
    _Default is `true`._
    
    `org.gradle.daemon.idletimeout=(# of idle millis)`::
    Gradle Daemon will terminate itself after a specified number of idle milliseconds.
    +
    _Default is `10800000` (3 hours)._
    
    `org.gradle.debug=(true,false)`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top