Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 782 for connectTo (0.24 sec)

  1. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiRemoteIntegrationTest.groovy

        @Issue('https://github.com/gradle/gradle/issues/15405')
        def "calling disconnect on uninitialized connection does not trigger wrapper download"() {
            when:
            def connector = toolingApi.connector()
            connector.useDistribution(URI.create("http://localhost:${server.port}/custom-dist.zip"))
            connector.connect()
            connector.disconnect()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. 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.
    //
    // Unlike DialContext, it returns a raw transport connection instead
    // of a forward proxy connection.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeConnection.java

            }
        }
    
    
        /**
         * Use a exclusive connection for this tree
         * 
         * If an exclusive connection is used the caller must make sure that the tree handle is kept alive,
         * otherwise the connection will be disconnected once the usage drops to zero.
         * 
         * @param np
         *            whether to use an exclusive connection
         */
        void setNonPooled ( boolean np ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmHttpURLConnection.java

        private CIFSContext transportContext;
    
    
        /**
         * 
         * @param connection
         *            connection to wrap
         * @param tc
         *            context to use
         */
        public NtlmHttpURLConnection ( HttpURLConnection connection, CIFSContext tc ) {
            super(connection.getURL());
            this.connection = connection;
            this.transportContext = tc;
            this.requestProperties = new HashMap<>();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/connection/FastFallbackExchangeFinderTest.kt

        assertEvents(
          "plan 1 TCP connected",
          "plan 0 cancel",
          "plan 1 TLS connecting...",
          "plan 1 TLS connect failed",
          "plan 2 TCP connecting...",
          "plan 2 TCP connected",
          "plan 2 TLS connecting...",
          "plan 2 TLS connected",
        )
    
        taskFaker.advanceUntil(270.ms)
        assertEvents(
          "plan 0 TCP connect canceled",
        )
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTreeImpl.java

                        // failure to connect
                        throw new SmbException("Tree disconnected while waiting for connection");
                    }
                    else if ( before == 2 ) {
                        // concurrently connected
                        return null;
                    }
    
                    if ( log.isDebugEnabled() ) {
                        log.debug("Connection state was " + before);
                    }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector_test.go

    					{
    						Name: "cluster",
    						Connection: apiserver.Connection{
    							ProxyProtocol: apiserver.ProtocolDirect,
    						},
    					},
    					{
    						Name: "controlplane",
    						Connection: apiserver.Connection{
    							ProxyProtocol: apiserver.ProtocolDirect,
    						},
    					},
    					{
    						Name: "etcd",
    						Connection: apiserver.Connection{
    							ProxyProtocol: apiserver.ProtocolDirect,
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 26 22:41:29 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  8. pkg/istio-agent/xds_proxy_delta.go

    // Every time envoy makes a fresh connection to the agent, we reestablish a new connection to the upstream xds
    // This ensures that a new connection between istiod and agent doesn't end up consuming pending messages from envoy
    // as the new connection may not go to the same istiod. Vice versa case also applies.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go

    }
    
    type proxyServerConnector interface {
    	// connect establishes connection to the proxy server, and returns a
    	// proxier based on the connection.
    	//
    	// The provided Context must be non-nil. The context is used for connecting to the proxy only.
    	// If the context expires before the connection is complete, an error is returned.
    	// Once successfully connected to the proxy, any expiration of the context will not affect the connection.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

        }
    
        def "cannot run build operations on project connection after disconnect"() {
            setup:
            def connector = toolingApi.connector()
            ProjectConnection connection = connector.connect()
            connection.getModel(GradleProject)
            connector.disconnect()
    
            when:
            connection.getModel(GradleProject)
    
            then:
            def e = thrown(RuntimeException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top