Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,558 for RequestId (0.14 sec)

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

            spec.resolveStrategy = Closure.DELEGATE_FIRST
            spec()
        }
    
        private static DefaultResolvedDependencyResult dep(String group, String name, String requested, String selected = requested, ComponentSelectionReason selectionReason = ComponentSelectionReasons.requested()) {
    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. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ResolutionBackedVariantDependencyResolver.java

                ComponentSelector requested = edge.getRequested();
                ModuleVersionIdentifier coordinates = getVariantCoordinates(edge, projectDependencyResolver, moduleIdentifierFactory);
                if (requested instanceof ModuleComponentSelector) {
                    ModuleComponentSelector requestedModule = (ModuleComponentSelector) requested;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/inspectingDependencies-dependencyReason/tests/dependencyReasonReport.out

    org.ow2.asm:asm:7.1
      Variant compile:
        | Attribute Name                 | Provided | Requested    |
        |--------------------------------|----------|--------------|
        | org.gradle.status              | release  |              |
        | org.gradle.category            | library  | library      |
        | org.gradle.libraryelements     | jar      | classes      |
        | org.gradle.usage               | java-api | java-api     |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 846 bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyResolveDetails.java

         * The module, before it is resolved.
         * The requested module does not change even if there are multiple dependency resolve rules
         * that manipulate the dependency metadata.
         */
        ModuleVersionSelector getRequested();
    
        /**
         * Allows to override the version when the dependency {@link #getRequested()} is resolved.
         * Can be used to select a version that is different than requested.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/AttributeMatchingExplanationBuilder.java

        default <T extends HasAttributes> void noCandidates(AttributeContainerInternal requested) {
    
        }
    
        default <T extends HasAttributes> void singleMatch(T candidate, Collection<? extends T> candidates, AttributeContainerInternal requested) {
    
        }
    
        default <T extends HasAttributes> void candidateDoesNotMatchAttributes(T candidate, AttributeContainerInternal requested) {
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/nodes/DependencyReportHeader.java

            return allVariants;
        }
    
        @Override
        public AttributeContainer getAttributes() {
            ComponentSelector requested = dependency.getRequested();
            return requested instanceof ModuleComponentSelector
                ? requested.getAttributes()
                : ImmutableAttributes.EMPTY;
        }
    
        @Override
        public List<Section> getExtraDetails() {
            return extraDetails;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 10 22:44:30 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/plugins/customPlugin/kotlin/consumer/settings.gradle.kts

                url = uri(repoLocation)
            }
        }
    // end::use-plugin[]
    // tag::use-legacy-plugin[]
        resolutionStrategy {
            eachPlugin {
                if (requested.id.namespace == "org.example") {
                    useModule("org.example:custom-plugin:${requested.version}")
                }
            }
        }
    // end::use-legacy-plugin[]
    // tag::use-plugin[]
    }
    // end::use-plugin[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 642 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionReasons.java

    import java.util.Collection;
    import java.util.Iterator;
    import java.util.List;
    
    public class ComponentSelectionReasons {
        public static final ComponentSelectionDescriptorInternal REQUESTED = new DefaultComponentSelectionDescriptor(ComponentSelectionCause.REQUESTED);
        public static final ComponentSelectionDescriptorInternal ROOT = new DefaultComponentSelectionDescriptor(ComponentSelectionCause.ROOT);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/customPlugin/groovy/consumer/settings.gradle

                url = uri(repoLocation)
            }
        }
    // end::use-plugin[]
    // tag::use-legacy-plugin[]
        resolutionStrategy {
            eachPlugin {
                if (requested.id.namespace == 'org.example') {
                    useModule("org.example:custom-plugin:${requested.version}")
                }
            }
        }
    // end::use-legacy-plugin[]
    // tag::use-plugin[]
    }
    // end::use-plugin[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 592 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/bundling/JavaBundlingResolveIntegrationTest.groovy

                    }
                }
            }
    
            where:
            bundling << [Bundling.EMBEDDED, Bundling.SHADOWED]
        }
    
        def "selects the appropriate variant (producer=#bundling, requested=#requested, selected=#selected)"() {
            given:
            repository {
                'org:transitive:1.0'()
                'org:producer:1.0' {
                    variant('api') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top