Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for componentResult (0.15 sec)

  1. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporterSpec.groovy

                def result = new DefaultResolvedDependencyResult(newSelector(DefaultModuleIdentifier.newId("group", name), version), false, componentResult, null, from)
                from = componentResult
                result
            }
            return pathElements[-1]
        }
    
        private static ComponentSelectionReason forced() {
            ComponentSelectionReasons.of(FORCED)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentArtifactsResult.java

    import java.util.Set;
    
    /**
     * The result of successfully resolving a component with a set of artifacts.
     *
     * @since 2.0
     */
    public interface ComponentArtifactsResult extends ComponentResult {
        /**
         * <p>Returns the artifacts of the specified type that belong to this component. Includes resolved and unresolved artifacts (if any).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:42:35 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolvedComponentResult.java

    /**
     * Represents a component instance in the resolved dependency graph. Provides some basic identity and dependency information about the component.
     */
    @UsedByScanPlugin
    public interface ResolvedComponentResult extends ComponentResult {
    
        /**
         * <p>Returns the dependencies of this component. Includes resolved and unresolved dependencies (if any).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 05 19:24:33 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top