Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for TestListenerBuildOperationAdapter (0.32 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/operations/TestListenerBuildOperationAdapter.java

     * However, this implementation is not thread safe,
     * but is relying on serialisation guarantees provided by ListenerManager.
     */
    @ServiceScope(Scope.BuildSession.class)
    public class TestListenerBuildOperationAdapter implements TestListenerInternal {
    
        private final Map<TestDescriptor, InProgressExecuteTestBuildOperation> runningTests = new HashMap<TestDescriptor, InProgressExecuteTestBuildOperation>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/operations/TestExecutionBuildOperationBuildSessionScopeServices.java

            listenerManager.addListener(testListenerBuildOperationAdapter);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ClientForwardingTestOutputOperationListener.java

            Object details = progressEvent.getDetails();
            if (details instanceof TestListenerBuildOperationAdapter.OutputProgress) {
                TestListenerBuildOperationAdapter.OutputProgress progress = (TestListenerBuildOperationAdapter.OutputProgress) details;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/operations/TestListenerBuildOperationAdapterTest.groovy

        BuildOperationListener listener = Mock()
        Clock clock = Mock()
        BuildOperationIdFactory buildOperationIdFactory = Mock()
        TestListenerBuildOperationAdapter adapter = new TestListenerBuildOperationAdapter(listener, buildOperationIdFactory, clock)
        TestDescriptorInternal parentTestDescriptorInternal = Mock()
        TestDescriptorInternal testDescriptorInternal = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.tasks.testing.operations.TestListenerBuildOperationAdapter$OutputProgress> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (TestListenerBuildOperationAdapter.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top