Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TestConnection (0.56 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/MessageHubTest.groovy

            BoundedDispatch<String> handler = Mock()
            def connection1 = new TestConnection()
            def connection2 = new TestConnection()
    
            given:
            hub.addHandler("channel", handler)
            hub.addConnection(connection1)
            hub.addConnection(connection2)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/DefaultToolingImplementationLoaderTest.groovy

                getToolingApiResourcesDir(connectionImplementation),
                ClasspathUtil.getClasspathForClass(TestConnection.class),
                ClasspathUtil.getClasspathForClass(ActorFactory.class),
                ClasspathUtil.getClasspathForClass(Logger.class),
                ClasspathUtil.getClasspathForClass(GroovyObject.class),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

    import org.gradle.util.ConcurrentSpecification
    
    import java.util.concurrent.CountDownLatch
    import java.util.concurrent.TimeUnit
    
    class DefaultDaemonConnectionTest extends ConcurrentSpecification {
        final TestConnection connection = new TestConnection()
        final DefaultDaemonConnection daemonConnection = new DefaultDaemonConnection(new SynchronizedDispatchConnection<Message>(connection), executorFactory)
    
        def cleanup() {
            connection.disconnect()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top