Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for DefaultServeMux (0.19 sec)

  1. src/net/http/server.go

    }
    
    // NewServeMux allocates and returns a new [ServeMux].
    func NewServeMux() *ServeMux {
    	return &ServeMux{}
    }
    
    // DefaultServeMux is the default [ServeMux] used by [Serve].
    var DefaultServeMux = &defaultServeMux
    
    var defaultServeMux ServeMux
    
    // cleanPath returns the canonical path for p, eliminating . and .. elements.
    func cleanPath(p string) string {
    	if p == "" {
    		return "/"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. src/net/http/cgi/host.go

    	// should handle internal redirects when the CGI process
    	// returns a Location header value starting with a "/", as
    	// specified in RFC 3875 ยง 6.3.2. This will likely be
    	// http.DefaultServeMux.
    	//
    	// If nil, a CGI response with a local URI path is instead sent
    	// back to the client and not redirected internally.
    	PathLocationHandler http.Handler
    }
    
    func (h *Handler) stderr() io.Writer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    				http.Error(w, "permission denied", http.StatusForbidden)
    				return
    			}
    		}
    		h := args.Handlers[req.URL.Path]
    		if h == nil {
    			// Fall back to default behavior
    			h = http.DefaultServeMux
    		}
    		h.ServeHTTP(w, req)
    	})
    
    	// We serve the ui at /ui/ and redirect there from the root. This is done
    	// to surface any problems with serving the ui at a non-root early. See:
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. src/net/http/pprof/pprof.go

    //
    // By default, all the profiles listed in [runtime/pprof.Profile] are
    // available (via [Handler]), in addition to the [Cmdline], [Profile], [Symbol],
    // and [Trace] profiles defined in this package.
    // If you are not using DefaultServeMux, you will have to register handlers
    // with the mux you are using.
    //
    // # Parameters
    //
    // Parameters can be passed via GET query params:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	BaseConfig *Server
    
    	// Handler specifies which handler to use for processing
    	// requests. If nil, BaseConfig.Handler is used. If BaseConfig
    	// or BaseConfig.Handler is nil, http.DefaultServeMux is used.
    	Handler Handler
    
    	// UpgradeRequest is an initial request received on a connection
    	// undergoing an h2c upgrade. The request body must have been
    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. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Cookie.Unparsed", Field, 0},
    		{"Cookie.Value", Field, 0},
    		{"CookieJar", Type, 0},
    		{"DefaultClient", Var, 0},
    		{"DefaultMaxHeaderBytes", Const, 0},
    		{"DefaultMaxIdleConnsPerHost", Const, 0},
    		{"DefaultServeMux", Var, 0},
    		{"DefaultTransport", Var, 0},
    		{"DetectContentType", Func, 0},
    		{"Dir", Type, 0},
    		{"ErrAbortHandler", Var, 8},
    		{"ErrBodyNotAllowed", Var, 0},
    		{"ErrBodyReadAfterClose", Var, 0},
    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