Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 105 for participant (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. docs/en/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,operation: Can raise exceptions, including HTTPException
        client ->> dep: Start request
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionCause.java

        /**
         * This component was selected between several candidates during conflict resolution.
         */
        CONFLICT_RESOLUTION("conflict resolution"),
    
        /**
         * This component was selected as a participant of a composite.
         */
        COMPOSITE_BUILD("composite build substitution"),
    
        /**
         * This component was selected because another version was rejected by a rule
         */
        REJECTION("rejection"),
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 14:58:55 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

            parameter.systemPropertiesArgs = [b: 'b']
            parameter.initScripts = [new File('init script'), new File("/path/to/another init script")]
            parameter.includedBuilds = [new File('participant'), new File("/path/to/another/participant")]
    
            when:
            def newInstance = parameter.newInstance()
    
            then:
            !parameter.initScripts.is(newInstance.initScripts)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top