Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 551 for connect0 (2.11 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/MessageHubBackedServerTest.groovy

            then:
            1 * connector.accept(_, false) >> { acceptAction = it[0]; return acceptor }
    
            when:
            acceptAction.execute(completion)
    
            then:
            1 * executorFactory.create("${completion} workers") >> executor
            1 * connectAction.execute(_) >> { ObjectConnection c -> connection = c }
    
            when:
            connection.connect()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbTree.java

        
                session.transport.connect();
    
                unc = "\\\\" + session.transport.tconHostName + '\\' + share;
        
                /* IBM iSeries doesn't like specifying a service. Always reset
                 * the service to whatever was determined in the constructor.
                 */
                service = service0;
        
                /*
                 * Tree Connect And X Request / Response
                 */
        
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8K bytes
    - Viewed (0)
  3. pkg/registry/core/node/rest/proxy.go

    func (r *ProxyREST) NewConnectOptions() (runtime.Object, bool, string) {
    	return &api.NodeProxyOptions{}, true, "path"
    }
    
    // Connect returns a handler for the node proxy
    func (r *ProxyREST) Connect(ctx context.Context, id string, opts runtime.Object, responder rest.Responder) (http.Handler, error) {
    	proxyOpts, ok := opts.(*api.NodeProxyOptions)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 19 13:59:13 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. docs/features/connections.md

     2. It attempts to retrieve a connection with that address from the **connection pool**.
     3. If it doesn't find a connection in the pool, it selects a **route** to attempt. This usually means making a DNS request to get the server's IP addresses. It then selects a TLS version and proxy server if necessary.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Feb 21 03:33:59 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/remote/internal/hub/MessageHubIntegrationTest.groovy

                hub.addHandler(channel, handler)
            }
    
            def connectTo(Participant other) {
                def connector = new TestConnector()
                hub.addConnection(connector.connectionA)
                other.hub.addConnection(connector.connectionB)
            }
    
            def stop() {
                hub.stop()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServerConnector.java

    package org.gradle.launcher.daemon.server;
    
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.internal.remote.Address;
    
    /**
     * Opens a server connection for clients to connect to communicate with a daemon.
     * <p>
     * A server connector should only be used by one daemon, and has a single use lifecycle.
     * Implementations must be threadsafe so that start/stop can be called from different threads.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/net/main_windows_test.go

    	origListen      = listenFunc
    	origAccept      = poll.AcceptFunc
    )
    
    func installTestHooks() {
    	wsaSocketFunc = sw.WSASocket
    	poll.CloseFunc = sw.Closesocket
    	connectFunc = sw.Connect
    	poll.ConnectExFunc = sw.ConnectEx
    	listenFunc = sw.Listen
    	poll.AcceptFunc = sw.AcceptEx
    }
    
    func uninstallTestHooks() {
    	wsaSocketFunc = origWSASocket
    	poll.CloseFunc = origClosesocket
    	connectFunc = origConnect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:36:30 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/internal/Exceptions.java

            return String.format("Unsupported method: %s."
                    + "\nThe version of Gradle you connect to does not support that method."
                    + "\nTo resolve the problem you can change/upgrade the target version of Gradle you connect to."
                    + "\nAlternatively, you can ignore this exception and read other information from the model.",
                method);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. src/net/fd_unix.go

    		// from connect.
    		done := make(chan struct{})
    		interruptRes := make(chan error)
    		defer func() {
    			close(done)
    			if ctxErr := <-interruptRes; ctxErr != nil && ret == nil {
    				// The interrupter goroutine called SetWriteDeadline,
    				// but the connect code below had returned from
    				// waitWrite already and did a successful connect (ret
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 20:19:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/kube/workload.go

    		if w.forwarder == nil {
    			// We only want to do reconnects here, if we never connected let the main flow handle it.
    			return
    		}
    		// Only reconnect if the pod is ready
    		if !isPodReady(w.pod) {
    			return
    		}
    		con := !w.isConnected()
    		if con {
    			log.Warnf("pod: %s/%s port forward terminated", w.pod.Namespace, w.pod.Name)
    			err := w.connect(w.pod)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 19:46:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top