Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 412 for Usage (0.02 sec)

  1. cmd/data-usage.go

    	dataUsageObjName       = ".usage.json"
    	dataUsageObjNamePath   = bucketMetaPrefix + SlashSeparator + dataUsageObjName
    	dataUsageBloomName     = ".bloomcycle.bin"
    	dataUsageBloomNamePath = bucketMetaPrefix + SlashSeparator + dataUsageBloomName
    
    	backgroundHealInfoPath = bucketMetaPrefix + SlashSeparator + ".background-heal.json"
    
    	dataUsageCacheName = ".usage-cache.bin"
    )
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-05-09 00:51
    - 5.6K bytes
    - Viewed (0)
  2. cmd/data-usage-cache.go

    // dataUsageCacheV2 contains a cache of data usage entries version 2.
    type dataUsageCacheV2 struct {
    	Info  dataUsageCacheInfo
    	Cache map[string]dataUsageEntryV2
    }
    
    // dataUsageCacheV3 contains a cache of data usage entries version 3.
    type dataUsageCacheV3 struct {
    	Info  dataUsageCacheInfo
    	Cache map[string]dataUsageEntryV3
    }
    
    // dataUsageCacheV4 contains a cache of data usage entries version 4.
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-03-30 00:56
    - 34.7K bytes
    - Viewed (0)
  3. cmd/data-usage-utils.go

    }
    
    // DataUsageInfo represents data usage stats of the underlying Object API
    type DataUsageInfo struct {
    	TotalCapacity     uint64 `json:"capacity,omitempty"`
    	TotalUsedCapacity uint64 `json:"usedCapacity,omitempty"`
    	TotalFreeCapacity uint64 `json:"freeCapacity,omitempty"`
    
    	// LastUpdate is the timestamp of when the data usage info was last updated.
    	// This does not indicate a full scan.
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-03-10 09:15
    - 6.4K bytes
    - Viewed (0)
  4. cmd/data-usage-cache_gen_test.go

    Poorna <******@****.***> 1728080613 -0700
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-10-04 22:23
    - 19K bytes
    - Viewed (0)
  5. cmd/data-usage-cache_test.go

    Krishnan Parthasarathi <******@****.***> 1705132268 -0800
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-01-13 07:51
    - 2.6K bytes
    - Viewed (0)
  6. cmd/metrics-v3-cluster-usage.go

    	for _, usage := range dataUsageInfo.BucketsUsage {
    		clusterBuckets++
    		clusterSize += usage.Size
    		clusterObjectsCount += usage.ObjectsCount
    		clusterVersionsCount += usage.VersionsCount
    		clusterDeleteMarkersCount += usage.DeleteMarkersCount
    		for k, v := range usage.ObjectSizesHistogram {
    			clusterObjectSizesHistogram[k] += v
    		}
    		for k, v := range usage.ObjectVersionsHistogram {
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-02-18 16:25
    - 6.5K bytes
    - Viewed (0)
  7. cmd/data-usage-cache_gen.go

    Harshavardhana <******@****.***> 1734303012 +0530
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-12-15 22:50
    - 86.4K bytes
    - Viewed (0)
  8. build-logic/jvm/src/main/kotlin/gradlebuild/ConfigurationExtensions.kt

    import org.gradle.api.attributes.LibraryElements
    import org.gradle.api.attributes.Usage
    import org.gradle.api.attributes.java.TargetJvmEnvironment
    import org.gradle.api.model.ObjectFactory
    import org.gradle.kotlin.dsl.named
    
    fun Configuration.configureAsApiElements(objects: ObjectFactory) {
        attributes {
            attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_API))
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-01-14 07:52
    - 3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/PACTest.java

         */
        private static void verifyAESMAC ( int usage, String expect, String data, String key ) throws GeneralSecurityException {
            verifyAESHMAC(usage, expect, key, Hex.decode(data));
        }
    
    
        private static void verifyArcfourHMAC ( int usage, String expect, String data, String key ) throws GeneralSecurityException {
            verifyArcfourHMAC(usage, expect, key, Hex.decode(data));
        }
    
    
        /**
    Registered: 2025-05-25 00:10
    - Last Modified: 2023-10-01 12:01
    - 22.3K bytes
    - Viewed (0)
  10. src/cmd/buildid/buildid.go

    	"cmd/internal/buildid"
    	"cmd/internal/telemetry/counter"
    )
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: go tool buildid [-w] file\n")
    	flag.PrintDefaults()
    	os.Exit(2)
    }
    
    var wflag = flag.Bool("w", false, "write build ID")
    
    func main() {
    	log.SetPrefix("buildid: ")
    	log.SetFlags(0)
    	counter.Open()
    	flag.Usage = usage
    	flag.Parse()
    	counter.Inc("buildid/invocations")
    Registered: 2025-05-27 11:13
    - Last Modified: 2024-06-21 19:58
    - 1.7K bytes
    - Viewed (0)
Back to top