Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for Qa (0.06 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ComponentAttributesDynamicVersionIntegrationTest.groovy

            when:
            repositoryInteractions {
                'org.test:module:1.0' {
                    expectGetMetadata()
                    if (requested == 'qa') {
                        expectGetArtifact()
                    }
                }
            }
    
            then:
            if (requested == 'qa') {
                run ':checkDeps'
                resolve.expectGraph {
                    root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

                }
                failure.assertThatCause(containsNormalizedString("Incompatible because this component declares attribute 'quality' with value 'canary' and the consumer needed attribute 'quality' with value 'qa'"))
            }
    
            where:
            fixApplied << [false, true]
    
            // for description of the test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/testdata/ecdsa_1.pem

    -----BEGIN EC PRIVATE KEY-----
    MIHcAgEBBEIAvxtZy9aI/lEt6LVLIhVrWLSwmlMFThU/nZUPr88nA5yKzJMyKbW/
    QA+umam9YtO78WwzriTGC9qwW6+t+liXrcCgBwYFK4EEACOhgYkDgYYABAGzIO9n
    tdTx6oVg1O59ljYP4FHY9RNUy+wHeXFnB6fo9asGg9jwLMg/iX0F+whFkllQjNLf
    kKp/9ATWQHrzSbzuqwB9UU5zfQ3ulhMwEBpxbM6aSi1HyYtc5pQn7KB6h1VXiuQK
    CIj4kVYHClZuKz0om/XAJL4vWVDwJqDBN6m9Yi9ZLQ==
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 18:57:49 UTC 2018
    - 365 bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantAttributesRulesIntegrationTest.groovy

                           attributes {
                              attribute attribute, 'qa'
                           }
                        }
                    }
                }
    
                configurations {
                    ${variantToTest}.attributes.attribute(quality, 'qa')
                }
    
                dependencies {
                    attributesSchema {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

        }
      });
    
      // Check for  (Quant (Dequant $in), $qA) "qdq" pairs that couldn't be
      // eliminated at this point.  This only occurs for the pattern
      //      (Quant (Dequant (Quant $in, $qB)), $qA)   $qB != $qA
      // where the  qdq pair denotes a non-trivial requantization of an
      // already quantized value. Since this makes little sense (directly quantizing
      // (Quant $in, $qA) would introduce less quantization noise) the likely cause
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

      });
    
      // Check for  (Quant (Dequant $in), $qA) "qdq" pairs that couldn't be
      // eliminated at this point.  This only occurs for the pattern
      //      (Quant (Dequant (Quant $in, $qB)), $qA)   $qB != $qA
      // where the  qdq pair denotes a non-trivial requantization of an
      // already quantized value. Since this makes little sense (directly quantizing
      // (Quant $in, $qA) would introduce less quantization noise) the likely cause
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. .space/CODEOWNERS

    /kotlin-native/klib/ "Kotlin Common Backend"
    /kotlin-native/tools/benchmarks "Kotlin Native" "Kotlin Performance QA"
    /kotlin-native/tools/benchmarksAnalyzer "Kotlin Native" "Kotlin Performance QA"
    /kotlin-native/tools/performance-server "Kotlin Native" "Kotlin Performance QA"
    /kotlin-native/performance "Kotlin Native" "Kotlin Performance QA"
    
    /libraries/examples/annotation-processor-example/ "Kotlin Compiler Core"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top