Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for OutputProgress (0.16 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ProgressLoggingFixture.groovy

                if (gradle.parent == null) {
                    // Only register the service for the root build
                    def services = gradle.services
                    def outputProgress = gradle.sharedServices.registerIfAbsent("outputProgress", OutputProgressService) {
                        parameters.outputFile.set(outputFile)
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. 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;
                InternalTestOutputDescriptor descriptor = new DefaultTestOutputDescriptor(new OperationIdentifier(idFactory.nextId()), buildOperationId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonFailureLoggingIntegrationTest.groovy

                it.displayName == "Execute executeTask for :runInWorker"
            }
            taskActionOperation != null
            def outputProgress = taskActionOperation.progress(StyledTextOutputEvent)
            // Output may come in different orders, so we just check that all the expected messages are there.
            def text = outputProgress*.details.spans*.text.flatten().join()
            text.count("Unrecognized option: --not-a-real-argument") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompilerDaemonFailureIntegrationTest.groovy

            compileJavaOperation != null
            def outputProgress = compileJavaOperation.progress(StyledTextOutputEvent)
            // Output may come in different orders, so we just check that all the expected messages are there.
            def text = outputProgress*.details.spans*.text.flatten().join()
            text.count("Unrecognized option: --not-a-real-argument") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/operations/TestListenerBuildOperationAdapter.java

            @Override
            public long getStartTime() {
                return startTime;
            }
        }
    
        public static class OutputProgress implements ExecuteTestBuildOperationType.Output {
            private final TestOutputEvent event;
    
            private OutputProgress(TestOutputEvent event) {
                this.event = event;
            }
    
            @Override
            public TestOutputEvent getOutput() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. 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