Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ei (0.53 sec)

  1. docs/debugging/xl-meta/main.go

    				Size    int
    			}
    		}
    		var ei erasureInfo
    		var idx int
    		if err := json.Unmarshal(meta, &ei); err == nil && ei.V2Obj != nil {
    			if size == 0 {
    				size = ei.V2Obj.Size
    				mapped = make([]byte, size)
    				filled = make([]byte, size)
    			}
    			data = ei.V2Obj.EcM
    			parity = ei.V2Obj.EcN
    			if shards == 0 {
    				shards = data + parity
    			}
    			idx = ei.V2Obj.EcIndex - 1
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Apr 24 17:56:22 GMT 2024
    - 20.2K bytes
    - Viewed (1)
  2. cmd/xl-storage-format-v1.go

    // - distribution indexes are different
    func (ei ErasureInfo) Equal(nei ErasureInfo) bool {
    	if ei.Algorithm != nei.Algorithm {
    		return false
    	}
    	if ei.DataBlocks != nei.DataBlocks {
    		return false
    	}
    	if ei.ParityBlocks != nei.ParityBlocks {
    		return false
    	}
    	if ei.BlockSize != nei.BlockSize {
    		return false
    	}
    	if len(ei.Distribution) != len(nei.Distribution) {
    		return false
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  3. cmd/storage-datatypes.go

    	// File metadata
    	Metadata map[string]string `msg:"meta"`
    
    	// All the parts per object.
    	Parts []ObjectPartInfo `msg:"parts"`
    
    	// Erasure info for all objects.
    	Erasure ErasureInfo `msg:"ei"`
    
    	MarkDeleted      bool             `msg:"md"` // mark this version as deleted
    	ReplicationState ReplicationState `msg:"rs"` // Internal replication state to be passed back in ObjectInfo
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 15.3K bytes
    - Viewed (0)
Back to top