本文整理了Java中org.jclouds.blobstore.BlobStore.getMaximumNumberOfParts()
方法的一些代码示例,展示了BlobStore.getMaximumNumberOfParts()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。BlobStore.getMaximumNumberOfParts()
方法的具体详情如下:
包路径:org.jclouds.blobstore.BlobStore
类名称:BlobStore
方法名:getMaximumNumberOfParts
暂无
代码示例来源:origin: apache/jclouds
@Override
public int getMaximumNumberOfParts() {
return delegate().getMaximumNumberOfParts();
}
代码示例来源:origin: Nextdoor/bender
@Override
public int getMaximumNumberOfParts() {
return delegate().getMaximumNumberOfParts();
}
代码示例来源:origin: org.apache.jclouds/jclouds-blobstore
@Override
public int getMaximumNumberOfParts() {
return delegate().getMaximumNumberOfParts();
}
代码示例来源:origin: com.amysta.jclouds/jclouds-blobstore
@Override
public int getMaximumNumberOfParts() {
return delegate().getMaximumNumberOfParts();
}
代码示例来源:origin: apache/jclouds
@Test(groups = { "integration", "live" })
public void testPutMultipartByteSource() throws Exception {
long length = Math.max(getMinimumMultipartBlobSize(), MultipartUploadSlicingAlgorithm.DEFAULT_PART_SIZE + 1);
BlobStore blobStore = view.getBlobStore();
MultipartUploadSlicingAlgorithm algorithm = new MultipartUploadSlicingAlgorithm(
blobStore.getMinimumMultipartPartSize(), blobStore.getMaximumMultipartPartSize(),
blobStore.getMaximumNumberOfParts());
// make sure that we are creating multiple parts
assertThat(algorithm.calculateChunkSize(length)).isLessThan(length);
ByteSource byteSource = TestUtils.randomByteSource().slice(0, length);
Payload payload = new ByteSourcePayload(byteSource);
HashCode hashCode = byteSource.hash(Hashing.md5());
testPut(payload, hashCode, payload, length, new PutOptions().multipart(true));
}
代码示例来源:origin: apache/jclouds
@Test(groups = { "integration", "live" })
public void testPutMultipartInputStream() throws Exception {
long length = Math.max(getMinimumMultipartBlobSize(), MultipartUploadSlicingAlgorithm.DEFAULT_PART_SIZE + 1);
BlobStore blobStore = view.getBlobStore();
MultipartUploadSlicingAlgorithm algorithm = new MultipartUploadSlicingAlgorithm(
blobStore.getMinimumMultipartPartSize(), blobStore.getMaximumMultipartPartSize(),
blobStore.getMaximumNumberOfParts());
// make sure that we are creating multiple parts
assertThat(algorithm.calculateChunkSize(length)).isLessThan(length);
ByteSource byteSource = TestUtils.randomByteSource().slice(0, length);
Payload payload = new InputStreamPayload(byteSource.openStream());
testPut(payload, null, new ByteSourcePayload(byteSource), length, new PutOptions().multipart(true));
}
内容来源于网络,如有侵权,请联系作者删除!