Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ClientBuildEventGenerator (0.35 sec)

  1. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ClientBuildEventGenerator.java

     */
    public class ClientBuildEventGenerator implements BuildOperationListener {
        private final BuildOperationListener fallback;
        private final List<Mapper> mappers;
        private final List<BuildOperationTracker> trackers;
        private final Map<OperationIdentifier, Operation> running = new ConcurrentHashMap<>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/ClientBuildEventGeneratorTest.groovy

            mapper1.detailsType >> Long.class
            mapper2.isEnabled(subscriptions) >> true
            mapper2.trackers >> []
            mapper2.detailsType >> String.class
    
            def generator = new ClientBuildEventGenerator(consumer, subscriptions, [mapper1, mapper2], fallback)
    
            when:
            generator.started(operation, startEvent)
    
            then:
            1 * consumer.findStartedParentId(operation) >> parentId
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ToolingApiBuildEventListenerFactory.java

            }
    
            listeners.add(createClientBuildEventGenerator(subscriptions, consumer, progressEventConsumer));
            return listeners.build();
        }
    
        private ClientBuildEventGenerator createClientBuildEventGenerator(BuildEventSubscriptions subscriptions, BuildEventConsumer consumer, ProgressEventConsumer progressEventConsumer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.tooling.internal.provider.runner.ClientBuildEventGenerator$Operation> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (ClientBuildEventGenerator.java:0)
    Class <org.gradle.tooling.internal.provider.runner.ClientBuildEventGenerator> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (ClientBuildEventGenerator.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