Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dialSerial (0.09 sec)

  1. src/net/dial.go

    }
    
    // dialParallel races two copies of dialSerial, giving the first a
    // head start. It returns the first established connection and
    // closes the others. Otherwise it returns an error from the first
    // primary address.
    func (sd *sysDialer) dialParallel(ctx context.Context, primaries, fallbacks addrList) (Conn, error) {
    	if len(fallbacks) == 0 {
    		return sd.dialSerial(ctx, primaries)
    	}
    
    	returned := make(chan 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)
  2. src/cmd/trace/testdata/go122.test

    	data="net.(*sysDialer).dialTCP"
    String id=50
    	data="net.(*sysDialer).dialSingle"
    String id=51
    	data="/usr/local/google/home/mknyszek/work/go-1/src/net/dial.go"
    String id=52
    	data="net.(*sysDialer).dialSerial"
    String id=53
    	data="net.(*sysDialer).dialParallel"
    String id=54
    	data="net.(*Dialer).DialContext"
    String id=55
    	data="net.(*Dialer).Dial"
    String id=56
    	data="net.Dial"
    String id=57
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
Back to top