Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,278 for noOutput (0.12 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

        public GroupedOutputFixture(LogContent output) {
            this.originalOutput = output;
            this.strippedOutput = parse(output);
        }
    
        private String parse(LogContent output) {
            tasks = new HashMap<>();
            transforms = new HashMap<>();
    
            String strippedOutput = output.ansiCharsToPlainText().withNormalizedEol();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. hack/verify-golangci-lint.sh

         ;;
      esac
    done
    
    # Below the output of golangci-lint is going to be piped into sed to add
    # a prefix to each output line. This helps make the output more visible
    # in the Prow log viewer ("error" is a key word there) and ensures that
    # only those lines get included as failure message in a JUnit file
    # by "make verify".
    #
    # The downside is that the automatic detection whether to colorize output
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/OutputEventRendererTest.groovy

            renderer.addOutputEventListener(listener)
            renderer.onOutput(start)
            renderer.onOutput(progress)
            renderer.onOutput(complete)
    
            then:
            1 * listener.onOutput({it instanceof LogLevelChangeEvent && it.newLogLevel == logLevel})
            1 * listener.onOutput(start)
            1 * listener.onOutput(progress)
            1 * listener.onOutput(complete)
            0 * listener._
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildStatusRenderer.java

            this.listener = listener;
            this.buildStatusLabel = buildStatusLabel;
            this.console = console;
            this.consoleMetaData = consoleMetaData;
        }
    
        @Override
        public void onOutput(OutputEvent event) {
            if (event instanceof ProgressStartEvent) {
                ProgressStartEvent startEvent = (ProgressStartEvent) event;
                if (startEvent.isBuildOperationStart()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestOutputListener.java

         */
        void onOutput(TestDescriptor testDescriptor, TestOutputEvent outputEvent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/ThrottlingOutputEventListenerTest.groovy

            when:
            renderer.onOutput(event1)
            renderer.onOutput(event2)
            renderer.onOutput(event3)
    
            then:
            0 * _
    
            when:
            renderer.onOutput(end)
    
            then:
            1 * listener.onOutput(event1)
            1 * listener.onOutput(event2)
            1 * listener.onOutput(event3)
            1 * listener.onOutput(end)
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractBasicGroupedTaskLoggingFunctionalTest.groovy

                assert result.groupedOutput.task(':1:log').output == "Error from 1\nOutput from 1\nDone with 1\nDone with 1"
                assert result.groupedOutput.task(':2:log').output == "Error from 2\nOutput from 2\nDone with 2\nDone with 2"
                assert result.groupedOutput.task(':3:log').output == "Error from 3\nOutput from 3\nDone with 3\nDone with 3"
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestOutputListenerIntegrationTest.groovy

            then:
            failure.output.contains("Test ${maybeParentheses('showsOutputWhenPassing')}(SomeTest) StdOut out passing")
            failure.output.contains("Test ${maybeParentheses('showsOutputWhenFailing')}(SomeTest) StdOut out failing")
            failure.output.contains("Test ${maybeParentheses('showsOutputWhenPassing')}(SomeTest) StdErr err passing")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. hack/verify-conformance-yaml.sh

    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    cd "${KUBE_ROOT}"
    
    # generate json spec -> yaml
    test/conformance/gen-conformance-yaml.sh
    
    # diff generated and checked-in
    if diff -u test/conformance/testdata/conformance.yaml _output/conformance.yaml; then
      echo PASS
      exit 0
    fi
    echo 'See instructions in test/conformance/README.md'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 21:15:01 UTC 2024
    - 992 bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/source/PrintStreamLoggingSystem.java

            }
    
            @Override
            public void onOutput(CharSequence output) {
                OperationIdentifier buildOperationId = CurrentBuildOperationRef.instance().getId();
                StyledTextOutputEvent event = new StyledTextOutputEvent(clock.getCurrentTime(), category, null, buildOperationId, output.toString());
                listener.onOutput(event);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top