Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for IsLatestDeleteMarker (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/metacache-set.go

    				return false
    			}
    			if !o.IncludeDirectories && (entry.isDir() || (!o.Versioned && entry.isObjectDir() && entry.isLatestDeletemarker())) {
    				return true
    			}
    			if !entry.isInDir(o.Prefix, o.Separator) {
    				return true
    			}
    			if !o.InclDeleted && entry.isObject() && entry.isLatestDeletemarker() && !entry.isObjectDir() {
    				return true
    			}
    			if !o.InclDeleted && entry.isAllFreeVersions() {
    				return true
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 30.7K bytes
    - Click Count (0)
  2. cmd/xl-storage-format-v2.go

    		succModTime = xl.getModTime()
    
    		dst = append(dst, fi)
    		return nil
    	})
    	return dst, err
    }
    
    // IsLatestDeleteMarker returns true if latest version is a deletemarker or there are no versions.
    // If any error occurs false is returned.
    func (x xlMetaBuf) IsLatestDeleteMarker() bool {
    	vers, headerV, _, buf, err := decodeXLHeaders(x)
    	if err != nil {
    		return false
    	}
    	if vers == 0 {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 65.6K bytes
    - Click Count (1)
Back to Top