Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CommonPrefixes (0.14 sec)

  1. cmd/api-response.go

    	data.IsTruncated = isTruncated
    
    	commonPrefixes := make([]CommonPrefix, 0, len(prefixes))
    	for _, prefix := range prefixes {
    		prefixItem := CommonPrefix{}
    		prefixItem.Prefix = s3EncodeName(prefix, encodingType)
    		commonPrefixes = append(commonPrefixes, prefixItem)
    	}
    	data.CommonPrefixes = commonPrefixes
    	data.KeyCount = len(data.Contents) + len(data.CommonPrefixes)
    	return data
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 33.3K bytes
    - Viewed (2)
  2. cmd/object-api-datatypes.go

    	Prefix string
    
    	// A character used to truncate the object prefixes.
    	// NOTE: only supported delimiter is '/'.
    	Delimiter string
    
    	// CommonPrefixes contains all (if there are any) keys between Prefix and the
    	// next occurrence of the string specified by delimiter.
    	CommonPrefixes []string
    
    	EncodingType string // Not supported yet.
    }
    
    // TransitionedObject transitioned object tier and status.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 20.8K bytes
    - Viewed (0)
Back to top