cleanup: make byte sizes easier to understand (#4148)

This commit is contained in:
Milos Gajdos 2023-11-01 13:42:17 +00:00 committed by GitHub
commit c1869cc7e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -24,7 +24,7 @@ import (
const (
defaultArch = "amd64"
defaultOS = "linux"
maxManifestBodySize = 4 << 20
maxManifestBodySize = 4 * 1024 * 1024
imageClass = "image"
)

View file

@ -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)

View file

@ -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

View file

@ -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) {