Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for serverConnection (1.47 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestWorker.java

            ObjectConnection serverConnection = workerProcessContext.getServerConnection();
            serverConnection.useParameterSerializers(TestEventSerializer.create());
            this.resultProcessor = serverConnection.addOutgoing(TestResultProcessor.class);
            serverConnection.addIncoming(RemoteTestClassProcessor.class, this);
            serverConnection.connect();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/SystemApplicationClassLoaderWorker.java

            private final ObjectConnection serverConnection;
            private final WorkerServices workerServices;
    
            public ContextImpl(long workerId, String displayName, ObjectConnection serverConnection, WorkerServices workerServices) {
                this.workerId = workerId;
                this.displayName = displayName;
                this.serverConnection = serverConnection;
                this.workerServices = workerServices;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/TestWorkerTest.groovy

        def worker = new TestWorker(factory)
        def serviceRegistry = new DefaultServiceRegistry().add(Clock, Time.clock())
    
        def setup() {
            workerContext.workerId >> "<worker-id>"
            workerContext.serverConnection >> connection
            workerContext.serviceRegistry >> serviceRegistry
        }
    
        def createsTestProcessorAndBlocksUntilEndOfProcessingReceived() {
            when:
            async {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

          if (socketPolicy === DisconnectAtStart) {
            dispatchBookkeepingRequest(0, socket)
            socket.close()
          } else {
            openClientSockets.add(socket)
            serveConnection(socket)
          }
        }
      }
    
      @Synchronized
      @Throws(IOException::class)
      fun shutdown() {
        if (shutdown) return
        shutdown = true
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 37.4K bytes
    - Viewed (0)
Back to top