Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for redhated (0.14 sec)

  1. cmd/object-handlers.go

    					gr = reader
    				}
    			}
    		}
    		if reader == nil || !proxy.Proxy {
    			// validate if the request indeed was authorized, if it wasn't we need to return "ErrAccessDenied"
    			// instead of any namespace related error.
    			if s3Error := authorizeRequest(ctx, r, policy.GetObjectAction); s3Error != ErrNone {
    				writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
    				return
    			}
    			if isErrPreconditionFailed(err) {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    	for key, value := range lambdaMap {
    		v := make(map[string][]madmin.TargetIDStatus)
    		v[key] = value
    		notify[counter] = v
    		counter++
    	}
    	return notify
    }
    
    // fetchKMSStatus fetches KMS-related status information.
    func fetchKMSStatus() madmin.KMS {
    	kmsStat := madmin.KMS{}
    	if GlobalKMS == nil {
    		kmsStat.Status = "disabled"
    		return kmsStat
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
Back to top