Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 975 for STDOUT (0.28 sec)

  1. src/cmd/go/testdata/script/mod_vendor_auto.txt

    go list -f {{.Dir}} -tags tools -e all
    stdout '^'$WORK'[/\\]auto$'
    stdout '^'$GOPATH'[/\\]pkg[/\\]mod[/\\]example.com[/\\]printversion@v1.0.0$'
    stdout '^'$WORK'[/\\]auto[/\\]replacement-version$'
    
    go list -m all
    stdout '^example.com/auto$'
    stdout 'example.com/printversion v1.0.0'
    stdout 'example.com/version v1.0.0'
    
    go list -m -f '{{.Dir}}' all
    stdout '^'$WORK'[/\\]auto$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m5/ToolingApiReceivingStandardStreamsCrossVersionSpec.groovy

            stdout.toString().contains('this is stdout')
            stdout.toString().contains('A warning using SLF4j')
            stdout.toString().contains('A warning using JCL')
            stdout.toString().contains('A warning using Log4j')
            stdout.toString().contains('A warning using JUL')
            if (targetVersion.baseVersion >= GradleVersion.version('4.7')) {
                // Changed handling of error log messages
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/ConsoleConfigureAction.java

            if (consoleMetaData.isStdOut() && consoleMetaData.isStdErr()) {
                // Redirect stderr to stdout when both stdout and stderr are attached to a console. Assume that they are attached to the same console
                // This avoids interleaving problems when stdout and stderr end up at the same location
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/AggregateTestResultsProviderTest.groovy

            1 * provider1.writeTestOutput(12, 11, TestOutputEvent.Destination.StdOut, writer)
            1 * provider1.writeNonTestOutput(12, TestOutputEvent.Destination.StdOut, writer)
    
            when:
            provider.hasOutput(2, TestOutputEvent.Destination.StdOut)
            provider.writeAllOutput(2, TestOutputEvent.Destination.StdOut, writer)
    
            then:
            1 * provider2.hasOutput(12, TestOutputEvent.Destination.StdOut)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStoreSpec.groovy

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

    cp stdout status
    git commit -a -m 'before v0.0.1'
    
    echo 'at v0.0.1'
    cp stdout status
    git commit -a -m 'at v0.0.1'
    git tag 'v0.0.1'
    
    echo 'before v0.0.2'
    cp stdout status
    git commit -a -m 'before v0.0.2'
    
    echo 'at v0.0.2'
    cp stdout status
    git commit -a -m 'at v0.0.2'
    git tag 'v0.0.2'
    
    echo 'before v0.0.3'
    cp stdout status
    git commit -a -m 'before v0.0.3'
    
    echo 'at v0.0.3'
    cp stdout status
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt

    stdout 'errorf was called here'
    go run check_testdata.go FuzzWithErrorf
    
    ! go test -run=FuzzWithFatalf -fuzz=FuzzWithFatalf -fuzztime=100x -fuzzminimizetime=1000x
    stdout 'testdata[/\\]fuzz[/\\]FuzzWithFatalf[/\\]'
    stdout 'fatalf was called here'
    go run check_testdata.go FuzzWithFatalf
    
    ! go test -run=FuzzWithBadExit -fuzz=FuzzWithBadExit -fuzztime=100x -fuzzminimizetime=1000x
    stdout 'testdata[/\\]fuzz[/\\]FuzzWithBadExit[/\\]'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/doc.txt

    # go help doc
    go help doc
    stdout 'go doc'
    stdout 'go doc <pkg>'
    stdout 'go doc <sym>\[\.<methodOrField>\]'
    stdout 'go doc \[<pkg>\.\]<sym>\[\.<methodOrField>\]'
    stdout 'go doc \[<pkg>\.\]\[<sym>\.\]<methodOrField>'
    stdout 'go doc <pkg> <sym>\[\.<methodOrField>\]'
    
    # go doc <pkg>
    go doc p/v2
    stdout .
    
    # go doc <pkg> <sym>
    go doc p/v2 Symbol
    stdout .
    
    # go doc <pkg> <sym> <method>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 18 17:57:19 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_enabled.txt

    stdout z[/\\]go.mod
    
    cd $GOPATH/src/x/y
    go env GOMOD
    stdout 'NUL|/dev/null'
    go list -m
    stdout '^command-line-arguments$'
    
    cd $GOPATH/foo
    go env GOMOD
    stdout foo[/\\]go.mod
    
    cd $GOPATH/foo/bar/baz
    go env GOMOD
    stdout foo[/\\]go.mod
    
    # GO111MODULE=off should trigger nowhere
    env GO111MODULE=off
    
    cd $GOPATH/src/x/y/z
    go env GOMOD
    ! stdout .+
    
    cd $GOPATH/foo
    go env GOMOD
    ! stdout .+
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 01:30:48 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_lazy_downgrade.txt

    go mod edit -go=1.17
    
    go list -m all
    stdout '^example.com/a v0.1.0 '
    stdout '^example.com/b v0.3.0 '
    stdout '^example.com/c v0.2.0 '
    
    go get example.com/c@v0.1.0 example.com/b@v0.1.0
    go list -m all
    stdout '^example.com/a v0.1.0 '
    stdout '^example.com/b v0.1.0 '
    stdout '^example.com/c v0.1.0 '
    
    go mod tidy
    go list -m all
    stdout '^example.com/a v0.1.0 '
    stdout '^example.com/b v0.1.0 '
    ! stdout '^example.com/c '
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
Back to top