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)