Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for variantBuf (0.1 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationPublicationsTest.groovy

        def "converts to OutgoingVariant when explicit variant defined"() {
            def artifact = Stub(PublishArtifact)
    
            given:
            def variantDef = publications.variants.create("child")
            variantDef.attributes.attribute(Attribute.of("thing", String), "value")
            variantDef.artifacts.add(artifact)
    
            expect:
            def variants = getOutgoingVariants(publications)
            variants.size() == 1
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_types.def

    HANDLE_TF_REF_TYPE(Float8E5M2Ref, FLOAT8_E5M2_REF, "float8e5m2ref")
    
    #ifndef HANDLE_LAST_TF_TYPE
    #define HANDLE_LAST_TF_TYPE(class, enumerant, name) \
      HANDLE_TF_REF_TYPE(class, enumerant, name)
    #endif
    HANDLE_LAST_TF_TYPE(VariantRef, VARIANT_REF, "variantref")
    #undef HANDLE_LAST_TF_TYPE
    
    #undef HANDLE_TF_REF_TYPE
    #undef HANDLE_TF_TYPE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 09 03:12:53 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. okhttp-testing-support/build.gradle.kts

      api(libs.assertk)
      api(libs.bouncycastle.bcprov)
      implementation(libs.bouncycastle.bcpkix)
      implementation(libs.bouncycastle.bctls)
      api(libs.conscrypt.openjdk)
      api(libs.openjsse)
    
      api(variantOf(libs.amazonCorretto) {
        classifier("linux-x86_64")
      })
    
      api(libs.hamcrestLibrary)
      api(libs.junit.jupiter.api)
      api(libs.junit.jupiter.params)
    
      api(libs.junit.pioneer)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 06 05:31:00 UTC 2024
    - 750 bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/DependencyHandlerDelegate.kt

            delegate.testFixtures(notation, configureAction)
    
        override fun variantOf(dependencyProvider: Provider<MinimalExternalModuleDependency>, variantSpec: Action<in ExternalModuleDependencyVariantSpec>): Provider<MinimalExternalModuleDependency> =
            delegate.variantOf(dependencyProvider, variantSpec)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top