Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for participant (0.26 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/ide/tooling-api/toolingApi-processing.puml

    @startuml
    box ":toolingApi side"
      participant ConsumerConnection
      participant ModelProducer
    end box
    box ":launcher side"
      participant DefaultConnection
      participant ProviderConnection
    end box
    
    ConsumerConnection -> ModelProducer: request
    activate ModelProducer
    ModelProducer -> DefaultConnection: request
    note right
    DefaultConnection has entry points to accept calls from different ToolingAPI versions
    end note
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. 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)
  4. platforms/ide/tooling-api/toolingApi-operation.puml

    OperationParamsBuilder --> LongRunningOperation: operation params
    LongRunningOperation -> AsyncConsumerActionExecutor: run()
    box "ConsumerActionExecutor chain"
    	participant ProgressLogging
    	participant LoggingInitializer
    	participant LazyConsumer
    end box
    AsyncConsumerActionExecutor -> ProgressLogging: run()
    ProgressLogging -> LoggingInitializer: run()
    LoggingInitializer -> LazyConsumer: run()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/remote/internal/hub/MessageHubIntegrationTest.groovy

            Dispatch<String> client1Handler = Mock()
            Dispatch<String> client2Handler = Mock()
            Dispatch<String> serverHandler = Mock()
            def server = new Participant()
            def client1 = new Participant()
            def client2 = new Participant()
            client1.connectTo(server)
            client2.connectTo(server)
            server.addHandler("channel", serverHandler)
            client1.addHandler("channel", client1Handler)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top