Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,369 for RequestId (0.19 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/ModuleForcingResolveRuleSpec.groovy

            then:
            _ * details.requested >> DefaultModuleComponentSelector.newSelector(requested)
            _ * details.getOldRequested() >> requested
            1 * details.useTarget(DefaultModuleComponentSelector.newSelector(mid(requested.group, requested.name), forcedVersion), ComponentSelectionReasons.FORCED)
            0 * details._
    
            where:
            requested                                            | forcedVersion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

            for (Attribute<?> requested : requestedAttributes.keySet()) {
                Object requestedValue = requestedAttributes.getAttribute(requested);
                if (requested.getName().equals(actualAttribute.getName())) {
                    // found an attribute with the same name, but they do not necessarily have the same type
                    if (requested.equals(actualAttribute)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/AttributeSelectionUtilsTest.groovy

            extraAttributes = AttributeSelectionUtils.collectExtraAttributes(schema, candidates.toArray(new ImmutableAttributes[0]), requested.asImmutable()).toList()
        }
    
        @CompileStatic
        void requested(@DelegatesTo(value=AttributeContainerInternal, strategy = Closure.DELEGATE_FIRST) Closure<?> spec) {
            configureAttributes(requested, spec)
        }
    
        @CompileStatic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                            assert it.target == it.requested
                            it.useTarget group: it.requested.group, name: it.requested.module, version: '1.4'
                        }
                        all {
                            assert it.target.version == '1.4'
                            assert it.target.module == it.requested.module
                            assert it.target.group == it.requested.group
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/configuration/DefaultBuildFeature.java

        private final Provider<Boolean> requested;
        private final Provider<Boolean> active;
    
        public DefaultBuildFeature(Provider<Boolean> requested, Provider<Boolean> active) {
            this.requested = requested;
            this.active = active;
        }
    
        @Override
        public Provider<Boolean> getRequested() {
            return requested;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 29 08:08:36 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/fixed-dependency-insight.out

    > Task :dependencyInsight
    io.vertx:vertx-lang-groovy:3.9.4
      Variant runtime:
        | Attribute Name                 | Provided     | Requested    |
        |--------------------------------|--------------|--------------|
        | org.gradle.status              | release      |              |
        | org.gradle.category            | library      | library      |
        | org.gradle.libraryelements     | jar          | jar          |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/AttributeMatcher.java

         * Determines whether the given candidate is compatible with the requested criteria.
         */
        boolean isMatching(AttributeContainerInternal candidate, AttributeContainerInternal requested);
    
        <T> boolean isMatching(Attribute<T> attribute, T candidate, T requested);
    
        /**
         * Selects all matches from {@code candidates} that are compatible with the {@code requested} criteria attributes.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/DefaultProjectDependencyMetadataTest.groovy

        def "returns this when same target requested"() {
            expect:
            dep.withTarget(selector).is(dep)
        }
    
        def "delegates when different target requested"() {
            def requested = Stub(ComponentSelector)
            def delegateCopy = Stub(DependencyMetadata)
    
            given:
            target.withTarget(requested) >> delegateCopy
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/DefaultVcsMapping.java

    public class DefaultVcsMapping implements VcsMappingInternal {
        private final ComponentSelector requested;
        private final VersionControlSpecFactory specFactory;
        private VersionControlSpec versionControlSpec;
    
        @Inject
        public DefaultVcsMapping(ComponentSelector requested, VersionControlSpecFactory specFactory) {
            this.requested = requested;
            this.specFactory = specFactory;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

                                all {
                                    if (it.requested instanceof ModuleComponentSelector) {
                                        if (it.requested.module == 'leaf' && it.requested.version == '0.9') {
                                            it.useTarget("substitute 0.9 with 1.0", group: 'org.test', name: it.requested.module, version: '1.0')
                                        }
                                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
Back to top