Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 685 for varints (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedFilesApiIntegrationTest.groovy

      - Configuration ':a:compile' variant free declares attribute 'usage' with value 'compile':
          - Unmatched attributes:
              - Provides artifactType 'jar' but the consumer didn't ask for it
              - Provides flavor 'free' but the consumer didn't ask for it
      - Configuration ':a:compile' variant paid declares attribute 'usage' with value 'compile':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyModule.java

         *  transitive
         *  visibility
         */
        IvyModule configuration(Map<String, ?> options, String name);
    
        /**
         * Define a variant with attributes. Variants are only published when using {@link #withModuleMetadata()}.
         */
        IvyModule variant(String variant, Map<String, String> attributes);
    
        /**
         * Publishes ivy.xml plus all artifacts with different content (and size) to previous publication.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/ConfigurationVariantMapping.java

                this.objectFactory = objectFactory;
            }
    
            @Override
            public ConfigurationVariant getConfigurationVariant() {
                return variant;
            }
    
            @Override
            public void skip() {
                skip = true;
            }
    
            @Override
            public void mapToOptional() {
                this.optional = true;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/PreferJavaRuntimeVariant.java

    /**
     * When no consumer attributes are provided, prefer the Java runtime variant over the API variant.
     *
     * Gradle has long assumed that, by default, consumers of a maven repository require the _runtime_ variant
     * of the published library.
     * The following disambiguation rule encodes this assumption for the case where a java library is published
     * with variants using Gradle module metadata. This will allow us to migrate to consuming the new module
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/VariantAwareAmbiguousResolutionFailure.java

    import java.util.List;
    
    /**
     * A specialization of {@link AmbiguousResolutionFailure} that represents the situation when multiple variants are
     * available that would satisfy a dependency selection request during a variant-aware matching scenario.
     */
    public final class VariantAwareAmbiguousResolutionFailure extends AmbiguousResolutionFailure {
        private final ModuleVersionIdentifier targetComponentId;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalComponentGraphResolveState.java

        interface LocalComponentGraphSelectionCandidates extends GraphSelectionCandidates {
    
            /**
             * Get all variants that can be selected for this component. This includes both:
             * <ul>
             *     <li>Variant with attributes: those which can be selected through attribute matching</li>
             *     <li>Variant without attributes: those which can be selected by configuration name</li>
             * </ul>
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesMultiTargetIntegrationTest.groovy

            failure.assertThatCause(containsNormalizedString("The only attribute distinguishing these variants is 'org.gradle.testsuite.target.name'. Add this attribute to the consumer's configuration to resolve the ambiguity:"))
        }
    
        def "reports of multiple targets can be aggregated if variant information is specified"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedVariantCache.java

     */
    @ServiceScope(Scope.Build.class)
    public interface ResolvedVariantCache {
        /**
         * Caches resolved variants created by the given function if the identifier is eligible for caching.
         *
         * @param key key for the cache
         * @param mappingFunction function to create a {@link ResolvedVariant}
         * @return the resolved variant created by the function or a cached instance, if available
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionCandidateAssessor.java

        }
    
        public List<AssessedCandidate> assessResolvedVariants(List<? extends ResolvedVariant> resolvedVariants) {
            return resolvedVariants.stream()
                .map(variant -> assessCandidate(variant.asDescribable().getCapitalizedDisplayName(), variant.getCapabilities(), variant.getAttributes().asImmutable()))
                .sorted(Comparator.comparing(AssessedCandidate::getDisplayName))
                .collect(Collectors.toList());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalModuleDependencyMetadata.java

            return selectLegacyConfigurations(variantSelector, consumerAttributes, targetComponentState, consumerSchema);
        }
    
        /**
         * Select target graph variants in an ecosystem-dependent manner.
         *
         * This method is called when the target component does not have variants to select from.
         */
        protected abstract GraphVariantSelectionResult selectLegacyConfigurations(
            GraphVariantSelector variantSelector,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top