Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for InstallHandler (0.21 sec)

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

    */
    
    package server
    
    import (
    	"fmt"
    	"net/http"
    	"sync"
    	"time"
    
    	"k8s.io/apiserver/pkg/server/healthz"
    	"k8s.io/utils/clock"
    )
    
    // healthMux is an interface describing the methods InstallHandler requires.
    type healthMux interface {
    	Handle(pattern string, handler http.Handler)
    }
    
    type healthCheckRegistry struct {
    	path            string
    	lock            sync.Mutex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top