Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for bf (1.83 sec)

  1. cmd/erasure-server-pool-decom.go

    	ItemsDecommissionFailed int64 `json:"objectsDecommissionedFailed" msg:"idf"`
    	BytesDone               int64 `json:"bytesDecommissioned" msg:"bd"`
    	BytesFailed             int64 `json:"bytesDecommissionedFailed" msg:"bf"`
    }
    
    // Clone make a copy of PoolDecommissionInfo
    func (pd *PoolDecommissionInfo) Clone() *PoolDecommissionInfo {
    	if pd == nil {
    		return nil
    	}
    	return &PoolDecommissionInfo{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  2. cmd/batch-handlers.go

    	DeleteMarkersFailed int64 `json:"deleteMarkersFailed" msg:"dmf"`
    	BytesTransferred    int64 `json:"bytesTransferred" msg:"bt"`
    	BytesFailed         int64 `json:"bytesFailed" msg:"bf"`
    }
    
    const (
    	batchReplName         = "batch-replicate.bin"
    	batchReplFormat       = 1
    	batchReplVersionV1    = 1
    	batchReplVersion      = batchReplVersionV1
    	batchJobName          = "job.bin"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    // returns the bitfield width of mask >> rshift for arm64 bitfield ops.
    func arm64BFWidth(mask, rshift int64) int64 {
    	shiftedMask := int64(uint64(mask) >> uint64(rshift))
    	if shiftedMask == 0 {
    		panic("ARM64 BF mask is zero")
    	}
    	return nto(shiftedMask)
    }
    
    // sizeof returns the size of t in bytes.
    // It will panic if t is not a *types.Type.
    func sizeof(t interface{}) int64 {
    	return t.(*types.Type).Size()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top