Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 5,275 for componentX (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyConfigurationHelper.java

     * limitations under the License.
     */
    
    package org.gradle.internal.component.external.model.ivy;
    
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.ImmutableSet;
    import org.gradle.api.artifacts.component.ModuleComponentIdentifier;
    import org.gradle.internal.component.external.descriptor.Artifact;
    import org.gradle.internal.component.external.model.DefaultModuleComponentArtifactMetadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/graph/CachingDirectedGraphWalker.java

                    }
    
                    if (details.minSeen != details.component) {
                        // Part of a strongly connected component (ie cycle) - move values to root of the component
                        // The root is the first node of the component we encountered
                        NodeDetails<N, T> rootDetails = components.get(details.minSeen);
                        rootDetails.values.addAll(details.values);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilder.java

            // The nodes in the graph represent variants (mostly) and multiple variants of a component may be included in the graph, so a given component may be visited multiple times
            if (!components.containsKey(id)) {
                components.put(id, new DefaultResolvedComponentResult(moduleVersion, selectionReason, componentId, ImmutableMap.copyOf(selectedVariants), allVariants, repoName));
            }
            selectedVariants.clear();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesIntegrationTest.groovy

            other 'org.test:projectA:1.0'
    
            // Component metadata rule that applies only to the 'sub' project
            components {
                withModule('org.test:projectA', AddDependencyRule)
            }
        }
        task res {
            def conf = configurations.conf
            def other = configurations.other
            doLast {
                // If we resolve twice the modified component metadata for 'projectA' must not be cached in-memory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/result/DefaultArtifactResolutionResultTest.groovy

        def "component results match the ones passed into the constructor"() {
            ArtifactResolutionResult artifactResolutionResult = new DefaultArtifactResolutionResult([componentArtifactsResult1, unresolvedComponentResult1] as LinkedHashSet)
    
            expect:
            artifactResolutionResult.components.size() == 2
            artifactResolutionResult.components.contains(componentArtifactsResult1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/component_capabilities.adoc

    [[sec:declaring-additional-capabilities-for-a-local-component]]
    == Declaring additional capabilities for a local component
    
    All components have an _implicit capability_ corresponding to the same GAV coordinates as the component.
    However, it is also possible to declare additional _explicit capabilities_ for a component.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ComponentVariantIdentifier.java

    import org.gradle.api.artifacts.component.ComponentIdentifier;
    import org.gradle.api.attributes.AttributeContainer;
    import org.gradle.internal.component.external.model.ImmutableCapabilities;
    
    /**
     * Identifier of a variant of a component.
     */
    public class ComponentVariantIdentifier {
    
        private final ComponentIdentifier componentId;
        private final AttributeContainer attributes;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/internal/TextDependentComponentsReportRenderer.java

        }
    
        public void renderComponents(Set<ComponentSpec> components) {
            if (components.isEmpty()) {
                getTextOutput().withStyle(Info).println("No components.");
                return;
            }
            for (ComponentSpec component : components) {
                getBuilder().item(component, dependentComponentsRenderer);
            }
        }
    
        public void renderLegend() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 14 10:16:36 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/LocalComponentRegistry.java

    import org.gradle.api.artifacts.component.ProjectComponentIdentifier;
    import org.gradle.internal.component.local.model.LocalComponentGraphResolveState;
    
    import javax.annotation.concurrent.ThreadSafe;
    
    /**
     * A registry of all dependency resolution state for locally produced components.
     * These components may be produced within the same project, another project in the same multi-project build,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 17:59:41 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ComponentMetadataHandler.java

    /**
     * Allows the build to provide rules that modify the metadata of depended-on software components.
     *
     * Component metadata rules are applied in the components section of the dependencies block
     * {@link DependencyHandler} of a build script. The rules can be defined in two different ways:
     * <ol>
     *     <li>As an action directly when they are applied in the components section</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top