Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PartIndices (0.41 sec)

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

    			if err != nil {
    				err = msgp.WrapError(err, "PartIndices")
    				return
    			}
    			if cap(z.PartIndices) >= int(zb0009) {
    				z.PartIndices = (z.PartIndices)[:zb0009]
    			} else {
    				z.PartIndices = make([][]byte, zb0009)
    			}
    			for za0008 := range z.PartIndices {
    				z.PartIndices[za0008], err = dc.ReadBytes(z.PartIndices[za0008])
    				if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2-legacy.go

    	if v > xlMetaVersion {
    		return bts, fmt.Errorf("unknown xlMetaVersion: %d", v)
    	}
    
    	// Clear omitempty fields:
    	if j.ObjectV2 != nil && len(j.ObjectV2.PartIndices) > 0 {
    		j.ObjectV2.PartIndices = j.ObjectV2.PartIndices[:0]
    	}
    	o, err = j.UnmarshalMsg(bts)
    
    	// Fix inconsistent x-minio-internal-replication-timestamp by converting to UTC.
    	// Fixed in version 2 or later
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 16:43:43 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2.go

    	PartActualSizes    []int64           `json:"PartASizes,omitempty" msg:"PartASizes,allownil"` // Part ActualSizes (compression)
    	PartIndices        [][]byte          `json:"PartIndices,omitempty" msg:"PartIdx,omitempty"`  // Part Indexes (compression)
    	Size               int64             `json:"Size" msg:"Size"`                                // Object version size
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top