Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Dialer (0.1 sec)

  1. src/net/http/transport_test.go

    // A countingDialer dials connections and counts the number that remain reachable.
    type countingDialer struct {
    	dialer      net.Dialer
    	mu          sync.Mutex
    	total, live int64
    }
    
    func (d *countingDialer) DialContext(ctx context.Context, network, address string) (net.Conn, error) {
    	conn, err := d.dialer.DialContext(ctx, network, address)
    	if err != nil {
    		return nil, err
    	}
    
    	counted := new(countedConn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. src/cmd/trace/testdata/go122.test

    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
    	data="runtime.chansend1"
    String id=58
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/chan.go"
    String id=59
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

    function setup-fluentd {
      local -r dst_dir="$1"
      local -r fluentd_gcp_yaml="${dst_dir}/fluentd-gcp/fluentd-gcp-ds.yaml"
      local -r fluentd_gcp_scaler_yaml="${dst_dir}/fluentd-gcp/scaler-deployment.yaml"
      # Ingest logs against new resources like "k8s_container" and "k8s_node" if
      # LOGGING_STACKDRIVER_RESOURCE_TYPES is "new".
      # Ingest logs against old resources like "gke_container" and "gce_instance" if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top