Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DNSStartInfo (0.23 sec)

  1. src/net/http/httptrace/trace.go

    		newFunc := reflect.MakeFunc(hookType, func(args []reflect.Value) []reflect.Value {
    			tfCopy.Call(args)
    			return of.Call(args)
    		})
    		tv.Field(i).Set(newFunc)
    	}
    }
    
    // DNSStartInfo contains information about a DNS request.
    type DNSStartInfo struct {
    	Host string
    }
    
    // DNSDoneInfo contains information about the results of a DNS lookup.
    type DNSDoneInfo struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. api/go1.7.txt

    pkg net/http/httptrace, type DNSDoneInfo struct, Coalesced bool
    pkg net/http/httptrace, type DNSDoneInfo struct, Err error
    pkg net/http/httptrace, type DNSStartInfo struct
    pkg net/http/httptrace, type DNSStartInfo struct, Host string
    pkg net/http/httptrace, type GotConnInfo struct
    pkg net/http/httptrace, type GotConnInfo struct, Conn net.Conn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 15:08:11 UTC 2016
    - 13.6K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    		GotFirstResponseByte: func() { logf("first response byte") },
    		PutIdleConn:          func(err error) { logf("PutIdleConn = %v", err) },
    		DNSStart:             func(e httptrace.DNSStartInfo) { logf("DNS start: %+v", e) },
    		DNSDone:              func(e httptrace.DNSDoneInfo) { logf("DNS done: %+v", e) },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ContextClientTrace", Func, 7},
    		{"DNSDoneInfo", Type, 7},
    		{"DNSDoneInfo.Addrs", Field, 7},
    		{"DNSDoneInfo.Coalesced", Field, 7},
    		{"DNSDoneInfo.Err", Field, 7},
    		{"DNSStartInfo", Type, 7},
    		{"DNSStartInfo.Host", Field, 7},
    		{"GotConnInfo", Type, 7},
    		{"GotConnInfo.Conn", Field, 7},
    		{"GotConnInfo.IdleTime", Field, 7},
    		{"GotConnInfo.Reused", Field, 7},
    		{"GotConnInfo.WasIdle", Field, 7},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top