Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 822 for varints (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/cpp-application-variant-task-graph.png

    cpp-application-variant-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaIntegTest.groovy

            }
            with(javaLibrary.parsedModuleMetadata) {
                assert variants.size() == 1
                assert variants[0].name == "apiElements"
                assert variants[0].dependencies*.coords == ["org:foo:1.0"]
            }
        }
    
        def "can ignore all publication warnings by variant name"() {
            given:
            def silenceMethod = "suppressPomMetadataWarningsFor"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.2K 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/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)
  7. 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)
  8. 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)
  9. subprojects/core-api/src/main/java/org/gradle/api/attributes/Category.java

    /**
     * This attribute describes the categories of variants for a given module.
     * <p>
     * Four values are found in published components:
     * <ul>
     *     <li>{@code library}: Indicates that the variant is a library, that usually means a binary and a set of dependencies</li>
     *     <li>{@code platform}: Indicates that the variant is a platform, that usually means a definition of dependency constraints</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 30 17:48:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithStaticLinkagePublishingIntegrationTest.groovy

            mainMetadata.variants.size() == 5
            def api = mainMetadata.variant("api")
            api.dependencies.empty
            api.files.size() == 1
            api.files[0].name == 'cpp-api-headers.zip'
            api.files[0].url == 'test-1.2-cpp-api-headers.zip'
            mainMetadata.variant("debugLink").availableAt.coords == "some.group:test_debug:1.2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top