- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for InlineBlock (0.06 seconds)
-
internal/config/storageclass/storage-class.go
if shardSize < 0 { return false } ConfigLock.RLock() inlineBlock := int64(128 * humanize.KiByte) if sCfg.initialized { inlineBlock = sCfg.inlineBlock } ConfigLock.RUnlock() if versioned { return shardSize <= inlineBlock/8 } return shardSize <= inlineBlock } // InlineBlock indicates the size of the block which will be used to inline
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 12.3K bytes - Click Count (0) -
cmd/xl-storage.go
// - object has not yet transitioned // - object has maximum of 1 parts if attemptInline { inlineBlock := globalStorageClass.InlineBlock() if inlineBlock <= 0 { inlineBlock = 128 * humanize.KiByte } canInline := fi.ShardFileSize(fi.Parts[0].ActualSize) <= inlineBlock if canInline { dataPath := pathJoin(volumeDir, path, fi.DataDir, fmt.Sprintf("part.%d", fi.Parts[0].Number))Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 91.7K bytes - Click Count (0)