Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewAPIServerHandler (0.6 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/handler.go

    // It is normally used to apply filtering like authentication and authorization
    type HandlerChainBuilderFn func(apiHandler http.Handler) http.Handler
    
    func NewAPIServerHandler(name string, s runtime.NegotiatedSerializer, handlerChainBuilder HandlerChainBuilderFn, notFoundHandler http.Handler) *APIServerHandler {
    	nonGoRestfulMux := mux.NewPathRecorderMux(name)
    	if notFoundHandler != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 14 17:10:00 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/config.go

    	}
    
    	var debugSocket *routes.DebugSocket
    	if c.DebugSocketPath != "" {
    		debugSocket = routes.NewDebugSocket(c.DebugSocketPath)
    	}
    
    	apiServerHandler := NewAPIServerHandler(name, c.Serializer, handlerChainBuilder, delegationTarget.UnprotectedHandler())
    
    	s := &GenericAPIServer{
    		discoveryAddresses:             c.DiscoveryAddresses,
    		LoopbackClientConfig:           c.LoopbackClientConfig,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
Back to top