Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setHTTPServer (0.17 sec)

  1. cmd/api-router.go

    	"github.com/minio/pkg/v2/wildcard"
    	"github.com/rs/cors"
    )
    
    func newHTTPServerFn() *xhttp.Server {
    	globalObjLayerMutex.RLock()
    	defer globalObjLayerMutex.RUnlock()
    	return globalHTTPServer
    }
    
    func setHTTPServer(h *xhttp.Server) {
    	globalObjLayerMutex.Lock()
    	globalHTTPServer = h
    	globalObjLayerMutex.Unlock()
    }
    
    func newConsoleServerFn() *consoleapi.Server {
    	globalObjLayerMutex.RLock()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Mar 04 18:05:56 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  2. cmd/server-main.go

    			})
    			if err != nil {
    				globalHTTPServerErrorCh <- err
    				return
    			}
    			globalHTTPServerErrorCh <- serveFn()
    		}()
    
    		setHTTPServer(httpServer)
    	})
    
    	if globalIsDistErasure {
    		bootstrapTrace("verifying system configuration", func() {
    			// Additionally in distributed setup, validate the setup and configuration.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 15:54:03 GMT 2024
    - 34.9K bytes
    - Viewed (1)
Back to top