Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 643 for dialing (0.11 sec)

  1. src/runtime/testdata/testprognet/net.go

    package main
    
    import (
    	"fmt"
    	"net"
    )
    
    func init() {
    	registerInit("NetpollDeadlock", NetpollDeadlockInit)
    	register("NetpollDeadlock", NetpollDeadlock)
    }
    
    func NetpollDeadlockInit() {
    	fmt.Println("dialing")
    	c, err := net.Dial("tcp", "localhost:14356")
    	if err == nil {
    		c.Close()
    	} else {
    		fmt.Println("error: ", err)
    	}
    }
    
    func NetpollDeadlock() {
    	fmt.Println("done")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 539 bytes
    - Viewed (0)
  2. pkg/kubelet/apis/podresources/client.go

    		grpc.WithTransportCredentials(insecure.NewCredentials()),
    		grpc.WithContextDialer(dialer),
    		grpc.WithDefaultCallOptions(grpc.MaxCallRecvMsgSize(maxMsgSize)))
    	if err != nil {
    		return nil, nil, fmt.Errorf("error dialing socket %s: %v", socket, err)
    	}
    	return v1alpha1.NewPodResourcesListerClient(conn), conn, nil
    }
    
    // GetV1Client returns a client for the PodResourcesLister grpc service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/net/rpc/server_test.go

    	newOnce.Do(startNewServer)
    	testRPC(t, newServerAddr)
    	testNewServerRPC(t, newServerAddr)
    }
    
    func testRPC(t *testing.T, addr string) {
    	client, err := Dial("tcp", addr)
    	if err != nil {
    		t.Fatal("dialing", err)
    	}
    	defer client.Close()
    
    	// Synchronous calls
    	args := &Args{7, 8}
    	reply := new(Reply)
    	err = client.Call("Arith.Add", args, reply)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 05:23:29 UTC 2023
    - 19K bytes
    - Viewed (0)
  4. src/net/dial_test.go

    	}
    
    	const fallbackDelay = 100 * time.Millisecond
    
    	var dialing sync.WaitGroup
    	dialing.Add(2)
    	origTestHookDialTCP := testHookDialTCP
    	defer func() { testHookDialTCP = origTestHookDialTCP }()
    	testHookDialTCP = func(ctx context.Context, net string, laddr, raddr *TCPAddr) (*TCPConn, error) {
    		// Wait until Happy Eyeballs kicks in and both connections are dialing,
    		// and inhibit cancellation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. src/internal/nettrace/nettrace.go

    	DNSDone func(netIPs []any, coalesced bool, err error)
    
    	// ConnectStart is called before a Dial, excluding Dials made
    	// during DNS lookups. In the case of DualStack (Happy Eyeballs)
    	// dialing, this may be called multiple times, from multiple
    	// goroutines.
    	ConnectStart func(network, addr string)
    
    	// ConnectDone is called after a Dial with the results, excluding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:57:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector_test.go

    				clientmetrics.Metrics.GetClientConnectionsMetric().WithLabelValues("dialing").Inc()
    			},
    			want: `
    # HELP konnectivity_network_proxy_client_client_connections Number of open client connections, by status (Example: dialing)
    # TYPE konnectivity_network_proxy_client_client_connections gauge
    konnectivity_network_proxy_client_client_connections{status="dialing"} 1
    `,
    		},
    	}
    	for _, tc := range testcases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 26 22:41:29 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  7. src/net/main_test.go

    	// If external IPv4 connectivity exists, we can try dialing
    	// non-node/interface local scope IPv4 addresses.
    	// On Windows, Lookup APIs may not return IPv4-related
    	// resource records when a node has no external IPv4
    	// connectivity.
    	testIPv4 = flag.Bool("ipv4", true, "assume external IPv4 connectivity exists")
    
    	// If external IPv6 connectivity exists, we can try dialing
    	// non-node/interface local scope IPv6 addresses.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. src/net/net_fake_test.go

    		if testing.Verbose() && len(dialed)%(1<<12) == 0 {
    			t.Logf("dialed %d connections", len(dialed))
    		}
    	}
    	t.Logf("dialed %d connections", len(dialed))
    
    	// Now that all of the ports are in use, dialing another should fail due
    	// to port exhaustion, which (for POSIX-like socket APIs) should return
    	// an EADDRINUSE error.
    	c, err := Dial(ln.Addr().Network(), ln.Addr().String())
    	if err == nil {
    		c.Close()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/net/dial.go

    	if use {
    		*m = mptcpEnabled
    	} else {
    		*m = mptcpDisabled
    	}
    }
    
    // A Dialer contains options for connecting to an address.
    //
    // The zero value for each field is equivalent to dialing
    // without that option. Dialing with the zero value of Dialer
    // is therefore equivalent to just calling the [Dial] function.
    //
    // It is safe to call Dialer's methods concurrently.
    type Dialer struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. src/net/tcpconn_keepalive_test.go

    		ls := (&streamListener{Listener: ln}).newLocalServer()
    		defer ls.teardown()
    		if err := ls.buildup(handler); err != nil {
    			t.Fatal(err)
    		}
    		d := Dialer{KeepAlive: -1} // prevent calling hook from dialing
    		c, err := d.Dial("tcp", ls.Listener.Addr().String())
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer c.Close()
    
    		cc := <-ch
    		defer cc.Close()
    		if errHook != nil {
    			t.Fatal(errHook)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top