Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,331 for connections (0.19 sec)

  1. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                      type: integer
                                    idleTimeout:
                                      description: The idle timeout for upstream connection
                                        pool connections.
                                      type: string
                                      x-kubernetes-validations:
                                      - message: must be a valid duration greater than
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  2. pkg/envoy/agent_test.go

    		name     string
    		stats    string
    		expected int
    	}{
    		{
    			"invalid stats",
    			invalidStats,
    			-1,
    		},
    		{
    			"valid active connections",
    			downstreamCxPostiveAcStats,
    			19,
    		},
    		{
    			"zero active connections",
    			downstreamCxZeroAcStats,
    			0,
    		},
    	}
    
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 19 20:22:09 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/graceful_termination_test.go

    							Weight:       0,
    							ActiveConn:   0,
    							InactiveConn: 10,
    						},
    					},
    				},
    			},
    			err: nil,
    		},
    		{
    			name: "graceful delete, real server has connections, but udp connections are deleted immediately",
    			vs: &utilipvs.VirtualServer{
    				Address:  netutils.ParseIPSloppy("1.1.1.1"),
    				Protocol: "udp",
    				Port:     uint16(80),
    			},
    			rs: &utilipvs.RealServer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. manifests/charts/base/crds/crd-all.gen.yaml

                                      type: integer
                                    idleTimeout:
                                      description: The idle timeout for upstream connection
                                        pool connections.
                                      type: string
                                      x-kubernetes-validations:
                                      - message: must be a valid duration greater than
    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. src/main/java/jcifs/Configuration.java

         * 
         * Property <tt>jcifs.smb.client.lport</tt> (int)
         * 
         * @return local port to use for outgoing connections
         */
        int getLocalPort ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.laddr</tt> (string)
         * 
         * @return local address to use for outgoing connections
         */
        InetAddress getLocalAddr ();
    
    
        /**
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_4x.md

    _2020-03-08_
    
     *  Fix: Don't reuse a connection on redirect if certs match but DNS does not. For better
        locality and performance OkHttp attempts to use the same pooled connection across redirects and
        follow-ups. It independently shares connections when the IP addresses and certificates match,
        even if the host names do not. In 4.4.0 we introduced a regression where we shared a connection
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/ztunnelserver.go

    	// add pod goes to newest connection
    	// delete pod goes to all connections
    	conns *connMgr
    	pods  PodNetnsCache
    }
    
    var _ ZtunnelServer = &ztunnelServer{}
    
    func newZtunnelServer(addr string, pods PodNetnsCache) (*ztunnelServer, error) {
    	if addr == "" {
    		return nil, fmt.Errorf("addr cannot be empty")
    	}
    
    	resolvedAddr, err := net.ResolveUnixAddr("unixpacket", addr)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Address.kt

    import okhttp3.internal.toImmutableList
    
    /**
     * A specification for a connection to an origin server. For simple connections, this is the
     * server's hostname and port. If an explicit proxy is requested (or [no proxy][Proxy.NO_PROXY] is
     * explicitly requested), this also includes that proxy information. For secure connections the
     * address also includes the SSL socket factory, hostname verifier, and certificate pinner.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. src/crypto/tls/quic.go

    	QUICHandshakeDone
    
    	// QUICResumeSession indicates that a client is attempting to resume a previous session.
    	// [QUICEvent.SessionState] is set.
    	//
    	// For client connections, this event occurs when the session ticket is selected.
    	// For server connections, this event occurs when receiving the client's session ticket.
    	//
    	// The application may set [QUICEvent.SessionState.EarlyData] to false before the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. pkg/kubelet/certificate/transport.go

    //
    // The config must not already provide an explicit transport.
    //
    // The returned function allows forcefully closing all active connections.
    //
    // The returned transport periodically checks the manager to determine if the
    // certificate has changed. If it has, the transport shuts down all existing client
    // connections, forcing the client to re-handshake with the server and use the
    // new certificate.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 08 13:57:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
Back to top