Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for TCPKeepalive (0.22 sec)

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

    					g.Expect(cluster.UpstreamConnectionOptions.TcpKeepalive).NotTo(BeNil())
    					g.Expect(cluster.UpstreamConnectionOptions.TcpKeepalive.KeepaliveProbes.Value).
    						To(Equal(expected.Tcp.TcpKeepalive.Probes))
    					g.Expect(cluster.UpstreamConnectionOptions.TcpKeepalive.KeepaliveTime.Value).
    						To(Equal(uint32(expected.Tcp.TcpKeepalive.Time.Seconds)))
    					g.Expect(cluster.UpstreamConnectionOptions.TcpKeepalive.KeepaliveInterval.Value).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K 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. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    TCP connection timeout. type: string maxConnectionDuratio: description: The maximum duration of a connection. type: string maxConnections: description: Maximum number of HTTP1 /TCP connections to a destination host. format: int32 type: integer tcpKeepalive: description: If set then set SO_KEEPALIVE on the socket to enable TCP Keepalives. properties: interval: description: The time duration between keep-alive probes. type: string probes: description: Maximum number of keepalive probes to send without...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/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: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
Back to top