Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,378 for connectTo (0.23 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

        // 3 different lookups in the connection pool!
        val pooled3 = routePlanner.planReusePooledConnection(this, routes)
        if (pooled3 != null) return pooled3.connection
    
        connection.withLock {
          connectionPool.put(connection)
          user.acquireConnectionNoEvents(connection)
        }
    
        user.connectionAcquired(connection)
        user.connectionConnectionAcquired(connection)
        return connection
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/UserHomeDirCrossVersionSpec.groovy

            when:
            toolingApi.withUserHome(userHomeDir)
            toolingApi.withConnector { connector ->
                connector.useGradleUserHomeDir(userHomeDir)
            }
            toolingApi.withConnection { connection ->
                BuildLauncher build = connection.newBuild()
                build.forTasks("gradleBuild");
                build.standardOutput = baos
                build.run()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/RecoverFromBrokenResolutionIntegrationTest.groovy

            failure.assertHasCause("Could not resolve all files for configuration ':compile'.")
            failure.assertThatCause(matchesRegexp(".*?Connect to 127.0.0.1:${port} (\\[.*\\])? failed: Connection refused.*"))
    
            when:
            server.resetExpectations()
            then:
            executer.withArgument("--offline")
            run 'retrieve'
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_2x.md

        health check fails.
    
    
    ## Version 2.7.0
    
    _2015-12-13_
    
     *  **Rewritten connection management.** Previously OkHttp's connection pool
        managed both idle and active connections for HTTP/2, but only idle
        connections for HTTP/1.x. With this update the connection pool manages both
        idle and active connections for everything. OkHttp now detects and warns on
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/plugin/v1beta1/client.go

    	return &client{
    		resource: r,
    		socket:   socketPath,
    		handler:  h,
    	}
    }
    
    // Connect is for establishing a gRPC connection between device manager and device plugin.
    func (c *client) Connect() error {
    	client, conn, err := dial(c.socket)
    	if err != nil {
    		klog.ErrorS(err, "Unable to connect to device plugin client with socket path", "path", c.socket)
    		return err
    	}
    	c.mutex.Lock()
    	c.grpc = conn
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:35:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. src/net/http/readrequest_test.go

    			"3\r\nbar\r\n" +
    			"0\r\n" +
    			"\r\n",
    		nil,
    		noBodyStr,
    		noTrailer,
    		`bad Content-Length "notdigits"`,
    	},
    
    	// CONNECT request with domain name:
    	{
    		"CONNECT www.google.com:443 HTTP/1.1\r\n\r\n",
    
    		&Request{
    			Method: "CONNECT",
    			URL: &url.URL{
    				Host: "www.google.com:443",
    			},
    			Proto:         "HTTP/1.1",
    			ProtoMajor:    1,
    			ProtoMinor:    1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/syscall/tables_wasip1.go

    	EALREADY:        "Socket already connected",
    	EBADF:           "Bad file number",
    	EBADMSG:         "Trying to read unreadable message",
    	EBUSY:           "Device or resource busy",
    	ECANCELED:       "Operation canceled.",
    	ECHILD:          "No child processes",
    	ECONNABORTED:    "Connection aborted",
    	ECONNREFUSED:    "Connection refused",
    	ECONNRESET:      "Connection reset by peer",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// Currently supported values are "controlplane", "etcd" and "cluster"
    	Name string
    
    	// Connection is the exact information used to configure the egress selection
    	Connection 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.
    	ProxyProtocol ProtocolType
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. src/net/net_windows_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	// getmac output looks like:
    	//
    	//Connection Name:  Local Area Connection
    	//Network Adapter:  Intel Gigabit Network Connection
    	//Physical Address: XX-XX-XX-XX-XX-XX
    	//Transport Name:   \Device\Tcpip_{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}
    	//
    	//Connection Name:  Wireless Network Connection
    	//Network Adapter:  Wireles WLAN Card
    	//Physical Address: XX-XX-XX-XX-XX-XX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    func (r *RequestScope) GetEquivalentResourceMapper() runtime.EquivalentResourceMapper {
    	return r.EquivalentResourceMapper
    }
    
    // ConnectResource returns a function that handles a connect request on a rest.Storage object.
    func ConnectResource(connecter rest.Connecter, scope *RequestScope, admit admission.Interface, restPath string, isSubresource bool) http.HandlerFunc {
    	return func(w http.ResponseWriter, req *http.Request) {
    		if isDryRun(req.URL) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
Back to top