Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 335 for 118 (0.06 sec)

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

    stderr '^go: foo is not a directory'
    stderr '^go: directory baz does not exist'
    cmp go.work go.work_want
    
    ! go work use -r qux
    stderr '^go: qux is not a directory'
    
    -- go.work --
    go 1.18
    -- go.work_want --
    go 1.18
    -- foo --
    -- qux --
    -- bar/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 289 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_implicit_go_requirement.txt

    # Issue 66207: provide a better error message when there's no
    # go directive in a go.work file so 1.18 is implicitly required.
    
    ! go list
    stderr 'go: module . listed in go.work file requires go >= 1.21, but go.work implicitly requires go 1.18; to update it:\s+go work use'
    
    go work use
    go list
    stdout foo
    
    -- go.work --
    use .
    -- go.mod --
    module foo
    
    go 1.21
    -- foo.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:35:47 UTC 2024
    - 384 bytes
    - Viewed (0)
  3. SECURITY.md

    # Security Policy
    
    ## Supported Versions
    
    We support the past two Go releases (for example, Go 1.17.x and Go 1.18.x when Go 1.18.x is the latest stable release).
    
    See https://go.dev/wiki/Go-Release-Cycle and in particular the
    [Release Maintenance](https://go.dev/wiki/Go-Release-Cycle#release-maintenance)
    part of that page.
    
    ## Reporting a Vulnerability
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 21:17:24 UTC 2023
    - 426 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/rsc.io_needgo118_v0.0.1.txt

    rsc.io/needgo118 0.0.1
    written by hand
    
    -- .mod --
    module rsc.io/needgo118
    go 1.18
    
    -- go.mod --
    module rsc.io/needgo118
    go 1.18
    
    -- .info --
    {"Version":"v0.0.1"}
    -- p.go --
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 19:11:44 UTC 2023
    - 197 bytes
    - Viewed (0)
  5. src/cmd/vendor/modules.txt

    github.com/ianlancetaylor/demangle
    # golang.org/x/arch v0.8.0
    ## explicit; go 1.18
    golang.org/x/arch/arm/armasm
    golang.org/x/arch/arm64/arm64asm
    golang.org/x/arch/ppc64/ppc64asm
    golang.org/x/arch/x86/x86asm
    # golang.org/x/build v0.0.0-20240603162849-5dfbda438323
    ## explicit; go 1.21
    golang.org/x/build/relnote
    # golang.org/x/mod v0.18.0
    ## explicit; go 1.18
    golang.org/x/mod/internal/lazyregexp
    golang.org/x/mod/modfile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/run_work_versioned.txt

    [short] skip
    go run example.com/printversion@v0.1.0
    stdout '^main is example.com/printversion v0.1.0$'
    
    -- go.work --
    go 1.18
    
    use (
    	.
    )
    -- go.mod --
    module example
    
    go 1.18
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 02:46:20 UTC 2022
    - 216 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/work_vet.txt

    ! go vet ./a
    stderr 'fmt.Println call has possible Printf formatting directive'
    
    -- go.work --
    go 1.18
    
    use ./a
    -- a/go.mod --
    module example.com/a
    
    go 1.18
    -- a/a.go --
    package a
    
    import "fmt"
    
    func A() {
        fmt.Println("%s")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 229 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_fuzzfail_v0.1.0.txt

    -- .mod --
    module example.com/fuzzfail
    
    go 1.18
    -- .info --
    {"Version":"v0.1.0"}
    -- go.mod --
    module example.com/fuzzfail
    
    go 1.18
    -- fuzzfail_test.go --
    package fuzzfail
    
    import "testing"
    
    func FuzzFail(f *testing.F) {
    	f.Fuzz(func(t *testing.T, b []byte) {
    		t.Fatalf("oops: %q", b)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 20:43:39 UTC 2021
    - 291 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_sum.txt

    rsc.io/quote v1.5.2 h1:3fEykkD9k7lYzXqCYrwGAf7iNhbk4yCjHmKBN9td4L0=
    rsc.io/quote v1.5.2/go.mod h1:LzX7hefJvL54yjefDEDHNONDjII0t9xZLPXsUe+TKr0=
    -- go.work --
    go 1.18
    
    use .
    -- go.mod --
    go 1.18
    
    module example.com/hi
    
    require "rsc.io/quote" v1.5.2
    -- go.sum --
    rsc.io/sampler v1.3.0 h1:HLGR/BgEtI3r0uymSP/nl2uPLsUnNJX8toRyhfpBTII=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 16 17:32:23 UTC 2021
    - 833 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_fuzzfail_v0.2.0.txt

    -- .mod --
    module example.com/fuzzfail
    
    go 1.18
    -- .info --
    {"Version":"v0.2.0"}
    -- go.mod --
    module example.com/fuzzfail
    
    go 1.18
    -- fuzzfail_test.go --
    package fuzzfail
    
    import "testing"
    
    func FuzzFail(f *testing.F) {
    	f.Fuzz(func(t *testing.T, b []byte) {
    		t.Fatalf("oops: %q", b)
    	})
    }
    -- testdata/fuzz/FuzzFail/bbb0c2d22aa1a24617301566dc7486f8b625d38024603ba62757c1124013b49a --
    go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 20:43:39 UTC 2021
    - 416 bytes
    - Viewed (0)
Back to top