Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,282 for STDOUT (0.14 sec)

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

    cd a
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs=git$'
    stdout '^\tbuild\tvcs.modified=true$'
    ! stdout vcs.revision
    ! stdout vcs.time
    rm $GOBIN/a$GOEXE
    
    # Revision and commit time are tagged for repositories with commits.
    exec git add -A
    exec git commit -m 'initial commit'
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs.revision='
    stdout '^\tbuild\tvcs.time='
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_graph_version.txt

    # the main module).
    
    cp go.mod go.mod.orig
    
    go mod graph
    cp stdout graph-1.17.txt
    stdout '^example\.com/m example\.com/retract/incompatible@v1\.0\.0$'
    stdout '^example\.net/lazy@v0\.1\.0 example\.com/retract/incompatible@v1\.0\.0$'
    ! stdout 'example\.com/retract/incompatible@v2\.0\.0\+incompatible'
    
    go mod graph -go=1.17
    cmp stdout graph-1.17.txt
    
    cmp go.mod go.mod.orig
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 21:10:42 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/list_constraints.txt

    ! stdout .
    go list -f '{{range .Imports}}{{.}} {{end}}'
    stdout '^suffix tag $'
    
    # Changing OS should exclude linux sources.
    env GOOS=darwin
    go list -f '{{range .GoFiles}}{{.}} {{end}}'
    stdout '^empty.go $'
    go list -f '{{range .Imports}}{{.}} {{end}}'
    stdout '^$'
    
    # Enabling a tag should include files that require it.
    go list -tags=extra -f '{{range .GoFiles}}{{.}} {{end}}'
    stdout '^empty.go extra.go $'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 04 23:54:27 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_pseudo.txt

    go get ...test@d7ae1e4
    go list -m all
    stdout '^github.com/rsc/legacytest v2\.0\.0\+incompatible$'
    
    # v1.2.1-0.pseudo
    go get ...test@d2d4c3e
    go list -m all
    stdout '^github.com/rsc/legacytest v1\.2\.1-0\.\d{14}-d2d4c3ea6623$'
    
    # v1.2.0
    go get ...test@9f6f860
    go list -m all
    stdout '^github.com/rsc/legacytest v1\.2\.0$'
    
    # v1.1.0-pre.0.pseudo
    go get ...test@fb3c628
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_profile_flags.txt

    ! go test -fuzz=FuzzTrivial -coverprofile=prof
    ! stdout .
    stderr '^cannot use -coverprofile flag with -fuzz flag$'
    
    ! go test -fuzz=FuzzTrivial -blockprofile=prof
    ! stdout .
    stderr '^cannot use -blockprofile flag with -fuzz flag$'
    
    ! go test -fuzz=FuzzTrivial -cpuprofile=prof
    ! stdout .
    stderr '^cannot use -cpuprofile flag with -fuzz flag$'
    
    ! go test -fuzz=FuzzTrivial -memprofile=prof
    ! stdout .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 02 18:01:20 UTC 2021
    - 855 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/help.txt

    # go help shows overview.
    go help
    stdout 'Go is a tool'
    stdout 'bug.*start a bug report'
    
    # go help bug shows usage for bug
    go help bug
    stdout 'usage: go bug'
    stdout 'bug report'
    
    # go bug help is an error (bug takes no arguments)
    ! go bug help
    stderr 'bug takes no arguments'
    
    # go help mod shows mod subcommands
    go help mod
    stdout 'go mod <command>'
    stdout tidy
    
    # go help mod tidy explains tidy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/console/NativePlatformConsoleDetector.java

                return null;
            }
    
            boolean stdout = terminals.isTerminal(Stdout);
            boolean stderr = terminals.isTerminal(Stderr);
    
            try {
                if (stdout) {
                    return new NativePlatformConsoleMetaData(stdout, stderr, terminals.getTerminal(Stdout));
                } else if (stderr) {
                    return new NativePlatformConsoleMetaData(stdout, stderr, terminals.getTerminal(Stderr));
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_list_deprecated.txt

    # 'go list pkg' does not show deprecation.
    go list example.com/deprecated/a
    stdout '^example.com/deprecated/a$'
    
    # 'go list -m' does not show deprecation.
    go list -m example.com/deprecated/a
    stdout '^example.com/deprecated/a v1.9.0$'
    
    # 'go list -m -versions' does not show deprecation.
    go list -m -versions example.com/deprecated/a
    stdout '^example.com/deprecated/a v1.0.0 v1.9.0$'
    
    # 'go list -m -u' shows deprecation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_chatty_parallel_fail.txt

    ! go test -parallel 3 chatty_parallel_test.go -v
    
    stdout -count=1 '^=== CONT  TestChattyParallel/sub-0'
    stdout -count=1 '^=== CONT  TestChattyParallel/sub-1'
    stdout -count=1 '^=== CONT  TestChattyParallel/sub-2'
    
    stdout -count=1 '^=== (CONT|NAME)  TestChattyParallel/sub-0\n    chatty_parallel_test.go:38: error from sub-0$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/vcstest/hg/hgrepo1.txt

    hg branches
    ? cmp stdout .hg-branches
    stdout 'v2\s+6:9a4f43d231ec'
    stdout 'v2.3.4\s+9:18518c07eb8e'
    stdout 'v3\s+7:a2cad8a2b1bb'
    stdout 'default\s+5:'
    
    # Likewise, bookmark v3 ends up on the nondeterministic commit.
    hg bookmarks
    ? cmp stdout .hg-bookmarks
    stdout 'master\s+0:41964ddce118'
    stdout 'v2\s+3:8f49ee7a6ddc'
    stdout 'v2.3.4\s+1:88fde824ec8b'
    stdout 'v3\s+5:.*'
    
    -- .hg-branches --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top