Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Qa (0.01 sec)

  1. cmd/metrics-v3-replication.go

    	m.Set(replicationLastMinuteQueuedBytes, float64(qt.Curr.Bytes))
    	m.Set(replicationLastMinuteQueuedCount, float64(qt.Curr.Count))
    
    	qa := qs.ActiveWorkers
    	m.Set(replicationAverageActiveWorkers, float64(qa.Avg))
    	m.Set(replicationCurrentActiveWorkers, float64(qa.Curr))
    	m.Set(replicationMaxActiveWorkers, float64(qa.Max))
    
    	if len(qs.XferStats) > 0 {
    		tots := qs.XferStats[Total]
    		m.Set(replicationAverageDataTransferRate, tots.Avg)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-resolutionStrategy/kotlin/build.gradle.kts

    fun findDefaultVersionInCatalog(group: String, name: String): DefaultVersion {
        //some custom logic that resolves the default version into a specific version
        return DefaultVersion(version = "1.0", because = "tested by QA")
    }
    // end::custom-versioning-scheme[]
    
    // tag::denying_version[]
    configurations.all {
        resolutionStrategy.eachDependency {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-resolutionStrategy/groovy/build.gradle

            }
        }
    }
    
    def findDefaultVersionInCatalog(String group, String name) {
        //some custom logic that resolves the default version into a specific version
        [version: "1.0", because: 'tested by QA']
    }
    // end::custom-versioning-scheme[]
    
    // tag::denying_version[]
    configurations.all {
        resolutionStrategy.eachDependency { DependencyResolveDetails details ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Server-TLSv13-KeySharePreference

    00000420  10 5e 42 1f a2 13 e5 f5  b0 cb 69 21 eb ac 6e 4d  |.^B.......i!..nM|
    00000430  1d 00 94 e4 29 f1 c6 c0  0c 58 7e ca 99 e5 5d 77  |....)....X~...]w|
    00000440  c3 3a 23 8e b8 a8 19 6e  35 ec e3 51 61 82 23 2f  |.:#....n5..Qa.#/|
    00000450  3e af 1a e9 6b 4f 43 a9  60 d6 55 d6 75 f5 a6 84  |>...kOC.`.U.u...|
    00000460  27 64 8b 0f 15 db 95 47  36 b3 14 e0 da a2 21 1e  |'d.....G6.....!.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:19:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top