Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for matchingMethodsPath (0.17 sec)

  1. src/net/http/routing_tree.go

    	if host != "" {
    		root.findChild(host).matchingMethodsPath(path, methodSet)
    	}
    	root.emptyChild.matchingMethodsPath(path, methodSet)
    	if methodSet["GET"] {
    		methodSet["HEAD"] = true
    	}
    }
    
    func (n *routingNode) matchingMethodsPath(path string, set map[string]bool) {
    	if n == nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top