Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DefaultServeMux (0.23 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/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)
  3. 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)
Back to top