type golang.org/x/mod/zip.CheckedFiles
15 uses
golang.org/x/mod/zip (current package)
zip.go#L102: type CheckedFiles struct {
zip.go#L124: func (cf CheckedFiles) Err() error {
zip.go#L189: func CheckFiles(files []File) (CheckedFiles, error) {
zip.go#L197: func checkFiles(files []File) (cf CheckedFiles, validFiles []File, validSizes []int64) {
zip.go#L332: func CheckDir(dir string) (CheckedFiles, error) {
zip.go#L337: return CheckedFiles{}, err
zip.go#L369: func CheckZip(m module.Version, zipFile string) (CheckedFiles, error) {
zip.go#L372: return CheckedFiles{}, err
zip.go#L381: func checkZip(m module.Version, f *os.File) (*zip.Reader, CheckedFiles, error) {
zip.go#L384: return nil, CheckedFiles{}, fmt.Errorf("version %q is not canonical (should be %q)", m.Version, vers)
zip.go#L387: return nil, CheckedFiles{}, err
zip.go#L393: return nil, CheckedFiles{}, err
zip.go#L397: cf := CheckedFiles{SizeError: fmt.Errorf("module zip file is too large (%d bytes; limit is %d bytes)", zipSize, MaxZipFile)}
zip.go#L402: var cf CheckedFiles
zip.go#L408: return nil, CheckedFiles{}, err
 |
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. |