cleanup: make byte sizes easier to understand (#4148)
This commit is contained in:
commit
c1869cc7e7
4 changed files with 4 additions and 4 deletions
|
@ -24,7 +24,7 @@ import (
|
|||
const (
|
||||
defaultArch = "amd64"
|
||||
defaultOS = "linux"
|
||||
maxManifestBodySize = 4 << 20
|
||||
maxManifestBodySize = 4 * 1024 * 1024
|
||||
imageClass = "image"
|
||||
)
|
||||
|
||||
|
|
|
@ -320,7 +320,7 @@ func TestProxyStoreServeMany(t *testing.T) {
|
|||
func TestProxyStoreServeBig(t *testing.T) {
|
||||
te := makeTestEnv(t, "foo/bar")
|
||||
|
||||
blobSize := 2 << 20
|
||||
blobSize := 2 * 1024 * 1024
|
||||
blobCount := 4
|
||||
numUnique := 2
|
||||
populate(t, te, blobCount, blobSize, numUnique)
|
||||
|
|
|
@ -15,7 +15,7 @@ import (
|
|||
// set this correctly, so we may want to leave it to the driver. For
|
||||
// out of process drivers, we'll have to optimize this buffer size for
|
||||
// local communication.
|
||||
const fileReaderBufferSize = 4 << 20
|
||||
const fileReaderBufferSize = 4 * 1024 * 1024
|
||||
|
||||
// remoteFileReader provides a read seeker interface to files stored in
|
||||
// storagedriver. Used to implement part of layer interface and will be used
|
||||
|
|
|
@ -9,7 +9,7 @@ import (
|
|||
)
|
||||
|
||||
const (
|
||||
maxBlobGetSize = 4 << 20
|
||||
maxBlobGetSize = 4 * 1024 * 1024
|
||||
)
|
||||
|
||||
func getContent(ctx context.Context, driver driver.StorageDriver, p string) ([]byte, error) {
|
||||
|
|
Loading…
Reference in a new issue