Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 782 for connectTo (0.28 sec)

  1. pilot/pkg/xds/ads.go

    func newConnection(peerAddr string, stream DiscoveryStream) *Connection {
    	return &Connection{
    		Connection: xds.NewConnection(peerAddr, stream),
    	}
    }
    
    func (conn *Connection) Initialize(node *core.Node) error {
    	return conn.s.initConnection(node, conn, conn.ids)
    }
    
    func (conn *Connection) Close() {
    	conn.s.closeConnection(conn)
    }
    
    func (conn *Connection) Watcher() xds.Watcher {
    	return conn.proxy
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/EventListener.kt

      }
    
      /**
       * Invoked after a connection has been acquired for the `call`.
       *
       * This can be invoked more than 1 time for a single [Call]. For example, if the response
       * to the [Call.request] is a redirect to a different address.
       */
      open fun connectionAcquired(
        call: Call,
        connection: Connection,
      ) {
      }
    
      /**
       * Invoked after a connection has been released for the `call`.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/transport/Transport.java

                    break;
                }
                i += n;
            }
    
            return i;
        }
    
        /*
         * state values
         * 0 - not connected
         * 1 - connecting
         * 2 - run connected
         * 3 - connected
         * 4 - error
         * 5 - disconnecting
         * 6 - disconnected/invalid
         */
        protected volatile int state = 0;
    
        protected String name = "Transport" + id++;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 01 18:12:21 UTC 2020
    - 24.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	Name string `json:"name"`
    
    	// connection is the exact information used to configure the egress selection
    	Connection Connection `json:"connection"`
    }
    
    // Connection provides the configuration for a single egress selection client.
    type Connection struct {
    	// Protocol is the protocol used to connect from client to the konnectivity server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

                        nonDaemonProcess.accept(false) {client ->
                            // When a client connects, drain the input from the client and shutdown any IO
                            // This causes the launcher to receive an empty result
                            println("Client ${client.remoteSocketAddress} tried to connect")
                            while (client.inputStream.available() > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy_test.go

    	// Setup test helpers
    	waitDisconnect := func() {
    		retry.UntilSuccessOrFail(t, func() error {
    			proxy.connectedMutex.Lock()
    			defer proxy.connectedMutex.Unlock()
    			if proxy.connected != nil {
    				return fmt.Errorf("still connected")
    			}
    			return nil
    		}, retry.Timeout(time.Second), retry.Delay(time.Millisecond))
    	}
    	expectCondition := func(expected string) {
    		t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. internal/rest/client.go

    func (c *Client) Close() {
    	atomic.StoreInt32(&c.connected, closed)
    }
    
    // NewClient - returns new REST client.
    func NewClient(uu *url.URL, tr http.RoundTripper, newAuthToken func(aud string) string) *Client {
    	connected := int32(online)
    	urlStr := uu.String()
    	u, err := url.Parse(urlStr)
    	if err != nil {
    		// Mark offline, with no reconnection attempts.
    		connected = int32(offline)
    		err = &url.Error{URL: urlStr, Err: err}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. tools/bug-report/pkg/testdata/input/ingress.log

    2020-06-30T00:06:51.794349Z	info	transport: loopyWriter.run returning. connection error: desc = "transport is closing"
    2020-06-30T00:06:51.794488Z	info	pickfirstBalancer: HandleSubConnStateChange: 0xc00087d1e0, {CONNECTING <nil>}
    2020-06-30T00:06:51.794505Z	info	Channel Connectivity change to CONNECTING
    2020-06-30T00:06:51.794536Z	info	Subchannel picks a new address "istiod.istio-system.svc:15012" to connect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  9. src/net/smtp/smtp.go

    	"io"
    	"net"
    	"net/textproto"
    	"strings"
    )
    
    // A Client represents a client connection to an SMTP server.
    type Client struct {
    	// Text is the textproto.Conn used by the Client. It is exported to allow for
    	// clients to add extensions.
    	Text *textproto.Conn
    	// keep a reference to the connection so it can be used to create a TLS
    	// connection later
    	conn net.Conn
    	// whether the Client is using TLS
    	tls        bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. src/syscall/zerrors_windows.go

    	ECOMM - APPLICATION_ERROR:           "communication error on send",
    	ECONNABORTED - APPLICATION_ERROR:    "software caused connection abort",
    	ECONNREFUSED - APPLICATION_ERROR:    "connection refused",
    	ECONNRESET - APPLICATION_ERROR:      "connection reset by peer",
    	EDEADLK - APPLICATION_ERROR:         "resource deadlock avoided",
    	EDEADLOCK - APPLICATION_ERROR:       "resource deadlock avoided",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
Back to top