Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,085 for STDOUT (3.86 sec)

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

    ! stderr 'git( .*)* fetch'
    stdout '"Reuse": true'
    stdout '"Version": "v0.0.0-20170922010558-fc3a09f3dc5c"'
    stdout '"VCS": "git"'
    stdout '"URL": ".*/git/hello"'
    ! stdout '"TagPrefix"'
    stdout '"TagSum": "t1:47DEQpj8HBSa[+]/TImW[+]5JCeuQeRkm5NMpJWZG3hSuFU="'
    stdout '"Ref": "HEAD"'
    stdout '"Hash": "fc3a09f3dc5cfe0d7a743ea18f1f5226e68b3777"'
    ! stdout '"Dir"'
    ! stdout '"Info"'
    ! stdout '"GoMod"'
    ! stdout '"Zip"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/go/testdata/script/list_gofile_in_goroot.txt

    go list ...
    ! stdout goroot/src
    
    go list std
    ! stdout goroot/src
    
    go list .
    [!GOOS:windows] stdout ^_$WORK/goroot/src$
    [GOOS:windows] stdout goroot/src$
    
    # switch to GOPATH/src
    cd $GOPATH/src
    
    # GO111MODULE=off,GOPATH
    env GO111MODULE=off
    go list ./...
    [!GOOS:windows] stdout ^_$WORK/gopath/src$
    [GOOS:windows] stdout gopath/src$
    
    go list all
    ! stdout gopath/src
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top