Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,195 for doOutput (0.15 sec)

  1. src/cmd/internal/test2json/testdata/vet.json

    {"Action":"output","Test":"TestVetAsm","Output":"=== CONT  TestVetAsm\n"}
    {"Action":"run","Test":"TestVet/0"}
    {"Action":"output","Test":"TestVet/0","Output":"=== RUN   TestVet/0\n"}
    {"Action":"output","Test":"TestVet/0","Output":"=== PAUSE TestVet/0\n"}
    {"Action":"pause","Test":"TestVet/0"}
    {"Action":"run","Test":"TestVet/1"}
    {"Action":"output","Test":"TestVet/1","Output":"=== RUN   TestVet/1\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

            output.contains "Output: namedOutputDirectories.one [outputs-one]"
            output.contains "Output: namedOutputDirectories.two [outputs-two]"
            output.contains "Output: namedOutputFiles.one [output-one.txt]"
            output.contains "Output: namedOutputFiles.two [output-two.txt]"
            output.contains 'Output: nested.outputFiles$1 [output-nested-1.txt]'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/AbstractLineChoppingStyledTextOutputTest.groovy

        def "appends text to current line"() {
            def output = output()
    
            when:
            output.text("some text")
    
            then:
            result.toString() == "[some text]"
        }
    
        def "append empty lines [#type]"() {
            def output = output()
    
            when:
            output.text(eol)
            output.text(eol)
            output.text("$eol$eol")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. src/cmd/internal/test2json/testdata/issue23036.json

    {"Action":"run","Test":"TestActualCase"}
    {"Action":"output","Test":"TestActualCase","Output":"=== RUN   TestActualCase\n"}
    {"Action":"output","Test":"TestActualCase","Output":"--- FAIL: TestActualCase (0.00s)\n"}
    {"Action":"output","Test":"TestActualCase","Output":"        foo_test.go:14: Differed.\n"}
    {"Action":"output","Test":"TestActualCase","Output":"                Expected: MyTest:\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 847 bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyLifecycleIntegrationTest.groovy

            "outputs.dir"      | _
        }
    
        def "can query task output file property at any time"() {
            taskTypeWithOutputFileProperty()
            buildFile << """
                task producer(type: FileProducer) {
                    output = layout.buildDir.file("text.out")
                }
                def output = producer.output
                println("prop = " + output.get())
                task after {
                    dependsOn(producer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/configuration/Help.java

                output.println();
            }
            output.println();
            output.text("To see a list of command-line options, run ");
            metaData.describeCommand(output.withStyle(UserInput), "--help");
            output.println();
            output.println();
            output.append("For more detail on using Gradle, see ");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelOutputLocationCrossVersionSpec.groovy

        @TargetGradleVersion(">=3.0 <4.4")
        def "Non-Java project has default output location"() {
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
            EclipseOutputLocation output = project.getOutputLocation()
    
            then:
            output.path == 'bin'
        }
    
        @TargetGradleVersion(">=3.0 <4.4")
        def "Java project has default output location"() {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/cmd/internal/test2json/testdata/benchshort.json

    {"Action":"start"}
    {"Action":"output","Output":"# This file ends in an early EOF to trigger the Benchmark prefix test,\n"}
    {"Action":"output","Output":"# which only happens when a benchmark prefix is seen ahead of the \\n.\n"}
    {"Action":"output","Output":"# Normally that's due to the benchmark running and the \\n coming later,\n"}
    {"Action":"output","Output":"# but to avoid questions of timing, we just use a file with no \\n at all.\n"}
    {"Action":"output","Output":"BenchmarkFoo   \t"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 537 bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStoreSpec.groovy

            writer.onOutput(1, output(StdOut, "[out-1]"))
            writer.onOutput(1, 1, output(StdOut, "[out-2]"))
            writer.onOutput(2, 1, output(StdErr, "[out-3]"))
            writer.onOutput(1, 1, output(StdErr, "[out-4]"))
            writer.onOutput(1, 1, output(StdOut, "[out-5]"))
            writer.onOutput(1, 2, output(StdOut, "[out-6]"))
            writer.close()
            def reader = output.reader()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. src/cmd/internal/test2json/testdata/issue29755.test

        foo_test.go:22: output from root test
        foo_test.go:27: output from root test
        --- PASS: TestOutputWithSubtest/sub_test2 (0.00s)
            foo_test.go:21: output from sub test2
            foo_test.go:23: more output from sub test2
            foo_test.go:28: more output from sub test2
            --- PASS: TestOutputWithSubtest/sub_test2/sub2 (0.00s)
                foo_test.go:26: output from sub2 test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 1.1K bytes
    - Viewed (0)
Back to top