Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for compMinIndexSize (0.44 sec)

  1. cmd/object-api-utils.go

    			// from the client verify here.
    			comp.Close()
    			pw.CloseWithError(IncompleteBody{})
    			return
    		}
    		// Close the stream.
    		// If more than compMinIndexSize was written, generate index.
    		if cn > compMinIndexSize {
    			idx, err := comp.CloseIndex()
    			idx = s2.RemoveIndexHeaders(idx)
    			indexCh <- idx
    			pw.CloseWithError(err)
    			return
    		}
    		pw.CloseWithError(comp.Close())
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Jun 25 15:08:54 UTC 2025
    - 37.3K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2.go

    					var changed bool
    					clearField := true
    					for i, sz := range version.ObjectV2.PartActualSizes {
    						if len(version.ObjectV2.PartIndices) > i {
    							// 8<<20 is current 'compMinIndexSize', but we detach it in case it should change in the future.
    							if sz <= 8<<20 && len(version.ObjectV2.PartIndices[i]) > 0 {
    								changed = true
    								version.ObjectV2.PartIndices[i] = nil
    							}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 65.6K bytes
    - Viewed (1)
Back to top