Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for http2debug (0.25 sec)

  1. src/net/http/doc.go

    	GODEBUG=http2client=0  # disable HTTP/2 client support
    	GODEBUG=http2server=0  # disable HTTP/2 server support
    	GODEBUG=http2debug=1   # enable verbose HTTP/2 debug logs
    	GODEBUG=http2debug=2   # ... even more verbose, with frame dumps
    
    Please report any issues before disabling HTTP/2 support: https://golang.org/s/http2bug
    
    The http package's [Transport] and [Server] both automatically enable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/internal/godebugs/table.go

    	{Name: "gocachetest", Package: "cmd/go"},
    	{Name: "gocacheverify", Package: "cmd/go"},
    	{Name: "gotypesalias", Package: "go/types", Changed: 23, Old: "0"},
    	{Name: "http2client", Package: "net/http"},
    	{Name: "http2debug", Package: "net/http", Opaque: true},
    	{Name: "http2server", Package: "net/http"},
    	{Name: "httplaxcontentlength", Package: "net/http", Changed: 22, Old: "1"},
    	{Name: "httpmuxgo121", Package: "net/http", Changed: 22, Old: "1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. doc/godebug.md

    There is no plan to remove these settings.
    
    ### Go 1.6
    
    Go 1.6 introduced transparent support for HTTP/2,
    controlled by the [`http2client`, `http2server`, and `http2debug` settings](/pkg/net/http/#hdr-HTTP_2).
    There is no plan to remove these settings.
    
    ### Go 1.5
    
    Go 1.5 introduced a pure Go DNS resolver,
    controlled by the [`netdns` setting](/pkg/net/#hdr-Name_Resolution).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. tests/integration/pilot/gw_topology_test.go

        matchLabels:
          istio: ingressgateway
      template:
        metadata:
          annotations:
            inject.istio.io/templates: gateway
            sidecar.istio.io/componentLogLevel: conn_handler:debug,connection:debug,http:debug
            proxy.istio.io/config: |
              gatewayTopology:
                numTrustedProxies: 1
                proxyProtocol: {}
          labels:
            istio: ingressgateway
            {{ .injectLabel }}
        spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	http2logFrameWrites bool
    	http2logFrameReads  bool
    	http2inTests        bool
    )
    
    func init() {
    	e := os.Getenv("GODEBUG")
    	if strings.Contains(e, "http2debug=1") {
    		http2VerboseLogs = true
    	}
    	if strings.Contains(e, "http2debug=2") {
    		http2VerboseLogs = true
    		http2logFrameWrites = true
    		http2logFrameReads = true
    	}
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. istioctl/pkg/proxyconfig/proxyconfig.go

      # Update levels of the all loggers
      istioctl proxy-config log <pod-name[.namespace]> --level none
    
      # Update levels of the specified loggers.
      istioctl proxy-config log <pod-name[.namespace]> --level http:debug,redis:debug
    
      # Reset levels of all the loggers to default value (warning).
      istioctl proxy-config log <pod-name[.namespace]> -r
    `,
    		Aliases: []string{"o"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
Back to top