Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NewPathRecorderMux (0.27 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/mux/pathrecorder.go

    type prefixHandler struct {
    	// prefix is the prefix to test for a request match
    	prefix string
    	// handler is used to satisfy matching requests
    	handler http.Handler
    }
    
    // NewPathRecorderMux creates a new PathRecorderMux
    func NewPathRecorderMux(name string) *PathRecorderMux {
    	ret := &PathRecorderMux{
    		name:            name,
    		pathToHandler:   map[string]http.Handler{},
    		prefixToHandler: map[string]http.Handler{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 01:52:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top