Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for TCPKeepalive (0.18 sec)

  1. pkg/bootstrap/config.go

    			option.EnvoyMetricsServiceTLS(config.EnvoyMetricsService.TlsSettings, metadata),
    			option.EnvoyMetricsServiceTCPKeepalive(config.EnvoyMetricsService.TcpKeepalive))
    	} else if config.EnvoyMetricsServiceAddress != "" { // nolint: staticcheck
    		opts = append(opts, option.EnvoyMetricsServiceAddress(config.EnvoyMetricsService.Address))
    	}
    
    	// Add options for Envoy access log.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    				Tcp: &networking.ConnectionPoolSettings_TCPSettings{
    					TcpKeepalive: &networking.ConnectionPoolSettings_TCPSettings_TcpKeepalive{
    						Time: &durationpb.Duration{Seconds: 10},
    					},
    				},
    			},
    			wantConnOpts: &cluster.UpstreamConnectionOptions{
    				TcpKeepalive: &core.TcpKeepalive{
    					KeepaliveTime: &wrappers.UInt32Value{Value: uint32(10)},
    				},
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. api/go1.3.txt

    pkg syscall (windows-386), func NewCallbackCDecl(interface{}) uintptr
    pkg syscall (windows-386), type TCPKeepalive struct
    pkg syscall (windows-386), type TCPKeepalive struct, Interval uint32
    pkg syscall (windows-386), type TCPKeepalive struct, OnOff uint32
    pkg syscall (windows-386), type TCPKeepalive struct, Time uint32
    pkg syscall (windows-amd64), const ERROR_MORE_DATA = 234
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                        to a destination host.
                                      format: int32
                                      type: integer
                                    tcpKeepalive:
                                      description: If set then set SO_KEEPALIVE on the
                                        socket to enable TCP Keepalives.
                                      properties:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (2)
  5. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

    Format":"","autoInject":"enabled","clusterDomain":"cluster.local","componentLogLevel":"misc:error","concurrency":2,"dnsRefreshRate":"300s","enableCoreDump":false,"envoyAccessLogService":{"enabled":false},"envoyMetricsService":{"enabled":false,"tcpKeepalive":{"interval":"10s","probes":3,"time":"10s"},"tlsSettings":{"mode":"DISABLE","subjectAltNames":[]}},"envoyStatsd":{"enabled":false},"excludeIPRanges":"","excludeInboundPorts":"","excludeOutboundPorts":"","image":"docker.io/istio/proxyv2:1.3.1",...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

    Format":"","autoInject":"enabled","clusterDomain":"cluster.local","componentLogLevel":"misc:error","concurrency":2,"dnsRefreshRate":"300s","enableCoreDump":false,"envoyAccessLogService":{"enabled":false},"envoyMetricsService":{"enabled":false,"tcpKeepalive":{"interval":"10s","probes":3,"time":"10s"},"tlsSettings":{"mode":"DISABLE","subjectAltNames":[]}},"envoyStatsd":{"enabled":false},"excludeIPRanges":"","excludeInboundPorts":"","excludeOutboundPorts":"","image":"docker.io/istio/proxyv2:1.3.1",...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. manifests/charts/base/crds/crd-all.gen.yaml

                                        to a destination host.
                                      format: int32
                                      type: integer
                                    tcpKeepalive:
                                      description: If set then set SO_KEEPALIVE on the
                                        socket to enable TCP Keepalives.
                                      properties:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  10. src/syscall/types_windows.go

    	ProviderReserved  uint32
    	ProtocolName      [WSAPROTOCOL_LEN + 1]uint16
    }
    
    type WSAProtocolChain struct {
    	ChainLen     int32
    	ChainEntries [MAX_PROTOCOL_CHAIN]uint32
    }
    
    type TCPKeepalive struct {
    	OnOff    uint32
    	Time     uint32
    	Interval uint32
    }
    
    type symbolicLinkReparseBuffer struct {
    	SubstituteNameOffset uint16
    	SubstituteNameLength uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top