Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,533 for varints (0.15 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

            def variants = pluginModule.parsedModuleMetadata.variants
            variants.size() == 4
            variants[0].name == "apiElements"
            variants[0].attributes['color'] == 'blue'
            variants[1].name == "runtimeElements"
            variants[1].attributes['color'] == 'blue'
            variants[2].name == "alternateApiElements"
            variants[2].attributes['color'] == 'green'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

                }
                this.variants.each { variant ->
                    def actualVariant = actual.variants.find { it.name == variant.name }
                    if (!actualVariant) {
                        errors << "Expected variant name $variant, but wasn't found in: $actual.variants.name"
                    } else {
                        if (variant.attributes != actualVariant.attributes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/tests/failRuntimeClasspathResolve.out

            The only attribute distinguishing these variants is 'org.gradle.native.architecture'. Add this attribute to the consumer's configuration to resolve the ambiguity:
              - Value: 'x86-64' selects variant: 'natives-windows-runtime'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 820 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/swift-application-variant-task-graph.png

    swift-application-variant-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIntegrationTest.groovy

        def "expressing a preference for a variant with capabilities declared in a published modules does not evict unrelated variants"() {
            given:
            repository {
                'org:testB:1.0' {
                    variant('runtime') {
                        capability('org', 'testB', '1.0')
                    }
                    variant('runtimeAlt') {
                        capability('org', 'testB', '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:37:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/MavenComponentParser.java

                .map(variant -> dependencyCoordinateResolverFactory
                    .createCoordinateResolvers(variant, versionMappingStrategy)
                    .map(resolvers -> getDependenciesForVariant(variant, resolvers, coordinates))
                ).collect(Collectors.toList());
    
            return new MergeProvider<>(parsedVariants).map(variants -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/ComponentMetadataDetailsAdapterTest.groovy

            then: "attributes are used during matching, the rule is applied on all variants"
            2 * attributesRule.execute(_)
    
            and: " we only apply the dependencies rule to the selected variant"
            1 * dependenciesRule.execute(_)
            1 * constraintsRule.execute(_)
            0 * _
        }
    
        def "treats ivy configurations as variants"() {
            given:
            def rule = Mock(Action)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 20:17:51 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataSpec.java

     */
    public class ModuleMetadataSpec {
    
        final Identity identity;
        final List<Variant> variants;
        final boolean mustIncludeBuildId;
    
        ModuleMetadataSpec(
            Identity identity,
            List<Variant> variants,
            boolean mustIncludeBuildId
        ) {
            this.identity = identity;
            this.variants = variants;
            this.mustIncludeBuildId = mustIncludeBuildId;
        }
    
        static class Identity {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/common/dependency-reports/src/main/java/com/example/ListResolvedArtifacts.java

                List<ResolvedVariantResult> variants = getArtifactVariants().get();
                List<RegularFile> files = getArtifactFiles().get();
                for (int index = 0; index < ids.size(); index++) {
                    ComponentArtifactIdentifier id = ids.get(index);
                    ResolvedVariantResult variant = variants.get(index);
                    RegularFile file = files.get(index);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. 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)
Back to top