Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 366 for RSC (0.17 sec)

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

    # In this test, the user has rewritten their imports to use rsc.io/quote/v3,
    # but their go.mod still requires rsc.io/quote@v1.5.2, and they indirectly
    # require rsc.io/quote@v1.5.1 but don't import anything from it.
    go list -m -f '{{.Path}}@{{.Version}}{{if .Indirect}} indirect{{end}}' all
    stdout '^rsc.io/quote@v1.5.2$'
    ! stdout 'rsc.io/quote/v3'
    go list -e all
    ! stdout '^rsc.io/quote$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 17:32:52 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_main.txt

    go get rsc.io/x
    grep 'rsc.io/quote v1.5.2' go.mod
    go get rsc.io/x@upgrade
    grep 'rsc.io/quote v1.5.2' go.mod
    cp go.mod.orig go.mod
    go get rsc.io/x@patch
    grep 'rsc.io/quote v1.5.2' go.mod
    cp go.mod.orig go.mod
    
    
    # Upgrading a package pattern not contained in the main module should not
    # attempt to upgrade the main module.
    go get rsc.io/quote/...@v1.5.1
    grep 'rsc.io/quote v1.5.1' go.mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/malformed_gosum_issue62345.txt

    rsc.io/quote v1.5.2 # invalid line
    rsc.io/quote v1.5.2/go.mod h1:LzX7hefJvL54yjefDEDHNONDjII0t9xZLPXsUe+TKr0=
    rsc.io/sampler v1.3.0 h1:HLGR/BgEtI3r0uymSP/nl2uPLsUnNJX8toRyhfpBTII=
    rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
    rsc.io/testonly v1.0.0 h1:K/VWHdO+Jv7woUXG0GzVNx1czBXUt3Ib1deaMn+xk64=
    rsc.io/testonly v1.0.0/go.mod h1:OqmGbIFOcF+XrFReLOGZ6BhMM7uMBiQwZsyNmh74SzY=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_update_sum_readonly.txt

    #
    # Verifies #47377.
    
    # rsc.io/breaker has two versions, neither of which has a .mod file.
    go list -m -versions rsc.io/breaker
    stdout '^rsc.io/breaker v1.0.0 v2.0.0\+incompatible$'
    go mod download rsc.io/breaker@v1.0.0
    ! grep '^go' $GOPATH/pkg/mod/cache/download/rsc.io/breaker/@v/v1.0.0.mod
    go mod download rsc.io/breaker@v2.0.0+incompatible
    ! grep '^go' $GOPATH/pkg/mod/cache/download/rsc.io/breaker/@v/v2.0.0+incompatible.mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 27 22:01:54 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_versions.txt

    # Test rejection of pkg@version in GOPATH mode.
    env GO111MODULE=off
    ! go get rsc.io/quote@v1.5.1
    stderr '^go: modules disabled by GO111MODULE=off'
    ! go build rsc.io/quote@v1.5.1
    stderr '^package rsc.io/quote@v1.5.1: can only use path@version syntax with ''go get'' and ''go install'' in module-aware mode$'
    
    env GO111MODULE=on
    cd x
    ! go build rsc.io/quote@v1.5.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 517 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/vendor_test_issue11864.txt

    [short] skip
    env GO111MODULE=off
    
    # test should work too
    go test github.com/rsc/go-get-issue-11864
    go test github.com/rsc/go-get-issue-11864/t
    
    # external tests should observe internal test exports (golang.org/issue/11977)
    go test github.com/rsc/go-get-issue-11864/vendor/vendor.org/tx2
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/m.go --
    package g
    
    import _ "vendor.org/p"
    import _ "vendor.org/p1"
    
    func main() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_getmode_vendor.txt

    go get rsc.io/quote@v1.5.1
    go mod vendor
    env GOPATH=$WORK/empty
    env GOPROXY=file:///nonexist
    
    go list -mod=vendor
    go list -mod=vendor -f '{{with .Module}}{{.Path}} {{.Version}}{{end}} {{.Dir}}' all
    stdout '^rsc.io/quote v1.5.1 .*vendor[\\/]rsc.io[\\/]quote$'
    stdout '^golang.org/x/text v0.0.0.* .*vendor[\\/]golang.org[\\/]x[\\/]text[\\/]language$'
    
    ! go list -mod=vendor -m rsc.io/quote@latest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/vcs/discovery_test.go

    		IgnoreMod,
    		[]metaImport{{"foo/bar", "git", "https://github.com/rsc/foo/bar"}},
    	},
    	{
    		`<meta name="go-import" content="foo/bar git https://github.com/rsc/foo/bar">
    		<meta name="go-import" content="baz/quux git http://github.com/rsc/baz/quux">`,
    		IgnoreMod,
    		[]metaImport{
    			{"foo/bar", "git", "https://github.com/rsc/foo/bar"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 18:14:49 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_pseudo.txt

    go get github.com/rsc/legacytest@master
    go list -m all
    stdout '^github.com/rsc/legacytest v2\.0\.1-0\.\d{14}-7303f7796364\+incompatible$'
    
    # get should include incompatible tags in "latest" calculation.
    go mod edit -droprequire github.com/rsc/legacytest
    go get github.com/rsc/legacytest@latest
    go list
    go list -m all
    stdout '^github.com/rsc/legacytest v2\.0\.0\+incompatible$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_old.txt

    rsc.io/quote v1.5.0 h1:6fJa6E+wGadANKkUMlZ0DhXFpoKlslOQDCo259XtdIE=
    rsc.io/quote v1.5.0/go.mod h1:LzX7hefJvL54yjefDEDHNONDjII0t9xZLPXsUe+TKr0=
    rsc.io/quote v1.5.2 h1:3fEykkD9k7lYzXqCYrwGAf7iNhbk4yCjHmKBN9td4L0=
    rsc.io/quote v1.5.2/go.mod h1:LzX7hefJvL54yjefDEDHNONDjII0t9xZLPXsUe+TKr0=
    rsc.io/sampler v1.3.0 h1:HLGR/BgEtI3r0uymSP/nl2uPLsUnNJX8toRyhfpBTII=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 14 21:04:12 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top