Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,399 for txt (0.66 sec)

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

    cd ..
    
    -- empty/empty.txt --
    Not a .go file. Still counts as an empty project.
    -- empty/.hidden/empty.go --
    File in hidden directory. Still as an empty project.
    -- empty/_hidden/empty.go --
    File in hidden directory. Still as an empty project.
    -- pkginroot/hello.go --
    package vendorimport
    -- subdir/sub/empty.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 06 18:54:25 UTC 2021
    - 955 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_load_badzip.txt

    env GO111MODULE=on
    
    ! go get rsc.io/badzip
    stderr 'zip for rsc.io/badzip@v1.0.0 has unexpected file rsc.io/badzip@v1.0.0.txt'
    ! grep rsc.io/badzip go.mod
    
    go mod edit -require rsc.io/badzip@v1.0.0
    ! go build -mod=mod rsc.io/badzip
    stderr 'zip for rsc.io/badzip@v1.0.0 has unexpected file rsc.io/badzip@v1.0.0.txt'
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 403 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/list_test_imports.txt

    go list -test -f '{{.ImportPath}}:{{with .Imports}} {{join . ", "}}{{end}}' a b
    cmp stdout imports.txt
    
    -- a/a.go --
    package a; import _ "b"
    -- b/b.go --
    package b
    -- b/b_test.go --
    package b
    -- b/b_x_test.go --
    package b_test; import _ "a"
    
    -- imports.txt --
    a: b
    b:
    b.test: b [b.test], b_test [b.test], os, reflect, testing, testing/internal/testdeps
    b [b.test]:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 17 00:45:15 UTC 2020
    - 474 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/work_vendor_prune.txt

    # This test exercises that vendoring works properly using the workspace in the
    # the work_prune test case.
    
    go work vendor
    cmp vendor/modules.txt modules.txt.want
    cmp vendor/example.com/b/b.go b/b.go
    cmp vendor/example.com/q/q.go q1_1_0/q.go
    go list -m -f '{{.Version}}' example.com/q
    stdout '^v1.1.0$'
    
    go list -f '{{.Dir}}' example.com/q
    stdout $GOPATH[\\/]src[\\/]vendor[\\/]example.com[\\/]q
    go list -f '{{.Dir}}' example.com/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_gomodcache_vendor.txt

    # See issue #46400
    [short] skip 'builds and links a binary twice'
    go mod tidy
    go mod vendor
    
    go build -mod=vendor
    go version -m example$GOEXE
    cp stdout version-m.txt
    
    env GOMODCACHE=$WORK${/}modcache
    go build -mod=vendor
    go version -m example$GOEXE
    cmp stdout version-m.txt
    
    -- go.mod --
    module example
    go 1.22
    require rsc.io/sampler v1.3.0
    
    -- main.go --
    package main
    
    import (
        "fmt"
        "rsc.io/sampler"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 17:19:18 UTC 2024
    - 568 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/work_errors_pos.txt

    cp go.work.firsterrlisted.txt go.work
    ! go list
    stderr '^go.work:1: unknown godebug "baz"$'
    
    -- foo/go.mod --
    module example.com/foo
    -- go.work.repeated.txt --
    
    
    use foo
    use foo
    -- go.work.badgodebug.txt --
    
    
    godebug foo=1
    -- go.work.unparsable.txt --
    
    
    
    
    notadirective
    -- go.work.firstlineerr.txt --
    godebug bar=1
    -- go.work.firsterrlisted.txt --
    godebug baz=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 926 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/dist_list_missing.txt

    cp stdout tool-json-broken.txt
    
    [short] stop
    
    
    # Check against the real cmd/dist as the source of truth.
    
    env GOROOT=$TESTGO_GOROOT
    go build -o dist.exe cmd/dist
    
    exec ./dist.exe list
    cmp stdout tool.txt
    
    exec ./dist.exe list -v
    cmp stdout tool-v.txt
    
    exec ./dist.exe list -broken
    cmp stdout tool-broken.txt
    
    exec ./dist.exe list -json
    cmp stdout tool-json.txt
    
    exec ./dist.exe list -json -broken
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:52:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_tidy_compat.txt

    [exec:patch] exec patch -p1 -i diff.patch
    [exec:patch] go mod tidy -diff
    [exec:patch] cmp go.mod go.mod.tidyResult
    [exec:patch] cmp go.sum go.sum.tidyResult
    
    go list -m all
    cmp stdout m_all.txt
    
    go mod edit -go=1.16
    go list -m all
    cmp stdout m_all.txt
    
    
    # If we explicitly drop compatibility with 1.16, we retain fewer checksums,
    # which gives a cleaner go.sum file but causes 1.16 to fail in readonly mode.
    
    cp go.mod.orig go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/version.txt

    ! go version -v
    stderr 'with arguments'
    
    # Check that 'go version' succeed even when it does not contain Go build info.
    # It should print an error if the file has a known Go binary extension.
    #
    go version empty.txt
    ! stdout .
    ! stderr .
    go version empty.exe
    stderr 'could not read Go build info'
    go version empty.so
    stderr 'could not read Go build info'
    go version empty.dll
    stderr 'could not read Go build info'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 14:52:04 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/list_std_vendor.txt

    go list -deps net
    stdout '^vendor/golang.org/x/net'
    ! stdout '^golang.org/x/net'
    cp stdout $WORK/net-deps.txt
    
    
    # It should still report the same package dependencies when viewed from
    # within GOROOT/src.
    
    cd $GOROOT/src
    
    go list -deps net
    stdout '^vendor/golang.org/x/net'
    ! stdout '^golang.org/x/net'
    cmp stdout $WORK/net-deps.txt
    
    
    # However, 'go mod' and 'go get' subcommands should report the original module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 883 bytes
    - Viewed (0)
Back to top