Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ListMultipartUploadsHandler (0.44 sec)

  1. cmd/api-router.go

    			HandlerFunc(s3APIMiddleware(api.DeleteBucketTaggingHandler)).
    			Queries("tagging", "")
    
    		// ListMultipartUploads
    		router.Methods(http.MethodGet).
    			HandlerFunc(s3APIMiddleware(api.ListMultipartUploadsHandler)).
    			Queries("uploads", "")
    		// ListObjectsV2M
    		router.Methods(http.MethodGet).
    			HandlerFunc(s3APIMiddleware(api.ListObjectsV2MHandler)).
    			Queries("list-type", "2", "metadata", "true")
    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/bucket-handlers_test.go

    		req, gerr := newTestSignedRequestV4(http.MethodGet, u, 0, nil, testCase.accessKey, testCase.secretKey, nil)
    		if gerr != nil {
    			t.Fatalf("Test %d: %s: Failed to create HTTP request for ListMultipartUploadsHandler: <ERROR> %v", i+1, instanceType, gerr)
    		}
    		// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    		// Call the ServeHTTP to execute the handler.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 39.5K bytes
    - Viewed (2)
  3. cmd/bucket-handlers.go

    		encodedSuccessResponse = encodeResponse(LocationResponse{
    			Location: region,
    		})
    	}
    
    	// Write success response.
    	writeSuccessResponseXML(w, encodedSuccessResponse)
    }
    
    // ListMultipartUploadsHandler - GET Bucket (List Multipart uploads)
    // -------------------------
    // This operation lists in-progress multipart uploads. An in-progress
    // multipart upload is a multipart upload that has been initiated,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 16:27:27 GMT 2024
    - 61.6K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    		case "ListMultipartUploads":
    			// Register ListMultipartUploads handler.
    			bucket.Methods(http.MethodGet).HandlerFunc(api.ListMultipartUploadsHandler).Queries("uploads", "")
    		case "CompleteMultipart":
    			// Register Complete Multipart Upload handler.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
Back to top