Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,348 for connect0 (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    				if err != nil {
    					scope.err(err, w, req)
    					return
    				}
    			}
    		}
    		requestInfo, _ := request.RequestInfoFrom(ctx)
    		metrics.RecordLongRunning(req, requestInfo, metrics.APIServerComponent, func() {
    			handler, err := connecter.Connect(ctx, name, opts, &responder{scope: scope, req: req, w: w})
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/transport/Transport.java

                if (n <= 0) {
                    break;
                }
                i += n;
            }
    
            return i;
        }
    
        /* state values
         * 0 - not connected
         * 1 - connecting
         * 2 - run connected
         * 3 - connected
         * 4 - error
         */
        int state = 0;
    
        String name = "Transport" + id++;
        Thread thread;
        TransportException te;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonConnector.java

                LOGGER.debug("Cannot connect to daemon {} due to {}. Ignoring.", daemon, e);
            }
            return null;
        }
    
        @Override
        public void markDaemonAsUnavailable(DaemonConnectDetails daemon) {
            removeDaemonFromRegistry(daemon, "unable to communicate with daemon");
        }
    
        @Override
        public DaemonClientConnection connect(ExplainingSpec<DaemonContext> constraint) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

                connector.useGradleUserHomeDir(new File(context.gradleUserHomeDir.path))
    
                try (def connection = connector.connect()) {
                    connection.getModel(BuildEnvironment.class)
                }
            }
    
            isolateFromGradleOwnBuild(connector)
    
            connector.useGradleUserHomeDir(new File(gradleUserHomeDir.path))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHubBackedClient.java

    public class MessageHubBackedClient implements MessagingClient {
        private final OutgoingConnector connector;
        private final ExecutorFactory executorFactory;
    
        public MessageHubBackedClient(OutgoingConnector connector, ExecutorFactory executorFactory) {
            this.connector = connector;
            this.executorFactory = executorFactory;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/MutableNetwork.java

       *
       * <p>If {@code edge} already connects an endpoint pair equal to {@code endpoints}, then this
       * method will have no effect.
       *
       * @return {@code true} if the network was modified as a result of this call
       * @throws IllegalArgumentException if {@code edge} already exists in the graph and connects some
       *     other endpoint pair that is not equal to {@code endpoints}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/MutableNetwork.java

       *
       * <p>If {@code edge} already connects an endpoint pair equal to {@code endpoints}, then this
       * method will have no effect.
       *
       * @return {@code true} if the network was modified as a result of this call
       * @throws IllegalArgumentException if {@code edge} already exists in the graph and connects some
       *     other endpoint pair that is not equal to {@code endpoints}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  8. src/net/http/socks_bundle.go

    	}
    	a, err := d.connect(ctx, c, address)
    	if err != nil {
    		proxy, dst, _ := d.pathAddrs(address)
    		return nil, &net.OpError{Op: d.cmd.String(), Net: network, Source: proxy, Addr: dst, Err: err}
    	}
    	return a, nil
    }
    
    // Dial connects to the provided address on the provided network.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

    import okio.BufferedSource
    import okio.buffer
    import okio.sink
    import okio.source
    
    /**
     * A single attempt to connect to a remote server, including these steps:
     *
     *  * [TCP handshake][connectSocket]
     *  * Optional [CONNECT tunnels][connectTunnel]. When using an HTTP proxy to reach an HTTPS server
     *    we must send a `CONNECT` request, and handle authorization challenges from the proxy.
     *  * Optional [TLS handshake][connectTls].
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. src/net/internal/socktest/sys_unix.go

    	return nil
    }
    
    // Connect wraps syscall.Connect.
    func (sw *Switch) Connect(s int, sa syscall.Sockaddr) (err error) {
    	so := sw.sockso(s)
    	if so == nil {
    		return syscall.Connect(s, sa)
    	}
    	sw.fmu.RLock()
    	f := sw.fltab[FilterConnect]
    	sw.fmu.RUnlock()
    
    	af, err := f.apply(so)
    	if err != nil {
    		return err
    	}
    	so.Err = syscall.Connect(s, sa)
    	if err = af.apply(so); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top