Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,282 for STDOUT (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/go/testdata/script/dist_list_missing.txt

    stderr 'go: no such tool "dist"'
    
    go tool dist list
    stdout linux/amd64
    cp stdout tool.txt
    
    go tool dist list -v
    stdout linux/amd64
    cp stdout tool-v.txt
    
    go tool dist list -broken
    stdout $GOOS/$GOARCH
    cp stdout tool-broken.txt
    
    go tool dist list -json
    stdout '"GOOS": "linux",\n\s*"GOARCH": "amd64",\n'
    cp stdout tool-json.txt
    
    go tool dist list -json -broken
    stdout '"GOOS": "'$GOOS'",\n\s*"GOARCH": "'$GOARCH'",\n'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:52:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_compiled_imports.txt

    cd x
    go list -f '{{.Imports}}'
    ! stdout runtime/cgo
    ! stdout unsafe
    ! stdout syscall
    stdout C
    stdout unicode
    stdout unicode/utf16
    
    # go list -compiled should report imports in compiled files as well,
    # adding "runtime/cgo", "unsafe", and "syscall" but not dropping "C".
    go list -compiled -f '{{.Imports}}'
    stdout runtime/cgo
    stdout unsafe
    stdout syscall
    stdout C
    stdout unicode
    stdout unicode/utf16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 19:57:03 UTC 2019
    - 681 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_minimize.txt

    ! stdout '^ok'
    ! stdout 'contains a non-zero byte'
    stdout 'invalid duration'
    stdout FAIL
    
    # Test that fuzzminimizetime cannot be negative times
    ! go test -fuzz=FuzzMinimizerRecoverable -run=FuzzMinimizerRecoverable -fuzztime=10000x -fuzzminimizetime=-1x .
    ! stdout '^ok'
    ! stdout 'contains a non-zero byte'
    stdout 'invalid count'
    stdout FAIL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 22 16:15:36 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/testdata/script/work_overlay.txt

    go list -overlay=overlay.json -m
    stdout example.com/a
    stdout example.com/b
    ! stdout example.com/c
    
    # control case for go.work on disk and in overlay:
    # go.work is on disk but not in overlay.
    cp go.work.non-overlay go.work
    go list -m
    stdout example.com/a
    stdout example.com/b
    stdout example.com/c
    
    # go.work on disk and in overlay.
    go list -overlay=overlay.json -m
    stdout example.com/a
    stdout example.com/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 800 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/env_changed.txt

    # windows output like GOTOOLCHAIN=local
    stdout 'GOTOOLCHAIN=''?local''?'
    stdout 'GOSUMDB=''?nodefault''?'
    stdout 'GOPROXY=''?nodefault''?'
    stdout 'GO111MODULE=''?auto''?'
    stdout 'CGO_CFLAGS=''?nodefault''?'
    stdout 'CGO_CPPFLAGS=''?nodefault''?'
    
    go env -changed -json
    stdout '"GOTOOLCHAIN": "local"'
    stdout '"GOSUMDB": "nodefault"'
    stdout '"GOPROXY": "nodefault"'
    stdout '"GO111MODULE": "auto"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:49:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiConnection.groovy

        T configurableLauncher
        OutputStream stdout
        OutputStream stderr
    
        def initTrait(T configurableLauncher, OutputStream stdout, OutputStream stderr) {
            this.configurableLauncher = configurableLauncher
            configurableLauncher.standardOutput = stdout
            configurableLauncher.standardError = stderr
            this.stdout = stdout
            this.stderr = stderr
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top