Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 782 for connectTo (0.39 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/autoregistration/controller.go

    }
    
    // OnDisconnect determines whether a connected proxy represents a non-Kubernetes
    // workload and, if that's the case, terminates special processing required for that type
    // of workloads, such as auto-registration, health status updates, etc.
    //
    // If proxy represents a workload (be it auto-registered or not), WorkloadEntry resource
    // will be updated to reflect that the proxy is no longer connected to this particular `istiod`
    // instance.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  8. src/syscall/tables_js.go

    	ECONNABORTED:    "Connection aborted",
    	ECONNRESET:      "Connection reset by peer",
    	ENOBUFS:         "No buffer space available",
    	EISCONN:         "Socket is already connected",
    	ENOTCONN:        "Socket is not connected",
    	ESHUTDOWN:       "Can't send after socket shutdown",
    	ETIMEDOUT:       "Connection timed out",
    	ECONNREFUSED:    "Connection refused",
    	EHOSTDOWN:       "Host is down",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  9. pilot/pkg/xds/debug.go

    		// We can't guarantee the Pilot we are connected to has a connection to the proxy we requested
    		// There isn't a great way around this, but for debugging purposes its suitable to have the caller retry.
    		w.WriteHeader(http.StatusNotFound)
    		_, _ = w.Write([]byte("Proxy not connected to this Pilot instance. It may be connected to another instance.\n"))
    		return
    	}
    	var connections []*Connection
    	if con != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

    import okhttp3.internal.assertThreadHoldsLock
    import okhttp3.internal.closeQuietly
    import okhttp3.internal.concurrent.Task
    import okhttp3.internal.concurrent.TaskRunner
    import okhttp3.internal.connection.Exchange
    import okhttp3.internal.connection.RealCall
    import okhttp3.internal.okHttpName
    import okhttp3.internal.ws.WebSocketProtocol.CLOSE_CLIENT_GOING_AWAY
    import okhttp3.internal.ws.WebSocketProtocol.CLOSE_MESSAGE_MAX
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top