golang.org/x/mod/zip.CheckedFiles.SizeError (field)

8 uses

	golang.org/x/mod/zip (current package)
		zip.go#L117: 	SizeError error
		zip.go#L125: 	if cf.SizeError != nil {
		zip.go#L126: 		return cf.SizeError
		zip.go#L299: 		} else if cf.SizeError == nil {
		zip.go#L300: 			cf.SizeError = fmt.Errorf("module source tree too large (max size is %d bytes)", 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#L454: 		} else if cf.SizeError == nil {
		zip.go#L455: 			cf.SizeError = fmt.Errorf("total uncompressed size of module contents too large (max size is %d bytes)", MaxZipFile)