Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getNormalizedOutput (0.15 sec)

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

        }
    
        @Override
        public String getOutput() {
            return delegate.getOutput();
        }
    
        @Override
        public String getNormalizedOutput() {
            return delegate.getNormalizedOutput();
        }
    
        @Override
        public String getFormattedOutput() {
            return delegate.getFormattedOutput();
        }
    
        @Override
        public String getPlainTextOutput() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ParallelForkingGradleHandle.java

            public ParallelExecutionResult(String output, String error) {
                super(output, error, true);
            }
    
            @Override
            public String getNormalizedOutput() {
                String output = super.getNormalizedOutput();
                String parallelWarningPrefix = String.format(IncubationLogger.INCUBATION_MESSAGE, ".*");
                return output.replaceFirst(format("(?m)%s.*$\n", parallelWarningPrefix), "");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionResult.java

         * </ul>
         *
         * <p>You should avoid using this method as it couples the tests to a particular layout for the console. Instead use the more descriptive assertion methods.</p>
         */
        String getNormalizedOutput();
    
        /**
         * Stdout of the Gradle execution, with ANSI characters interpreted and text attributes rendered as plain text.
         */
        String getFormattedOutput();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top