Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,101 for Variant (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesRulesIntegrationTest.groovy

            }
            fails ':checkDeps'
    
            then:
            def variant = 'runtime'
            if (!isGradleMetadataPublished() && useIvy()) {
                variant = 'default'
            }
            failure.assertHasCause("""Module 'cglib:cglib-nodep' has been rejected:
       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib:3.2.5($variant)]""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/maven/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/maven/AbstractMavenPublishIntegTest.groovy

            resolveArtifacts(module) {
                variant = 'JAVA_API'
                expectationSpec.delegate = delegate
                expectationSpec()
            }
        }
    
        void resolveRuntimeArtifacts(MavenModule module, @DelegatesTo(value = MavenArtifactResolutionExpectation, strategy = Closure.DELEGATE_FIRST) Closure<?> expectationSpec) {
            resolveArtifacts(module) {
                variant = 'JAVA_RUNTIME'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    				build.AddVariant(t.Variants())
    				exact = false
    				t = build.Make()
    			}
    			hasExtra = true
    		} else if _, ok := t.Extension('u'); ok {
    			// TODO: va may mean something else. Consider not considering it.
    			// Strip all but the 'va' entry.
    			old := t
    			variant := t.TypeForKey("va")
    			t = language.Tag{LangID: b, ScriptID: s, RegionID: r}
    			if variant != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/testFixtures/groovy/org/gradle/api/publish/ivy/AbstractIvyPublishIntegTest.groovy

            resolveArtifacts(module) {
                variant = 'JAVA_API'
                expectationSpec.delegate = delegate
                expectationSpec()
            }
        }
    
        void resolveRuntimeArtifacts(IvyModule module, @DelegatesTo(value = IvyArtifactResolutionExpectation, strategy = Closure.DELEGATE_FIRST) Closure<?> expectationSpec) {
            resolveArtifacts(module) {
                variant = 'JAVA_RUNTIME'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

                    if (visited.add([result, variant])) {
                        if (variant == null) {
                            println(root)
                        }
                        def dependencies = variant == null ? result.dependencies : result.getDependenciesForVariant(variant)
                        depth++
                        dependencies.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/LazyVariantBackedConfigurationMetadata.java

            }
    
            /**
             * Returns the complete set of attributes of this variant, which consists of a view of the union
             * of the component level attributes and the variant attributes as found in metadata, potentially
             * modified by rules.
             *
             * @return the updated variant attributes
             */
            @Override
            public ImmutableAttributes getAttributes() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/TestArtifactSet.java

        private final DisplayName variantName;
        private final AttributeContainer variant;
        private final ImmutableSet<ResolvedArtifact> artifacts;
    
        private TestArtifactSet(String variantName, AttributeContainer variant, Collection<? extends ResolvedArtifact> artifacts) {
            this.variantName = Describables.of(variantName);
            this.variant = variant;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AmbiguousArtifactTransformFailureDescriber.java

                formatter.node("Candidate transform(s)");
                formatter.startChildren();
                for (TransformedVariant variant : entry.getValue()) {
                    formatter.node("Transform '" + variant.getTransformChain().getDisplayName() + "' producing attributes:");
                    formatSortedAttributes(formatter, variant.getAttributes());
                }
                formatter.endChildren();
                formatter.endChildren();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

         * represents the attributes of the implicit variant. Any further elements of the inner array are explicit
         * sub-variants. The outer array is the collection of all consumable configurations being tested.
         *
         * @param candidates All configurations and their variants being matched against.
         * @param requested The requested attributes.
         *
         * @return The single matched variant.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top