Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for objectAPIHandlers (0.13 sec)

  1. cmd/bucket-handlers.go

    					bucket, err))
    			}
    		}(bucket)
    	}
    	wg.Wait()
    }
    
    // GetBucketLocationHandler - GET Bucket location.
    // -------------------------
    // This operation returns bucket location.
    func (api objectAPIHandlers) GetBucketLocationHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "GetBucketLocation")
    
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    
    	vars := mux.Vars(r)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 12:24:04 UTC 2024
    - 63.4K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    	}
    
    	// Executing the object layer tests for Erasure.
    	objTest(objLayer, ErasureTestStr, erasureDisks, t)
    	defer removeRoots(erasureDisks)
    }
    
    func registerBucketLevelFunc(bucket *mux.Router, api objectAPIHandlers, apiFunctions ...string) {
    	for _, apiFunction := range apiFunctions {
    		switch apiFunction {
    		case "PostPolicy":
    			// Register PostPolicy handler.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 01 22:13:18 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top