Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for blockSize (0.17 sec)

  1. cmd/xl-storage-format-utils_test.go

    		Size:             0,
    		Mode:             0,
    		Metadata:         nil,
    		Parts:            nil,
    		Erasure: ErasureInfo{
    			Algorithm:    ReedSolomon.String(),
    			DataBlocks:   4,
    			ParityBlocks: 2,
    			BlockSize:    10000,
    			Index:        1,
    			Distribution: []int{1, 2, 3, 4, 5, 6, 7, 8},
    			Checksums: []ChecksumInfo{{
    				PartNumber: 1,
    				Algorithm:  HighwayHash256S,
    				Hash:       nil,
    			}},
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/hash/crc64/crc64.go

    // marshal and unmarshal the internal state of the hash.
    func New(tab *Table) hash.Hash64 { return &digest{0, tab} }
    
    func (d *digest) Size() int { return Size }
    
    func (d *digest) BlockSize() int { return 1 }
    
    func (d *digest) Reset() { d.crc = 0 }
    
    const (
    	magic         = "crc\x02"
    	marshaledSize = len(magic) + 8 + 8
    )
    
    func (d *digest) MarshalBinary() ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/hash/crc32/crc32.go

    // and unmarshal the internal state of the hash.
    func NewIEEE() hash.Hash32 { return New(IEEETable) }
    
    func (d *digest) Size() int { return Size }
    
    func (d *digest) BlockSize() int { return 1 }
    
    func (d *digest) Reset() { d.crc = 0 }
    
    const (
    	magic         = "crc\x01"
    	marshaledSize = len(magic) + 4 + 4
    )
    
    func (d *digest) MarshalBinary() ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top