Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RemoteExceptionListener (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/process/internal/PathLimitationIntegrationTest.groovy

        private final ListenerBroadcast<TestListenerInterface> broadcast = new ListenerBroadcast<TestListenerInterface>(TestListenerInterface.class)
        private final RemoteExceptionListener exceptionListener = new RemoteExceptionListener(broadcast.source)
    
        public void setup() {
            broadcast.add(listenerMock)
        }
    
        @Requires(UnitTestPreconditions.NotWindows)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/process/internal/AbstractWorkerProcessIntegrationSpec.groovy

        }
    
        public static class RemoteExceptionListener implements TestListenerInterface {
            Throwable ex
            final TestListenerInterface dispatch
    
            public RemoteExceptionListener(TestListenerInterface dispatch) {
                this.dispatch = dispatch
            }
    
            void send(String message, int count) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/process/internal/WorkerProcessIntegrationTest.groovy

    @Timeout(120)
    class WorkerProcessIntegrationTest extends AbstractWorkerProcessIntegrationSpec {
        private final TestListenerInterface listenerMock = Mock(TestListenerInterface.class)
        private final RemoteExceptionListener exceptionListener = new RemoteExceptionListener(listenerMock)
    
        ChildProcess worker(Action<? super WorkerProcessContext> action) {
            return new ChildProcess(action)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top