Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Dialer (0.12 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. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    vik.no
    vikna.no
    vindafjord.no
    volda.no
    voss.no
    varoy.no
    værøy.no
    vagan.no
    vågan.no
    voagat.no
    vagsoy.no
    vågsøy.no
    vaga.no
    vågå.no
    valer.ostfold.no
    våler.østfold.no
    valer.hedmark.no
    våler.hedmark.no
    
    // np : http://www.mos.com.np/register.html
    *.np
    
    // nr : http://cenpac.net.nr/dns/index.html
    // Submitted by registry <******@****.***>
    nr
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/dag.txt

    	quarkus/extensions/resteasy-classic/resteasy-links/deployment/pom.xml
    quarkus/integration-tests/mailer/pom.xml
    	quarkus/integration-tests/shared-library/pom.xml
    	quarkus/extensions/resteasy-classic/resteasy/runtime/pom.xml
    	quarkus/extensions/resteasy-classic/resteasy-jackson/runtime/pom.xml
    	quarkus/extensions/mailer/runtime/pom.xml
    	quarkus/test-framework/junit5/pom.xml
    quarkus/extensions/security-webauthn/runtime/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  5. 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