Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 281 for dial (0.05 sec)

  1. 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)
  2. 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)
  3. src/crypto/tls/tls.go

    		return nil, err
    	}
    	return conn, nil
    }
    
    // Dial connects to the given network address using net.Dial
    // and then initiates a TLS handshake, returning the resulting
    // TLS connection.
    // Dial interprets a nil configuration as equivalent to
    // the zero configuration; see the documentation of Config
    // for the defaults.
    func Dial(network, addr string, config *Config) (*Conn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/net/tcpsock_posix.go

    		}
    	}
    	fd, err := internetSocket(ctx, sd.network, laddr, raddr, syscall.SOCK_STREAM, proto, "dial", ctrlCtxFn)
    
    	// TCP has a rarely used mechanism called a 'simultaneous connection' in
    	// which Dial("tcp", addr1, addr2) run on the machine at addr1 can
    	// connect to a simultaneous Dial("tcp", addr2, addr1) run on the machine
    	// at addr2, without either machine executing Listen. If laddr == nil,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. src/net/tcpconn_keepalive_test.go

    		t.Fatal(err)
    	}
    
    	for _, cfg := range testConfigs {
    		d := Dialer{
    			KeepAlive:       defaultTCPKeepAliveIdle, // should be ignored
    			KeepAliveConfig: cfg}
    		c, err := d.Dial("tcp", ls.Listener.Addr().String())
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer c.Close()
    
    		if errHook != nil {
    			t.Fatal(errHook)
    		}
    
    		sc, err := c.(*TCPConn).SyscallConn()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/testprog/stress.go

    		c, err := ln.Accept()
    		if err != nil {
    			return
    		}
    		time.Sleep(time.Millisecond)
    		var buf [1]byte
    		c.Write(buf[:])
    		c.Close()
    	}()
    	c, err := net.Dial("tcp", ln.Addr().String())
    	if err != nil {
    		log.Fatalf("dial failed: %v", err)
    	}
    	var tmp [1]byte
    	c.Read(tmp[:])
    	c.Close()
    
    	go func() {
    		runtime.Gosched()
    		select {}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/net/sendfile_test.go

    				return
    			}
    
    			if _, err := io.Copy(conn, f); err != nil {
    				b.Errorf("failed to copy: %v", err)
    				return
    			}
    		}
    	}(ln, fileName)
    
    	conn, err := Dial("tcp", ln.Addr().String())
    	if err != nil {
    		b.Fatalf("failed to dial: %v", err)
    	}
    	defer conn.Close()
    
    	n, err := io.CopyN(io.Discard, conn, int64(dataSize))
    	if err != nil {
    		b.Fatalf("failed to copy: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. src/net/dnsclient_unix_test.go

    					RCode:    dnsmessage.RCodeSuccess,
    				},
    				Questions: q.Questions,
    			}
    			if n == "udp" {
    				r.Header.Truncated = true
    			}
    			return r, nil
    		},
    	}
    	r := Resolver{PreferGo: true, Dial: fake.DialContext}
    	for _, tt := range dnsTransportFallbackTests {
    		ctx, cancel := context.WithCancel(context.Background())
    		defer cancel()
    		_, h, err := r.exchange(ctx, tt.server, tt.question, time.Second, useUDPOrTCP, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. src/net/tcpsock.go

    		}
    		c.SetKeepAliveConfig(keepAliveCfg)
    		if keepAliveHook != nil {
    			keepAliveHook(keepAliveCfg)
    		}
    	}
    	return c
    }
    
    // DialTCP acts like [Dial] for TCP networks.
    //
    // The network must be a TCP network name; see func Dial for details.
    //
    // If laddr is nil, a local address is automatically chosen.
    // If the IP field of raddr is nil or an unspecified IP address, the
    // local system is assumed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    				w.Header().Set("X-Status", "ok")
    			})).ts
    
    			var writeNumAtomic int32
    			c := ts.Client()
    			c.Transport.(*Transport).Dial = func(network, addr string) (net.Conn, error) {
    				logf("Dial")
    				c, err := net.Dial(network, ts.Listener.Addr().String())
    				if err != nil {
    					logf("Dial error: %v", err)
    					return nil, err
    				}
    				return &writerFuncConn{
    					Conn: c,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top