Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 629 for dial (0.06 sec)

  1. src/net/dial.go

    // When using TCP, and the host resolves to multiple IP addresses,
    // Dial will try each IP address in order until one succeeds.
    //
    // Examples:
    //
    //	Dial("tcp", "golang.org:http")
    //	Dial("tcp", "192.0.2.1:http")
    //	Dial("tcp", "198.51.100.1:80")
    //	Dial("udp", "[2001:db8::1]:domain")
    //	Dial("udp", "[fe80::1%lo0]:53")
    //	Dial("tcp", ":80")
    //
    // For IP networks, the network must be "ip", "ip4" or "ip6" followed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/proxy/dial.go

    	"crypto/tls"
    	"fmt"
    	"net"
    	"net/http"
    	"net/url"
    
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/third_party/forked/golang/netutil"
    	"k8s.io/klog/v2"
    )
    
    // DialURL will dial the specified URL using the underlying dialer held by the passed
    // RoundTripper. The primary use of this method is to support proxying upgradable connections.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/net/http/transport_dial_test.go

    }
    
    // wantDial waits for the Transport to start a Dial.
    func (dt *transportDialTester) wantDial() *transportDialTesterConn {
    	c := <-dt.dials
    	c.connID = dt.dialCount
    	dt.dialCount++
    	dt.t.Logf("Dial %v: started", c.connID)
    	return c
    }
    
    // finish completes a Dial.
    func (c *transportDialTesterConn) finish(err error) {
    	c.t.Logf("Dial %v: finished (err:%v)", c.connID, err)
    	c.ready <- err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/proxy/dial_test.go

    		},
    
    		"insecure, custom dial": {
    			TLSConfig: &tls.Config{InsecureSkipVerify: true},
    			Dial:      d.DialContext,
    		},
    		"secure, no roots, custom dial": {
    			TLSConfig:   &tls.Config{InsecureSkipVerify: false},
    			Dial:        d.DialContext,
    			ExpectError: "unknown authority|not trusted",
    		},
    		"secure with roots, custom dial": {
    			TLSConfig: &tls.Config{InsecureSkipVerify: false, RootCAs: roots},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. src/net/net_fake_test.go

    	// all 65535 valid (fake) ports. The listener is already using one, so
    	// we should be able to Dial the remaining 65534.
    	for len(dialed) < (1<<16)-2 {
    		c, err := Dial(ln.Addr().Network(), ln.Addr().String())
    		if err != nil {
    			t.Fatalf("unexpected error from Dial with %v connections: %v", len(dialed), err)
    		}
    		dialed = append(dialed, c)
    		if testing.Verbose() && len(dialed)%(1<<12) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/net/external_test.go

    		}
    	}
    }
    
    var dialGoogleTests = []struct {
    	dial               func(string, string) (Conn, error)
    	unreachableNetwork string
    	networks           []string
    	addrs              []string
    }{
    	{
    		dial:     (&Dialer{DualStack: true}).Dial,
    		networks: []string{"tcp", "tcp4", "tcp6"},
    		addrs:    []string{"www.google.com:http"},
    	},
    	{
    		dial:               Dial,
    		unreachableNetwork: "tcp6",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. src/net/dial_test.go

    			// test by opening a listener and connecting to
    			// it using Dial.
    			ln := newLocalListener(t, network)
    			addr := ln.Addr().String()
    			conn1, err := Dial(network, addr)
    			if err != nil {
    				ln.Close()
    				t.Fatal(err)
    			}
    			defer conn1.Close()
    			// Now close the listener so the next Dial fails
    			// keeping conn1 alive so the port is not made
    			// available.
    			ln.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. pkg/util/filesystem/util_windows.go

    	// on the Unix Domain socket working on the very first try, hence the potential need to
    	// dial multiple times
    	var lastSocketErr error
    	err := wait.PollImmediate(socketDialRetryPeriod, socketDialTimeout,
    		func() (bool, error) {
    			klog.V(6).InfoS("Dialing the socket", "filePath", filePath)
    			var c net.Conn
    			c, lastSocketErr = net.Dial("unix", filePath)
    			if lastSocketErr == nil {
    				c.Close()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/net/server_test.go

    func TestUnixgramServer(t *testing.T) {
    	var unixgramServerTests = []struct {
    		saddr string // server endpoint
    		caddr string // client endpoint
    		dial  bool   // test with Dial
    	}{
    		{saddr: testUnixAddr(t), caddr: testUnixAddr(t)},
    		{saddr: testUnixAddr(t), caddr: testUnixAddr(t), dial: true},
    
    		{saddr: "@nettest/go/unixgram/server", caddr: "@nettest/go/unixgram/client"},
    	}
    
    	for i, tt := range unixgramServerTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. src/net/tcpsock_unix_test.go

    					t.Errorf("#%d: %v", i, err)
    				}
    			}
    			c.Close()
    		}(i)
    	}
    
    	ln.Close()
    	wg.Wait()
    }
    
    // Issue 19289.
    // Test that a canceled Dial does not cause a subsequent Dial to succeed.
    func TestTCPSpuriousConnSetupCompletionWithCancel(t *testing.T) {
    	mustHaveExternalNetwork(t)
    
    	defer dnsWaitGroup.Wait()
    	t.Parallel()
    	const tries = 10000
    	var wg sync.WaitGroup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top