Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,453 for TXT (0.03 sec)

  1. src/cmd/go/testdata/vcstest/git/gitrepo1.txt

    echo 'intermediate'
    cp stdout foo.txt
    git add foo.txt
    git commit -a -m 'intermediate'
    
    at 2018-04-17T16:00:32-04:00
    echo 'another'
    cp stdout another.txt
    git add another.txt
    git commit -a -m 'another'
    git tag v2.0.2
    
    at 2018-04-17T16:16:52-04:00
    git checkout master
    git branch v3
    git checkout v3
    mkdir v3/sub/dir
    echo 'v3/sub/dir/file'
    cp stdout v3/sub/dir/file.txt
    git add v3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_vendor_empty.txt

    go work vendor
    stderr 'go: no dependencies to vendor'
    ! exists vendor/modules.txt
    ! go list .
    stderr 'go: no modules were found in the current workspace'
    mkdir vendor
    mv bad_modules.txt vendor/modules.txt
    ! go list .
    stderr 'go: no modules were found in the current workspace'
    
    -- bad_modules.txt --
    # a/module
    a/package
    -- go.work --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 344 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/embed_brackets.txt

    # issue 53314
    [GOOS:windows] skip
    cd [pkg]
    go build
    
    -- [pkg]/go.mod --
    module m
    
    go 1.19
    -- [pkg]/x.go --
    package p
    
    import _ "embed"
    
    //go:embed t.txt
    var S string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 186 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/version_buildvcs_fossil.txt

    # An untracked file is shown as modified, even if it isn't part of the build.
    cp ../../outside/empty.txt .
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs=fossil\n'
    stdout '^\tbuild\tvcs.modified=true$'
    rm empty.txt
    rm $GOBIN/a$GOEXE
    
    # An edited file is shown as modified, even if it isn't part of the build.
    cp ../../outside/empty.txt ../README
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs=fossil\n'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_vendor_goversion.txt

    # https://golang.org/issue/36876: As of Go 1.17, vendor/modules.txt should
    # indicate the language version used by each dependency.
    
    [short] skip
    
    # Control case: without a vendor directory, need117 builds and bad114 doesn't.
    
    go build example.net/need117
    ! go build example.net/bad114
    stderr '^bad114[/\\]bad114.go:15:2: duplicate method .?Y.?( .*)?$'
    
    
    # With a vendor/modules.txt lacking language versions, the world is topsy-turvy,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 21:29:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_symlink_dotdotdot.txt

    cd sym
    go list ./...
    cmp stdout $WORK/gopath/src/want_list.txt
    -- tree/go.mod --
    module example.com/tree
    
    go 1.20
    -- tree/tree.go --
    package tree
    -- tree/branch/branch.go --
    package branch
    -- dir2/squirrel.go --
    package squirrel
    -- want_list.txt --
    example.com/tree
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 463 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_ambiguous_arg.txt

    go 1.16
    -- mv2/README.txt --
    This module is m/v2. It doesn't actually need to exist,
    but it explains how module m could plausibly exist
    and still contain package p at 'latest' even when module
    m/p also exists.
    
    -- mp01/go.mod --
    module m/p
    
    go 1.16
    -- mp01/README.txt --
    This module is m/p.
    Package m/p does not exist in this module.
    -- mp02/go.mod --
    module m/p
    
    go 1.16
    -- mp02/README.txt --
    This module is m/p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_gopkg_unstable.txt

    env GO111MODULE=on
    
    cp go.mod.empty go.mod
    go get gopkg.in/dummy.v2-unstable
    
    cp x.go.txt x.go
    cp go.mod.empty go.mod
    go list
    
    [!net:gopkg.in] skip
    [!git] skip
    
    skip  # TODO(#54503): redirect gopkg.in requests to a local server and re-enable.
    
    env GOPROXY=direct
    env GOSUMDB=off
    go get gopkg.in/macaroon-bakery.v2-unstable/bakery
    go list -m all
    stdout 'gopkg.in/macaroon-bakery.v2-unstable v2.0.0-[0-9]+-[0-9a-f]+$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 509 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/git/v2sub.txt

    git init
    
    at 2022-02-22T15:53:33-05:00
    git add v2sub.go v2
    git commit -m 'all: add package v2sub and v2sub/v2'
    git branch -m main
    git tag v2.0.0
    
    at 2022-02-22T15:55:07-05:00
    git add README.txt
    git commit -m 'v2sub: add README.txt'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    -- .git-refs --
    80beb17a16036f17a5aedd1bb5bd6d407b3c6dc5 refs/heads/main
    5fcd3eaeeb391d399f562fd45a50dac9fc34ae8b refs/tags/v2.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 773 bytes
    - Viewed (0)
  10. 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)
Back to top