Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,558 for RequestId (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/NodeGroup.java

     * or both. There are two basic kind of "root nodes":</p>
     * <ul>
     *     <li>
     *         A "requested task", which is a task requested on the command-line. For example given `gradle a b:` then all the tasks that match `a` are treated as a requested task group (with ordinal 0)
     *         and all the tasks that match `b` are treated as another requested task group (with ordinal 1).
     *     </li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 19 19:58:07 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/settings.gradle.kts

    pluginManagement {
        repositories {
            google()
            gradlePluginPortal()
        }
        resolutionStrategy {
            eachPlugin {
                if (requested.id.namespace == "com.android") {
                    useModule("com.android.tools.build:gradle:${requested.version}")
                }
            }
        }
    }
    // tag::android[]
    include("lib", "app")
    // end::android[]
    
    rootProject.name = "android-build"
    
    gradle.allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 491 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilderTest.groovy

            def edge = Stub(DependencyGraphEdge)
            _ * edge.selector >> selector
            _ * edge.requested >> selector.requested
            _ * edge.reason >> requested()
            _ * edge.failure >> new ModuleVersionResolveException(selector.requested, failure)
            _ * edge.fromVariant >> fromVariant
            _ * edge.selectedVariant >> null
            return edge
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/developingPlugins/reactingToBuildFeatures/groovy/buildSrc/src/main/java/MyPlugin.java

            if (!isolatedProjectsActive) {
                myOptionalPluginLogicIncompatibleWithIsolatedProjects();
            }
        }
    
        private String describeFeatureUsage(Boolean requested) {
            return requested == null ? "no preference" : requested ? "opt-in" : "opt-out";
        }
    
        private void myOptionalPluginLogicIncompatibleWithIsolatedProjects() {
        }
    }
    // end::my-plugin[]
    
    class MyReport {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_issue37438.txt

    # Regression test for https://golang.org/issue/37438.
    #
    # If a path exists at the requested version, but does not exist at the
    # version of the module that is already required and does not exist at
    # the version that would be selected by 'go mod tidy', then
    # 'go get foo@requested' should resolve the requested version,
    # not error out on the (unrelated) latest one.
    
    go get example.net/a/p@v0.2.0
    
    -- go.mod --
    module example
    
    go 1.15
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 798 bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CancelExecutionStepTest.groovy

        def "executes normally when cancellation is not requested"() {
            when:
            def result = step.execute(work, context)
    
            then:
            result == delegateResult
    
            1 * delegate.execute(work, context) >> delegateResult
    
            then:
            0 *_
        }
    
        def "cancels execution when cancellation is requested"() {
            given:
            cancellationToken.cancel()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/ModuleVersionNotFoundExceptionTest.groovy

      - 0.9
      - 0.10
    Versions rejected by attribute matching:
      - 1.1:
          - Attribute 'color' matched. Requested 'red', was: 'red'
          - Attribute 'shape' didn't match. Requested 'square', was: 'circle'
      - 1.0:
          - Attribute 'color' didn't match. Requested 'red', was: 'green'
          - Attribute 'shape' didn't match. Requested 'square', was: 'circle'
    Searched in the following locations:
      - http://somewhere
      - file:/somewhere""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/internal/StrictDependencyResultSpec.java

            }
        }
    
        private boolean matchesRequested(DependencyResult candidate) {
            ComponentSelector requested = candidate.getRequested();
    
            if (requested instanceof ModuleComponentSelector) {
                ModuleComponentSelector requestedSelector = (ModuleComponentSelector) requested;
                return requestedSelector.getGroup().equals(moduleIdentifier.getGroup())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 27 14:58:38 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

            }
        }
    
        static class EdgeBuilder {
            final String requested
            final NodeBuilder from
            NodeBuilder selected
            boolean constraint
    
            EdgeBuilder(NodeBuilder from, String requested, NodeBuilder selected) {
                this.from = from
                this.requested = requested
                this.selected = selected
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionCandidateAssessor.java

                this.attribute = attribute;
                this.requested = requested;
                this.provided = provided;
            }
    
            public Attribute<T> getAttribute() {
                return attribute;
            }
    
            @Nullable
            public T getRequested() {
                return requested;
            }
    
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top