Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for IdleTimeout (0.22 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/proxy/websocket.go

    	"k8s.io/apimachinery/pkg/util/httpstream/wsstream"
    	constants "k8s.io/apimachinery/pkg/util/remotecommand"
    	"k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/client-go/tools/remotecommand"
    )
    
    const (
    	// idleTimeout is the read/write deadline set for websocket server connection. Reading
    	// or writing the connection will return an i/o timeout if this deadline is exceeded.
    	// Currently, we use the same value as the kubelet websocket server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pkg/model/proxy.go

    	TLSClientRootCert string `json:"TLS_CLIENT_ROOT_CERT,omitempty"`
    
    	CertBaseDir string `json:"BASE,omitempty"`
    
    	// IdleTimeout specifies the idle timeout for the proxy, in duration format (10s).
    	// If not set, default timeout is 1 hour.
    	IdleTimeout string `json:"IDLE_TIMEOUT,omitempty"`
    
    	// HTTP10 indicates the application behind the sidecar is making outbound http requests with HTTP/1.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. internal/event/target/redis.go

    		if err := queueStore.Open(); err != nil {
    			return nil, fmt.Errorf("unable to initialize the queue store of Redis `%s`: %w", id, err)
    		}
    	}
    
    	pool := &redis.Pool{
    		MaxIdle:     3,
    		IdleTimeout: 2 * 60 * time.Second,
    		Dial: func() (redis.Conn, error) {
    			conn, err := redis.Dial("tcp", args.Addr.String())
    			if err != nil {
    				return nil, err
    			}
    
    			if args.Password != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. manifests/charts/base/crds/crd-all.gen.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: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  5. pkg/test/echo/server/endpoint/grpc.go

    		return err
    	}
    	// Store the actual listening port back to the argument.
    	s.Port.Port = p
    
    	opts := []grpc.ServerOption{
    		grpc.KeepaliveParams(keepalive.ServerParameters{
    			MaxConnectionIdle: idleTimeout,
    		}),
    	}
    	if s.Port.TLS {
    		epLog.Infof("Listening GRPC (over TLS) on %v", p)
    		// Create the TLS credentials
    		creds, errCreds := credentials.NewServerTLSFromFile(s.TLSCert, s.TLSKey)
    		if errCreds != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 25 17:30:37 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginTest.kt

                        File(projectRoot, "build.gradle.kts")
                            .writeText("plugins { id(\"my-plugin\") }")
    
                        // and:
                        System.setProperty("org.gradle.daemon.idletimeout", "1000")
                        System.setProperty("org.gradle.daemon.registry.base", "${existing("daemons-registry").normalisedPath}")
                        File(projectRoot, "gradle.properties").writeText("org.gradle.jvmargs=-Xmx128m")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiIntegrationTest.groovy

                run {
                    args = ["${TextUtil.escapeString(gradleHomeDirPath)}", "${TextUtil.escapeString(gradleUserHomeDirPath)}"]
                    systemProperty 'org.gradle.daemon.idletimeout', 10000
                    systemProperty 'org.gradle.daemon.registry.base', "${TextUtil.escapeString(projectDir.file("daemon").absolutePath)}"
                }
    
                task thing {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. cmd/globals.go

    	Interface                 string
    
    	RootUser, RootPwd string
    
    	FTP  []string
    	SFTP []string
    
    	MemLimit uint64
    
    	UserTimeout         time.Duration
    	ShutdownTimeout     time.Duration
    	IdleTimeout         time.Duration
    	ReadHeaderTimeout   time.Duration
    	MaxIdleConnsPerHost int
    
    	SendBufSize, RecvBufSize int
    	CrossDomainXML           string
    	// The layout of disks as interpreted
    	Layout disksLayout
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top