Home | History | Annotate | Download | only in time

Lines Matching refs:zip

207 	if len(dir) > 4 && dir[len(dir)-4:] == ".zip" {
221 // individually, we ship them in an uncompressed zip file.
222 // Used this way, the zip file format serves as a commonly readable
223 // container for the individual small files. We choose zip over tar
224 // because zip files have a contiguous table of contents, making
226 // in a zip file is considerably less than tar's 512 bytes.
262 return nil, errors.New("corrupt zip file " + zipfile)
270 return nil, errors.New("corrupt zip file " + zipfile)
274 // zip entry layout:
315 // zip per-file header layout:
337 return nil, errors.New("corrupt zip file " + zipfile)
343 return nil, errors.New("corrupt zip file " + zipfile)
349 return nil, errors.New("cannot find " + name + " in zip file " + zipfile)