Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for indicators (0.15 sec)

  1. cmd/object-api-interface.go

    	NoDecryption                        bool      // indicates if the stream must be decrypted.
    	PreserveETag                        string    // preserves this etag during a PUT call.
    	NoLock                              bool      // indicates to lower layers if the caller is expecting to hold locks.
    	HasIfMatch                          bool      // indicates if the request has If-Match header
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Sep 07 16:13:09 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  2. cmd/erasure-multipart.go

    		// Marker not present among what is present on the
    		// server, we return an empty list.
    		return result, nil
    	}
    
    	if partNumberMarker > 0 && start != -1 {
    		if start+1 >= len(partNums) {
    			// Marker indicates that we are the end
    			// of the list, so we simply return empty
    			return result, nil
    		}
    
    		partNums = partNums[start+1:]
    	}
    
    	result.Parts = make([]PartInfo, 0, len(partNums))
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Sep 07 16:13:09 UTC 2025
    - 47.3K bytes
    - Viewed (0)
Back to top