Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for idletimeout (0.25 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. 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)
  7. 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)
  8. 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)
  9. 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)
  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