Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for account (5.71 sec)

  1. src/archive/zip/writer.go

    	}
    	if err := w.comp.Close(); err != nil {
    		return err
    	}
    
    	// update FileHeader
    	fh := w.header.FileHeader
    	fh.CRC32 = w.crc32.Sum32()
    	fh.CompressedSize64 = uint64(w.compCount.count)
    	fh.UncompressedSize64 = uint64(w.rawCount.count)
    
    	if fh.isZip64() {
    		fh.CompressedSize = uint32max
    		fh.UncompressedSize = uint32max
    		fh.ReaderVersion = zipVersion45 // requires 4.5 - File uses ZIP64 format extensions
    	} else {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 04 14:28:57 GMT 2024
    - 19.3K bytes
    - Viewed (0)
Back to top