Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. cmd/object-handlers_test.go

    }
    
    // TestAPIPutObjectPartHandlerStreaming - Tests validate the response of PutObjectPart HTTP handler
    // when the request signature type is `streaming signature`.
    func TestAPIPutObjectPartHandlerStreaming(t *testing.T) {
    	defer DetectTestLeak(t)()
    	ExecExtendedObjectLayerAPITest(t, testAPIPutObjectPartHandlerStreaming, []string{"NewMultipart", "PutObjectPart"})
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    		}
    
    		if crypto.SSEC.IsEncrypted(objInfo.UserDefined) {
    			objectSize += partInfo.Size
    			pInfo, err = c.PutObjectPart(ctx, bucket, object, uploadID, partInfo.Number, hr, partInfo.Size, popts)
    		} else {
    			objectSize += partInfo.ActualSize
    			pInfo, err = c.PutObjectPart(ctx, bucket, object, uploadID, partInfo.Number, hr, partInfo.ActualSize, popts)
    		}
    		if err != nil {
    			return err
    		}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
Back to top