Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for participant (0.17 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainer.java

                if (c != null) {
                    //there is already registered conflict with at least one matching participant, hook up to this conflict
                    c.candidates = candidates;
                    c.participants.addAll(participants);
                    return c;
                }
            }
    
            //No conflict with matching participants found, create new
            Conflict c = new Conflict(participants, candidates);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/PotentialConflictFactory.java

            }
            return new HasConflict(conflict.participants);
        }
    
        static PotentialConflict noConflict() {
            return NO_CONFLICT;
        }
    
        private static class HasConflict implements PotentialConflict {
    
            private final Set<ModuleIdentifier> participants;
    
            private HasConflict(Set<ModuleIdentifier> participants) {
                this.participants = participants;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. docs/em/docs/tutorial/dependencies/dependencies-with-yield.md

    πŸ” πŸ› οΈ πŸŒ… βš–οΈ 🌘 πŸ’– πŸ‘‰ πŸ“Š. πŸ•° πŸ’§ βšͺ️➑️ πŸ” πŸ”. &amp; πŸ”  πŸ“ 1️⃣ πŸ• πŸ”— βš–οΈ πŸ› οΈ πŸ“Ÿ.
    
    ```mermaid
    sequenceDiagram
    
    participant client as Client
    participant handler as Exception handler
    participant dep as Dep with yield
    participant operation as Path Operation
    participant tasks as Background tasks
    
        Note over client,tasks: Can raise exception for dependency, handled after response is sent
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/remote/UnicastMessagingIntegrationTest.groovy

            then:
            1 * service.doStuff("1")
            1 * service.doStuff("2") >> { instant.received }
    
            cleanup:
            client?.stop()
            server?.stop()
        }
    
        abstract class Participant {
            RemoteService1 outgoingService1
            RemoteService2 outgoingService2
    
            abstract ObjectConnection getConnection()
    
            void addIncoming(RemoteService1 value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler.java

            resolutionAction.execute(result);
            if (selected != null) {
                maybeSetReason(conflict.participants, selected);
            }
            LOGGER.debug("Selected {} from conflicting modules {}.", selected, conflict.candidates);
        }
    
        private void maybeSetReason(Set<ModuleIdentifier> partifipants, ComponentResolutionState selected) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/BuildInvocationScopeId.java

    /**
     * The ID of a single build invocation.
     *
     * Here, the term "build" is used to represent the overall invocation.
     * For example, buildSrc shares the same build scope ID as the overall build.
     * All composite participants also share the same build scope ID.
     * That is, all β€œnested” build trees (in terms of GradleLauncher, GradleBuild etc.) share the same build invocation ID.
     *
     * This ID is, by definition, not persistent.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/InspectsConfigurationReport.groovy

        }
    
        void doesNotHaveSecondaryVariantsLegend() {
            outputDoesNotContain("(*) Secondary variants are variants created via the Configuration#getOutgoing(): ConfigurationPublications API which also participate in selection, in addition to the configuration itself.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. SUPPORT.md

    - For in-depth information about how to use Istio, visit [istio.io](https://istio.io)
    - To ask questions and get assistance from our community, visit [GitHub Discussions](https://github.com/istio/istio/discussions)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:00:41 UTC 2024
    - 411 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r410/GradleBuildModelCrossVersionSpec.groovy

            buildC.rootProject.name == "buildC"
            buildC.projects.size() == 1
            buildC.includedBuilds.empty
        }
    
        @TargetGradleVersion(">=4.10")
        def "root build model exposes all builds that participate in the composite when nested included builds are present"() {
            given:
            singleProjectBuildInRootFolder("root") {
                settingsFile << """
                    rootProject.name = 'root'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeProjectAccessorsCompositeBuildsIntegrationTest.groovy

        // not necessarily planned to be implemented, but capturing the existing behavior
        @ToBeImplemented
        def "included builds participate in type-safe accessors generation"() {
            settingsFile << """
                rootProject.name = 'test'
    
                includeBuild 'other'
            """
            file('other/settings.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 15:31:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top