Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,215 for TXT (0.12 sec)

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

    [exec:patch] ! stdout .
    [exec:patch] cmp go.mod go.mod.tidyResult
    [exec:patch] cmp go.sum go.sum.tidyResult
    
    go list -deps -test -f $MODFMT all
    cp stdout out-117.txt
    
    go mod edit -go=1.16
    go list -deps -test -f $MODFMT all
    cmp stdout out-117.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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cover_list.txt

    # where Y/Z is the package build ID; running the program below will
    # pick out the parts of the ID that we want.
    env GOCOVERDIR=$WORK
    exec $WORK/m.exe $WORK/rawtoolbuildid.txt
    cp stdout $WORK/toolbuildid.txt
    
    # Build IDs should match here.
    cmp $WORK/toolbuildid.txt $WORK/listbuildid.txt
    
    # Make sure that the build succeeds regardless of covermode.
    go list -export -covermode=atomic m/example
    go list -export -covermode=count m/example
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 22:47:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/go/testdata/script/work_vendor_main_module_replaced.txt

    # because it is of a main module, but it is still recorded in
    # vendor/modules.txt.
    
    go work vendor
    go list all # make sure the consistency checks pass
    ! stderr .
    
    # Removing the replace causes consistency checks to fail
    cp a_go_mod_no_replace a/go.mod
    ! go list all # consistency checks fail
    stderr 'example.com/b@v0.0.0: is marked as replaced in vendor/modules.txt, but not replaced in the workspace'
    
    
    -- a_go_mod_no_replace --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 895 bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/testdata/script/mod_vendor.txt

    exists dir2/relative-vendor-dir/a/foo/LICENSE
    
    # 'go mod vendor' should fall back to the default 'vendor' directory when an empty argument is passed to the -o flag
    # the same behavior should be exhibited both on the module root directory, as well as nested subdirectories
    
    go mod vendor -v -o ''
    exists vendor/modules.txt
    
    env GOFLAGS=-o=foo
    go mod vendor -v -o ''
    exists vendor/modules.txt
    env GOFLAGS=''
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/embed_fmt.txt

    go fmt xnofmt.go
    cmp xnofmt.go xfmt.ref
    ! go build xnofmt.go
    stderr 'xnofmt.go:5:12: pattern missing.txt: no matching files found'
    
    -- xnofmt.go --
    package p
    
    import "embed"
    
    //go:embed missing.txt
    var X  embed.FS
    -- xfmt.ref --
    package p
    
    import "embed"
    
    //go:embed missing.txt
    var X embed.FS
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 19 20:58:35 UTC 2021
    - 348 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_goline_too_new.txt

    ! go build -mod=vendor .
    stderr '^go: golang.org/x/text in vendor'${/}'modules.txt requires go >= 1.99999 \(running go 1\..+\)$'
    
    -- go.mod --
    module example
    go 1.99999
    
    -- p.go --
    package p
    
    -- go.mod.old --
    module example
    go 1.10
    
    -- go.work.new --
    go 1.99999
    use .
    
    -- go.work.old --
    go 1.10
    use .
    
    -- notvendor/modules.txt --
    # golang.org/x/text v0.9.0
    ## explicit; go 1.99999
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. 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)
Back to top