Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for exportId (0.4 sec)

  1. src/crypto/tls/conn.go

    	// the rest of the bits are the number of goroutines in Conn.Write.
    	activeCall atomic.Int32
    
    	tmp [16]byte
    }
    
    // Access to net.Conn methods.
    // Cannot just embed net.Conn because that would
    // export the struct field too.
    
    // LocalAddr returns the local network address.
    func (c *Conn) LocalAddr() net.Addr {
    	return c.conn.LocalAddr()
    }
    
    // RemoteAddr returns the remote network address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    	}
    	return 4 << 10
    }
    
    func (t *Transport) readBufferSize() int {
    	if t.ReadBufferSize > 0 {
    		return t.ReadBufferSize
    	}
    	return 4 << 10
    }
    
    // Clone returns a deep copy of t's exported fields.
    func (t *Transport) Clone() *Transport {
    	t.nextProtoOnce.Do(t.onceSetNextProtoDefaults)
    	t2 := &Transport{
    		Proxy:                  t.Proxy,
    		OnProxyConnectResponse: t.OnProxyConnectResponse,
    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