Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for featured (0.14 sec)

  1. cmd/bucket-metadata-sys.go

    //
    // This function should only be used with
    // - GetBucketInfo
    // - ListBuckets
    // For all other bucket specific metadata, use the relevant
    // calls implemented specifically for each of those features.
    func (sys *BucketMetadataSys) Get(bucket string) (BucketMetadata, error) {
    	if isMinioMetaBucketName(bucket) {
    		return newBucketMetadata(bucket), errConfigNotFound
    	}
    
    	sys.RLock()
    	defer sys.RUnlock()
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 19.8K bytes
    - Viewed (0)
Back to top