const golang.org/x/mod/zip.MaxZipFile
7 uses
golang.org/x/mod/zip (current package)
zip.go#L69: MaxZipFile = 500 << 20
zip.go#L245: maxSize := int64(MaxZipFile)
zip.go#L300: cf.SizeError = fmt.Errorf("module source tree too large (max size is %d bytes)", MaxZipFile)
zip.go#L396: if zipSize > MaxZipFile {
zip.go#L397: cf := CheckedFiles{SizeError: fmt.Errorf("module zip file is too large (%d bytes; limit is %d bytes)", zipSize, MaxZipFile)}
zip.go#L452: if sz >= 0 && MaxZipFile-size >= sz {
zip.go#L455: cf.SizeError = fmt.Errorf("total uncompressed size of module contents too large (max size is %d bytes)", MaxZipFile)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |