Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SC (0.14 sec)

  1. cmd/object-handlers.go

    		emetadata, err := extractMetadataFromReq(ctx, r)
    		if err != nil {
    			return nil, err
    		}
    		if sc != "" {
    			emetadata[xhttp.AmzStorageClass] = sc
    		}
    		return emetadata, nil
    	}
    
    	if sc != "" {
    		defaultMeta[xhttp.AmzStorageClass] = sc
    	}
    
    	// if x-amz-metadata-directive says COPY then we
    	// return the default metadata.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    	}
    
    	meta[xhttp.AmzObjectTagging] = oi.UserTags
    	meta[xhttp.AmzTagDirective] = "REPLACE"
    
    	if sc == "" {
    		sc = oi.StorageClass
    	}
    	// drop non standard storage classes for tiering from replication
    	if sc != "" && (sc == storageclass.RRS || sc == storageclass.STANDARD) {
    		meta[xhttp.AmzStorageClass] = sc
    	}
    
    	meta[xhttp.MinIOSourceETag] = oi.ETag
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  3. cmd/admin-handlers.go

    			partialWrite(healthInfo)
    
    			peerSysConfig := globalNotificationSys.GetSysConfig(healthCtx)
    			for _, sc := range peerSysConfig {
    				anonymizeAddr(&sc)
    				healthInfo.Sys.SysConfig = append(healthInfo.Sys.SysConfig, sc)
    			}
    			partialWrite(healthInfo)
    		}
    	}
    
    	getAndWriteSysServices := func() {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
Back to top