Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,630 for txt (0.03 sec)

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

    -- x_gc.go.txt --
    package x
    
    //go:cgo_ldflag "-fplugin=foo.so"
    
    import "C"
    -- cgo_yy.go.txt --
    package x
    
    //go:cgo_ldflag "-fplugin=foo.so"
    
    import "C"
    -- x.go.txt --
    package x
    -- y_fplugin.go.txt --
    package x
    // #cgo CFLAGS: -fplugin=foo.so
    import "C"
    -- y_lbar_fplugin.go.txt --
    package x
    // #cgo CFLAGS: -Ibar -fplugin=foo.so
    import "C"
    -- y_pkgconfig_dash_foo.txt --
    package x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_import_vendor.txt

    cp correct_modules.txt vendor/modules.txt
    go build ./vendor/foo.com/internal/bar/a
    
    # For go versions < 1.23, vendored packages that are missing in modules.txt should not result in an error.
    cp 122go.mod go.mod
    
    cp incorrect_modules.txt vendor/modules.txt
    
    # go version < 1.23 and incorrect_modules is missing foo.com/internal/bar/b so the build should not fail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_cache_inputs.txt

    exec ./mkold$GOEXE 50s testcache/script.sh
    go test testcache -run=Exec
    ! stdout '\(cached\)'
    go test testcache -run=Exec
    stdout '\(cached\)'
    
    -- testcache/file.txt --
    xx
    -- 4x.txt --
    xxxx
    -- 6x.txt --
    xxxxxx
    -- 2y.txt --
    yy
    -- $WORK/external.txt --
    This file is outside of GOPATH.
    -- testcache/script.sh --
    #!/bin/sh
    exit 0
    -- testcache/testcache_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 22:23:53 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cover_build_pkg_select.txt

    # The whole enchilada.
    go tool covdata textfmt -i=$WORK/covdata -o=$WORK/covdata/out.txt
    grep 'mode: set' $WORK/covdata/out.txt
    grep 'mod.example/main/main.go:' $WORK/covdata/out.txt
    grep 'mod.example/sub/sub.go:' $WORK/covdata/out.txt
    grep 'rsc.io' $WORK/covdata/out.txt
    grep 'bufio/bufio.go:' $WORK/covdata/out.txt
    
    # Use the covdata tool to select a specific set of module paths
    mkdir $WORK/covdata2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_json_fields.txt

    # Test -json=false produces non-json output.
    go list -json=false
    cmp stdout want-non-json.txt
    
    # Test -json=<field> keeps only that field.
    go list -json=Name
    cmp stdout want-json-name.txt
    
    # Test -json=<field> with multiple fields.
    go list -json=ImportPath,Name,GoFiles,Imports
    cmp stdout want-json-multiple.txt
    
    # Test -json=<field> with Deps outputs the Deps field.
    go list -json=Deps
    stdout '"Deps": \['
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 15:24:16 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_acl_windows.txt

    cp stdout $WORK\exe-acl.txt
    exec powershell -Command 'Get-Acl main.go | Select -expand AccessToString'
    cp stdout $WORK\src-acl.txt
    cd $TMP
    exec powershell -Command 'Get-Acl main.exe | Select -expand AccessToString'
    cp stdout $WORK\guest-acl.txt
    
    cd $WORK
    
    # The executable written to the source directory should have the same ACL as the source file.
    cmp $WORK\exe-acl.txt $WORK\src-acl.txt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_build_simple.txt

    	}
    }
    
    -- data/README.txt --
    
    Just a location where we can write coverage profiles.
    
    -- data/normal/f.txt --
    
    X
    
    -- data/goodexit/f.txt --
    
    X
    
    -- data/badexit/f.txt --
    
    X
    
    -- data/panic/f.txt --
    
    X
    
    -- data2/README.txt --
    
    Just a location where we can write coverage profiles.
    
    -- data2/normal/f.txt --
    
    X
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/list_test_cycle.txt

    go list ./p
    stdout 'example/p'
    
    ! go list -json=ImportPath -test ./p
    cmp stderr wanterr.txt
    
    ! go list -json=ImportPath,Deps -test ./p
    cmp stderr wanterr.txt
    
    ! go list -json=ImportPath,Deps -deps -test ./p
    cmp stderr wanterr.txt
    
    ! go list -json=ImportPath -deps -test ./p
    cmp stderr wanterr.txt
    
    -- wanterr.txt --
    go: can't load test package: package example/p
    	imports example/q
    	imports example/r
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 19:18:23 UTC 2023
    - 644 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cover_error.txt

    # Get errors from a go test into stderr.txt
    ! go test coverbad
    stderr 'p\.go:4:2' # look for error at coverbad/p.go:4
    [cgo] stderr 'p1\.go:6:2' # look for error at coverbad/p.go:6
    ! stderr $WORK # make sure temporary directory isn't in error
    
    cp stderr $WORK/stderr.txt
    
    # Get errors from coverage into stderr2.txt
    ! go test -cover coverbad
    cp stderr $WORK/stderr2.txt
    
    wait # for go run above
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 01 14:12:36 UTC 2022
    - 712 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_vendor_auto.txt

    # between the go.mod file and vendor/modules.txt.
    # A 'go 1.13' vendor/modules.txt file is not usually sufficient
    # to pass those checks.
    go mod edit -go=1.14
    
    ! go list -f {{.Dir}} -tags tools all
    stderr '^go: inconsistent vendoring in '$WORK[/\\]auto':$'
    stderr '^\texample.com/printversion@v1.0.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top