Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for thank (0.16 sec)

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

    # be parsed isn't matched as a go directory. (This was happening because
    # non-go files with unparsable comments were being added to InvalidGoFiles
    # leading the package matching code to think there were Go files in the
    # directory.)
    
    cd bar
    go list ./...
    ! stdout .
    cd ..
    
    [short] skip
    
    # Test that an unparsable .s file is completely ignored when its name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 21:02:24 UTC 2022
    - 740 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/example.com_retract_self_prerelease_v1.0.0.txt

    Module example.com/retract/self/prerelease is a module that retracts its own
    latest version and all other release version.
    
    A pre-release version higher than the highest release version is still
    available, and that should be matched by @latest.
    
    -- .mod --
    module example.com/retract/self/prerelease
    
    go 1.15
    
    -- .info --
    {"Version":"v1.0.0"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 365 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cgo_badmethod_issue57926.txt

    -- go.mod --
    module example.com
    go 1.12
    
    -- a.go --
    package a
    
    /*
    typedef int T;
    */
    import "C"
    
    func (C.T) f() {}
    func (recv *C.T) g() {}
    
    // The check is more education than enforcement,
    // and is easily defeated using a type alias.
    type Alias = C.T
    func (Alias) h() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 12:55:28 UTC 2023
    - 562 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_goline.txt

    // this module is technically invalid, since the dep example.com/b has a newer go line than this module,
    // but we should still be able to handle it.
    module example.com/a
    go 1.22
    
    require example.com/b v1.0.1
    
    -- a101/a.go --
    package a
    
    -- a102/go.mod --
    // this module is technically invalid, since the dep example.com/b has a newer go line than this module,
    // but we should still be able to handle it.
    module example.com/a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_patch.txt

    go list -m all
    stdout '^example.net/a v0.2.0 '
    stdout '^example.net/b v0.2.1 '
    
    
    # "-u=patch all" should be equivalent to "all@patch", and should fail if the
    # patched versions result in a higher-than-patch upgrade.
    
    cp go.mod.orig go.mod
    ! go get -u=patch all
    stderr '^go: example.net/a@v0.1.1 \(matching all@patch\) requires example.net/b@v0.2.0, not example.net/b@v0.1.1 \(matching all@patch\)$'
    cmp go.mod go.mod.orig
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_replace_old.txt

    # Regression test for https://golang.org/issue/46659.
    #
    # If a 'replace' directive specifies an older-than-selected version of a module,
    # 'go mod tidy' shouldn't try to add that version to the build list to resolve a
    # missing package: it won't be selected, and would cause the module loader to
    # loop indefinitely trying to resolve the package.
    
    cp go.mod go.mod.orig
    
    ! go mod tidy
    ! stderr panic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1004 bytes
    - Viewed (0)
  7. src/cmd/dist/README

    This program, dist, is the bootstrapping tool for the Go distribution.
    
    As of Go 1.5, dist and other parts of the compiler toolchain are written
    in Go, making bootstrapping a little more involved than in the past.
    The approach is to build the current release of Go with an earlier one.
    
    The process to install Go 1.x, for x ≥ 22, is:
    
    1. Build cmd/dist with Go 1.20.6.
    2. Using dist, build Go 1.x compiler toolchain with Go 1.20.6.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 17:20:22 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_multiple.txt

    go test -fuzz=. -fuzztime=1x ./one
    
    # With fuzzing enabled, at most one target in the same package may match.
    ! go test -fuzz=. ./two
    stdout '^testing: will not fuzz, -fuzz matches more than one fuzz test: \[FuzzOne FuzzTwo\]$'
    go test -fuzz=FuzzTwo -fuzztime=1x ./two
    
    -- go.mod --
    module fuzz
    
    go 1.18
    -- zero/zero.go --
    package zero
    -- one/one_test.go --
    package one
    
    import "testing"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/gotoolchain_modcmds.txt

    env TESTGO_VERSION=go1.21.0
    env TESTGO_VERSION_SWITCH=switch
    
    # If the main module's go.mod file lists a version lower than the version
    # required by its dependencies, the commands that fetch and diagnose the module
    # graph (such as 'go mod graph' and 'go mod verify') should fail explicitly:
    # they can't interpret the graph themselves, and they aren't allowed to update
    # the go.mod file to record a specific, stable toolchain version that can.
    
    ! go mod verify
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_lazy_indirect.txt

    #
    # 'go get' marks the new dependency as 'indirect', because it doesn't scan
    # enough source code to know whether it is direct, and it is easier and less
    # invasive to remove an incorrect indirect mark (e.g. using 'go get') than to
    # add one that is missing ('go mod tidy' or 'go mod vendor').
    
    go get rsc.io/quote
    grep 'rsc.io/quote v\d+\.\d+\.\d+ // indirect$' go.mod
    ! grep 'rsc.io/quote v\d+\.\d+\.\d+$' go.mod
    
    go list -deps .
    ! stderr .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 19:52:18 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top