Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for CompressedSize (0.16 sec)

  1. src/archive/zip/writer_test.go

    				t.Fatalf("flate Writer.Close err = %v", err)
    			}
    			compressedContent = buf.Bytes()
    			f.compressedSize = uint64(len(compressedContent))
    		}
    
    		h := &FileHeader{
    			Name:               f.name,
    			Method:             f.method,
    			Flags:              f.flags,
    			CRC32:              f.crc32,
    			CompressedSize64:   f.compressedSize,
    			UncompressedSize64: f.uncompressedSize,
    		}
    		w, err := w.CreateRaw(h)
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Sep 23 14:32:33 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. src/archive/zip/writer.go

    	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 {
    		fh.CompressedSize = uint32(fh.CompressedSize64)
    		fh.UncompressedSize = uint32(fh.UncompressedSize64)
    	}
    
    	return w.writeDataDescriptor()
    }
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Sep 23 14:32:33 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. src/archive/zip/struct.go

    	// CRC32 is the CRC32 checksum of the file content.
    	CRC32 uint32
    
    	// CompressedSize is the compressed size of the file in bytes.
    	// If either the uncompressed or compressed size of the file
    	// does not fit in 32 bits, CompressedSize is set to ^uint32(0).
    	//
    	// Deprecated: Use CompressedSize64 instead.
    	CompressedSize uint32
    
    	// UncompressedSize is the uncompressed size of the file in bytes.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue May 28 21:41:09 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/archive/zip/reader.go

    	f.ReaderVersion = b.uint16()
    	f.Flags = b.uint16()
    	f.Method = b.uint16()
    	f.ModifiedTime = b.uint16()
    	f.ModifiedDate = b.uint16()
    	f.CRC32 = b.uint32()
    	f.CompressedSize = b.uint32()
    	f.UncompressedSize = b.uint32()
    	f.CompressedSize64 = uint64(f.CompressedSize)
    	f.UncompressedSize64 = uint64(f.UncompressedSize)
    	filenameLen := int(b.uint16())
    	extraLen := int(b.uint16())
    	commentLen := int(b.uint16())
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Sat Aug 03 01:05:29 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. api/go1.16.txt

    pkg archive/zip, method (*File) SetModTime //deprecated
    pkg archive/zip, method (*FileHeader) ModTime //deprecated
    pkg archive/zip, method (*FileHeader) SetModTime //deprecated
    pkg archive/zip, type FileHeader struct, CompressedSize //deprecated
    pkg archive/zip, type FileHeader struct, ModifiedDate //deprecated
    pkg archive/zip, type FileHeader struct, ModifiedTime //deprecated
    pkg archive/zip, type FileHeader struct, UncompressedSize //deprecated
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg archive/zip, type FileHeader struct
    pkg archive/zip, type FileHeader struct, CRC32 uint32
    pkg archive/zip, type FileHeader struct, Comment string
    pkg archive/zip, type FileHeader struct, CompressedSize uint32
    pkg archive/zip, type FileHeader struct, CreatorVersion uint16
    pkg archive/zip, type FileHeader struct, ExternalAttrs uint32
    pkg archive/zip, type FileHeader struct, Extra []uint8
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top