Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for idletimeout (0.45 sec)

  1. pilot/pkg/networking/core/networkfilter.go

    	}
    
    	idleTimeout := destinationRule.GetTrafficPolicy().GetConnectionPool().GetTcp().GetIdleTimeout()
    	if idleTimeout == nil {
    		idleTimeout = parseDuration(lb.node.Metadata.IdleTimeout)
    	}
    	tcpProxy := &tcp.TcpProxy{
    		StatPrefix:                      statPrefix,
    		ClusterSpecifier:                clusterSpecifier,
    		IdleTimeout:                     idleTimeout,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_traffic_policy.go

    		}
    		if idleTimeout == nil {
    			idleTimeout = settings.Tcp.IdleTimeout
    		}
    	}
    	applyTCPKeepalive(mesh, mc.cluster, settings.Tcp)
    
    	mc.cluster.CircuitBreakers = &cluster.CircuitBreakers{
    		Thresholds: []*cluster.CircuitBreakers_Thresholds{threshold},
    	}
    
    	if maxConnectionDuration != nil || idleTimeout != nil || maxRequestsPerConnection > 0 || maxConcurrentStreams > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/networkfilter_test.go

    			}
    			node := &model.Proxy{Metadata: &model.NodeMetadata{IdleTimeout: tt.idleTimeout}}
    			listenerFilters := NewListenerBuilder(cg.SetupProxy(node), cg.PushContext()).buildInboundNetworkFilters(fcc)
    			tcp := &tcp.TcpProxy{}
    			listenerFilters[len(listenerFilters)-1].GetTypedConfig().UnmarshalTo(tcp)
    			if !reflect.DeepEqual(tcp.IdleTimeout, tt.expected) {
    				t.Fatalf("Unexpected IdleTimeout, Expecting %s, Got %s", tt.expected, tcp.IdleTimeout)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java

        }
    
        public File getGradleUserHomeDir() {
            return gradleUserHomeDir;
        }
    
        public int getIdleTimeout() {
            return idleTimeout;
        }
    
        public void setIdleTimeout(int idleTimeout) {
            this.idleTimeout = idleTimeout;
        }
    
        public int getPeriodicCheckInterval() {
            return periodicCheckInterval;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_builder.go

    	connectionManager.UpgradeConfigs = []*hcm.HttpConnectionManager_UpgradeConfig{websocketUpgrade}
    
    	if idleTimeout := parseDuration(lb.node.Metadata.IdleTimeout); idleTimeout != nil {
    		connectionManager.CommonHttpProtocolOptions = &core.HttpProtocolOptions{
    			IdleTimeout: idleTimeout,
    		}
    	}
    
    	connectionManager.StreamIdleTimeout = durationpb.New(0 * time.Second)
    
    	if httpOpts.rds != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. pkg/test/echo/server/endpoint/http.go

    	}
    }
    
    func (s *httpInstance) GetConfig() Config {
    	return s.Config
    }
    
    func (s *httpInstance) Start(onReady OnReadyFunc) error {
    	h2s := &http2.Server{
    		IdleTimeout: idleTimeout,
    	}
    
    	s.server = &http.Server{
    		IdleTimeout: idleTimeout,
    		Handler: h2c.NewHandler(&httpHandler{
    			Config: s.Config,
    		}, h2s),
    	}
    
    	var listener net.Listener
    	var port int
    	var err error
    	if s.isUDS() {
    		port = 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/secure_serving.go

    		return nil, nil, err
    	}
    
    	secureServer := &http.Server{
    		Addr:           s.Listener.Addr().String(),
    		Handler:        handler,
    		MaxHeaderBytes: 1 << 20,
    		TLSConfig:      tlsConfig,
    
    		IdleTimeout:       90 * time.Second, // matches http.DefaultTransport keep-alive timeout
    		ReadHeaderTimeout: 32 * time.Second, // just shy of requestTimeoutUpperBound
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

            if (operationParameters.getDaemonMaxIdleTimeValue() != null && operationParameters.getDaemonMaxIdleTimeUnits() != null) {
                int idleTimeout = (int) operationParameters.getDaemonMaxIdleTimeUnits().toMillis(operationParameters.getDaemonMaxIdleTimeValue());
                daemonParams.setIdleTimeout(idleTimeout);
            }
    
            Map<String, String> effectiveSystemProperties = new HashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonBuildOptions.java

            return options;
        }
    
        public static class IdleTimeoutOption extends StringBuildOption<DaemonParameters> {
            public static final String GRADLE_PROPERTY = "org.gradle.daemon.idletimeout";
    
            public IdleTimeoutOption() {
                super(GRADLE_PROPERTY);
            }
    
            @Override
            public void applyTo(String value, DaemonParameters settings, Origin origin) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top