Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 683 for varints (0.25 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformedVariantFactory.java

            ResolvedArtifactSet result = variants.get(variantKey);
            if (result == null) {
                ResolvedArtifactSet newResult = factory.create(componentIdentifier, sourceVariant, variantDefinition, dependenciesResolverFactory);
                result = variants.putIfAbsent(variantKey, newResult);
                if (result == null) {
                    result = newResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 11:35:20 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ConfigurationMetadata.java

         */
        @Override
        ImmutableList<? extends ComponentArtifactMetadata> getArtifacts();
    
        /**
         * Returns the variants of this configuration. Should include at least one value. Exactly one variant must be selected and the artifacts of that variant used.
         */
        Set<? extends VariantResolveMetadata> getVariants();
    
        /**
         * Returns the exclusions to apply to this configuration:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractDependencyMetadataRulesTest.groovy

        }
    
        private gradleComponentMetadata(String[] deps) {
            def metadata = mavenMetadataFactory.create(componentIdentifier, [])
            //gradle metadata is distinguished from maven POM metadata by explicitly defining variants
            defaultVariant = metadata.addVariant("default", attributes)
            deps.each { name ->
                if (addAllDependenciesAsConstraints()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:39:10 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PluginVariantResolveIntegrationTest.groovy

                        }
                    }
                }
    
                java {
                   // make sure we add a sources variant like in the bug report
                   // because this is this variant which causes the problem: because there's
                   // a mismatch on the Java version for the other variants, this one ended up
                   // being selected!
                   withSourcesJar()
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 12:51:28 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AmbiguousArtifactVariantsFailureDescriber.java

                formatter.node("More than one variant of " + failure.getRequestedName() + " matches the consumer attributes");
            } else {
                formatter.node("The consumer was configured to find " + describer.describeAttributeSet(failure.getRequestedAttributes().asMap()) + ". However we cannot choose between the following variants of " + failure.getRequestedName());
            }
            formatter.startChildren();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/IncompatibleArtifactVariantsFailureDescriber.java

            AttributeDescriber describer = AttributeDescriberSelector.selectDescriber(failure.getRequestedAttributes(), schema);
            TreeFormatter formatter = new TreeFormatter();
            formatter.node("No variants of " + style(StyledTextOutput.Style.Info, failure.getRequestedName()) + " match the consumer attributes");
            formatter.startChildren();
            for (AssessedCandidate assessedCandidate : failure.getCandidates()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. pkg/test/framework/resource/flags.go

    		"Common Container tag to use when deploying container images")
    	flag.StringVar(&settingsFromCommandLine.Image.Variant, "istio.test.variant", settingsFromCommandLine.Image.Variant,
    		"Common Container variant to use when deploying container images")
    	flag.StringVar(&settingsFromCommandLine.Image.PullPolicy, "istio.test.pullpolicy", settingsFromCommandLine.Image.PullPolicy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationInternal.java

            }
        }
    
        interface VariantVisitor {
            // This configuration as a variant. May not always be present
            void visitOwnVariant(DisplayName displayName, ImmutableAttributes attributes, Collection<? extends PublishArtifact> artifacts);
    
            // A child variant. May not always be present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    [[sec:resolving-variant-aware-errors]]
    === Variant Selection Errors
    
    Sometimes a selection error happens at the <<variant_model.adoc#understanding-variant-selection,variant selection level>>.
    Have a look at the <<variant_model.adoc#sec:variant-select-errors,dedicated section>> to understand these errors and how to resolve them.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

        val runtimeClasspath by configurations
        val externalComponents by lazy {
            runtimeClasspath.incoming.resolutionResult.rootComponent.map { rootComponent ->
                val rootVariant = rootComponent.variants.find { it.displayName == runtimeClasspath.name }
                rootVariant?.let { computeExternalDependenciesNotAccessibleFromProjectDependencies(rootComponent, it) } ?: emptySet()
            }.get()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 08:59:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top