Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 643 for dialing (0.25 sec)

  1. cmd/kubeadm/app/util/runtime/runtime_test.go

    				}
    				theSocket := tmpFile.Name()
    				os.Remove(theSocket)
    				tmpFile.Close()
    
    				con, err := net.Listen("unix", theSocket)
    				if err != nil {
    					t.Fatalf("unexpected error while dialing a socket: %v", err)
    				}
    				defer con.Close()
    
    				if !isExistingSocket("unix://" + theSocket) {
    					t.Fatalf("isExistingSocket(%q) gave unexpected result. Should have been true, instead of false", theSocket)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/database/sql/driver/driver.go

    	// maintains a pool of idle connections for efficient re-use.
    	//
    	// The provided context.Context is for dialing purposes only
    	// (see net.DialContext) and should not be stored or used for
    	// other purposes. A default timeout should still be used
    	// when dialing as a connection pool may call Connect
    	// asynchronously to any query.
    	//
    	// The returned connection is only used by one goroutine at a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    			for _, caCert := range caCerts {
    				roots.AddCert(caCert)
    			}
    
    			<-startedCh
    
    			// try to dial
    			addr := fmt.Sprintf("localhost:%d", secureOptions.BindPort)
    			t.Logf("Dialing %s as %q", addr, test.ServerName)
    			conn, err := tls.Dial("tcp", addr, &tls.Config{
    				RootCAs:    roots,
    				ServerName: test.ServerName, // used for SNI in the client HELLO packet
    			})
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/net/ipsock.go

    	if err != nil {
    		return nil, err
    	}
    	// Issue 18806: if the machine has halfway configured
    	// IPv6 such that it can bind on "::" (IPv6unspecified)
    	// but not connect back to that same address, fall
    	// back to dialing 0.0.0.0.
    	if len(ips) == 1 && ips[0].IP.Equal(IPv6unspecified) {
    		ips = append(ips, IPAddr{IP: IPv4zero})
    	}
    
    	var filter func(IPAddr) bool
    	if net != "" && net[len(net)-1] == '4' {
    		filter = ipv4only
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/grpc_service_unix_test.go

    // Since the Dial to kms-plugin is non-blocking we expect the construction of gRPC service to succeed even when
    // kms-plugin is not yet up - dialing happens in the background.
    func TestKMSPluginLateStart(t *testing.T) {
    	t.Parallel()
    	callTimeout := 3 * time.Second
    	s := newEndpoint()
    
    	ctx := testContext(t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 29 05:36:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/grpc_service_unix_test.go

    // Since the Dial to kms-plugin is non-blocking we expect the construction of gRPC service to succeed even when
    // kms-plugin is not yet up - dialing happens in the background.
    func TestKMSPluginLateStart(t *testing.T) {
    	t.Parallel()
    	callTimeout := 3 * time.Second
    	s := newEndpoint()
    
    	ctx := testContext(t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. src/net/http/httptest/server.go

    			// but never sent a request). StateNew connections are
    			// super rare and have only been seen (in
    			// previously-flaky tests) in the case of
    			// socket-late-binding races from the http Client
    			// dialing this server and then getting an idle
    			// connection before the dial completed. There is thus
    			// a connected connection in StateNew with no
    			// associated Request. We only close StateIdle and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/server_test.go

    				// See https://www.mailgun.com/blog/http-2-cleartext-h2c-client-example-go/
    				// So http2.Transport doesn't complain the URL scheme isn't 'https'
    				AllowHTTP: true,
    				// Pretend we are dialing a TLS endpoint. (Note, we ignore the passed tls.Config)
    				DialTLSContext: func(_ context.Context, network, addr string, _ *tls.Config) (net.Conn, error) {
    					return net.Dial(network, addr)
    				},
    			},
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/net/rpc/server.go

    "Arith.Divide".  To invoke one, a client first dials the server:
    
    	client, err := rpc.DialHTTP("tcp", serverAddress + ":1234")
    	if err != nil {
    		log.Fatal("dialing:", err)
    	}
    
    Then it can make a remote call:
    
    	// Synchronous call
    	args := &server.Args{7,8}
    	var reply int
    	err = client.Call("Arith.Multiply", args, &reply)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    	// DefaultMaxIdleConnsPerHost is used.
    	MaxIdleConnsPerHost int
    
    	// MaxConnsPerHost optionally limits the total number of
    	// connections per host, including connections in the dialing,
    	// active, and idle states. On limit violation, dials will block.
    	//
    	// Zero means no limit.
    	MaxConnsPerHost int
    
    	// IdleConnTimeout is the maximum amount of time an idle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top