Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for participant (0.22 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. docs/de/docs/tutorial/dependencies/dependencies-with-yield.md

    ```mermaid
    sequenceDiagram
    
    participant client as Client
    participant handler as Exceptionhandler
    participant dep as Abhรคngigkeit mit yield
    participant operation as Pfadoperation
    participant tasks as Hintergrundtasks
    
        Note over client,operation: Kann Exceptions auslรถsen, inklusive HTTPException
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:10:29 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. docs/ru/docs/tutorial/dependencies/dependencies-with-yield.md

    ```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: Tue Apr 02 04:21:06 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. 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)
  7. docs/zh/docs/tutorial/dependencies/dependencies-with-yield.md

    ๆ‰ง่กŒ็š„้กบๅบๅคง่‡ดๅฆ‚ไธ‹ๅ›พๆ‰€็คบใ€‚ๆ—ถ้—ดไปŽไธŠๅˆฐไธ‹ๆตๅŠจใ€‚ๆฏๅˆ—้ƒฝๆ˜ฏ็›ธไบ’ไบคไบ’ๆˆ–ๆ‰ง่กŒไปฃ็ ็š„ๅ…ถไธญไธ€้ƒจๅˆ†ใ€‚
    
    ```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
    - 10.3K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

                            maven { url "${mavenRepo.uri}" }
                        }
                    }
                """
            }
            includedBuilds << buildB
        }
    
        def "reports failure to configure one participant build"() {
            given:
            def buildC = singleProjectBuild("buildC") {
                buildFile << """
                    throw new RuntimeException('exception thrown on configure')
                """
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictHandler.java

        /**
         * Resolves next conflict and trigger provided action after the resolution
         */
        void resolveNextConflict(Action<RESULT> resolutionAction);
    
        /**
         * Indicates if the identifier is a known participant in a conflict
         *
         * @param id the identifier to check
         * @return {@code true} if the identifier is part of a conflict, {@code false} otherwise
         */
        boolean hasKnownConflictFor(ModuleVersionIdentifier id);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 23:54:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. docs/em/docs/advanced/settings.md

    ```Python
    @lru_cache
    def say_hi(name: str, salutation: str = "Ms."):
        return f"Hello {salutation} {name}"
    ```
    
    ๐Ÿ‘† ๐Ÿ“‹ ๐Ÿ’ช ๐Ÿ› ๏ธ ๐Ÿ’– ๐Ÿ‘‰:
    
    ```mermaid
    sequenceDiagram
    
    participant code as Code
    participant function as say_hi()
    participant execute as Execute function
    
        rect rgba(0, 255, 0, .1)
            code ->> function: say_hi(name="Camila")
            function ->> execute: execute function code
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top