Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for ConcurrentSpecification (0.57 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

    import org.gradle.launcher.daemon.protocol.Message
    import org.gradle.internal.daemon.clientinput.StdinHandler
    import org.gradle.util.ConcurrentSpecification
    
    import java.util.concurrent.CountDownLatch
    import java.util.concurrent.TimeUnit
    
    class DefaultDaemonConnectionTest extends ConcurrentSpecification {
        final TestConnection connection = new TestConnection()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonClientTest.groovy

    import org.gradle.launcher.daemon.server.api.DaemonStoppedException
    import org.gradle.launcher.exec.BuildActionParameters
    import org.gradle.launcher.exec.BuildActionResult
    import org.gradle.util.ConcurrentSpecification
    
    class DaemonClientTest extends ConcurrentSpecification {
        final DaemonConnector connector = Mock()
        final DaemonClientConnection connection = Mock()
        final OutputEventListener outputEventListener = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientsManagerTest.groovy

    import org.gradle.process.internal.health.memory.MBeanOsMemoryInfo
    import org.gradle.process.internal.health.memory.MemoryManager
    import org.gradle.util.ConcurrentSpecification
    import spock.lang.Subject
    
    class WorkerDaemonClientsManagerTest extends ConcurrentSpecification {
        def options = Stub(DaemonForkOptions)
        def starter = Stub(WorkerDaemonStarter)
        def listenerManager = Stub(ListenerManager)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/util/ConcurrentSpecificationTest.groovy

    import java.util.concurrent.CountDownLatch
    import java.util.concurrent.TimeUnit
    import org.spockframework.mock.TooManyInvocationsError
    import spock.lang.FailsWith
    
    class ConcurrentSpecificationTest extends ConcurrentSpecification {
        def setup() {
            shortTimeout = 2000
        }
    
        def "can check that an action calls a mock method asynchronously"() {
            Runnable action = Mock()
            def executed = startsAsyncAction()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 08:18:50 UTC 2021
    - 10.5K bytes
    - Viewed (0)
Back to top