Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,305 for variant3 (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                    configurations {
                        compile.outgoing.variants {
                            variant1 {
                                attributes.attribute(buildType, 'release')
                                attributes.attribute(flavor, 'free')
                                artifact jar1
                            }
                            variant2 {
                                attributes.attribute(buildType, 'release')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParserTest.groovy

            1 * variant1.addFile("api.zip", "api.zop")
            1 * variant1.addFile("api-2.zip", "api-2.zop")
            1 * variant1.setAvailableExternally(false)
            1 * metadata.addVariant("runtime", attributes(usage: "runtime", packaging: "zip")) >> variant2
            1 * variant2.addFile("api.zip", "api.zop")
            1 * variant2.addFile("runtime.zip", "runtime.zop")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 38K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/DefaultArtifactVariantSelectorFactoryTest.groovy

            def variants = [variant1, variant2] as Set
            def transformedVariants = variants.collect { transformedVariant(it, requested)}
    
            given:
            set.schema >> producerSchema
            set.variants >> variants
            set.asDescribable() >> Describables.of('<component>')
            variant1.attributes >> typeAttributes("jar")
            variant1.asDescribable() >> Describables.of('<variant1>')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/Variant.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Declares that a property represents a variant dimension. Variants are used in dependency
     * resolution to discriminate between various binaries that may match the requirements (such
     * as a platform, a build type, ...).
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantAttributesRulesIntegrationTest.groovy

            repository {
                id('org.test:moduleB:1.0') {
                    variant('customVariant1') {
                        attribute 'format', 'custom'
                        artifact 'variant1'
                    }
                    variant('customVariant2') {
                        attribute 'format', 'custom'
                        artifact 'variant2'
                    }
                }
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/xctest_plugin.adoc

    image::xctest-task-graph.png[]
    
    [[sec:xctest_task_variants]]
    === Variant-dependent Tasks
    
    The XCTest Plugin creates tasks based on the variants of the test component.
    Read the <<building_swift_projects.adoc#sec:introducing_build_variants-swift,introduction to build variants>> for more information.
    The following diagrams show the relationship between variant-dependent tasks.
    
    .XCTest Plugin variant-dependent task graph
    image::xctest-variant-task-graph.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    		return cr
    	}
    	return r
    }
    
    // Variant represents a registered variant of a language as defined by BCP 47.
    type Variant struct {
    	ID  uint8
    	str string
    }
    
    // ParseVariant parses and returns a Variant. An error is returned if s is not
    // a valid variant.
    func ParseVariant(s string) (v Variant, err error) {
    	defer func() {
    		if recover() != nil {
    			v = Variant{}
    			err = ErrSyntax
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

               - Variant org.example:nyvu:1.0 variant greenElementsCapability2 has attributes {color=green}
    
       > Could not resolve project :.
         Required by:
             project :
          > Multiple incompatible variants of org.example:pi2e5:1.0 were selected:
               - Variant org.example:pi2e5:1.0 variant blueElementsCapability1 has attributes {color=blue}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    [[sec:cpp_application_task_variants]]
    === Variant-dependent Tasks
    
    The {cpp} Application Plugin creates tasks based on the variants of the application component.
    Read the <<building_cpp_projects.adoc#sec:introducing_build_variants-cpp,introduction to build variants>> for more information.
    The following diagram shows the relationship between variant-dependent tasks.
    
    .{cpp} Application Plugin variant-dependent task graph
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    [[sec:cpp_unit_test_task_variants]]
    === Variant-dependent Tasks
    
    The {cpp} Unit Test Plugin creates tasks based on the variants of the unit test component.
    Read the <<building_cpp_projects.adoc#sec:introducing_build_variants-cpp,introduction to build variants>> for more information.
    The following diagrams show the relationship between variant-dependent tasks.
    
    .{cpp} Unit Test Plugin variant-dependent task graph
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top