Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 554 for PACKAGE (2.49 sec)

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

    package q
    -- vend/vendor/strings/msg.go --
    package strings
    
    var Msg = "hello, world"
    -- vend/vendor/vend/dir1/dir2/dir2.go --
    package dir2
    -- vend/x/invalid/invalid.go --
    package invalid
    
    import "vend/x/invalid/vendor/foo"
    -- vend/x/vendor/p/p/p.go --
    package p
    
    import _ "notfound"
    -- vend/x/vendor/p/p.go --
    package p
    -- vend/x/vendor/r/r.go --
    package r
    -- vend/x/x.go --
    package x
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 22 21:14:01 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/fmt_load_errors.txt

    exec $GOROOT/bin/gofmt gofmt-dir/no-extension
    stdout 'package x'
    
    exec $GOROOT/bin/gofmt gofmt-dir
    ! stdout 'package x'
    
    ! exec $GOROOT/bin/gofmt empty.go nopackage.go
    stderr -count=1 'empty\.go:1:1: expected .package., found .EOF.'
    stderr -count=1 'nopackage\.go:1:1: expected .package., found not'
    
    -- exclude/empty/x.txt --
    -- exclude/ignore/_x.go --
    package x
    -- exclude/x.go --
    // +build linux,!linux
    
    package x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 09:17:34 UTC 2022
    - 775 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/vendor_list_issue11977.txt

    package tx_test
    
    import _ "vendor.org/p"
    import _ "vendor.org/p1"
    import "testing"
    
    func TestNop(t *testing.T) {}
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/tx/tx.go --
    package tx
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/vendor/vendor.org/p1/p1.go --
    package p1 // import "vendor.org/p1"
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/vendor/vendor.org/tx3/tx3_test.go --
    package tx3_test
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_issue56494.txt

    require b v0.2.0
    -- a3/a.go --
    package a
    
    import _ "b"
    -- a3/sub/sub.go --
    package sub
    -- b1/go.mod --
    module b
    
    go 1.19
    -- b1/b.go --
    package b
    -- b2/go.mod --
    module b
    
    go 1.19
    
    require a v0.2.0
    -- b2/b.go --
    package b
    
    import "a/sub"
    -- c1/go.mod --
    module c
    
    go 1.19
    -- c1/c.go --
    package c
    -- c2/go.mod --
    module c
    
    go 1.19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_tidy_error.txt

    ! go mod tidy
    ! stderr 'package nonexist is not in std'
    stderr '^go: issue27063 imports\n\tnonexist.example.com: cannot find module providing package nonexist.example.com'
    stderr '^go: issue27063 imports\n\tissue27063/other imports\n\tother.example.com/nonexist: cannot find module providing package other.example.com/nonexist'
    
    ! go mod vendor
    ! stderr 'package nonexist is not in std'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_fs_patterns.txt

    -- x/go.mod --
    module m
    
    -- x/x.go --
    package x
    
    -- x/vendor/v/v.go --
    package v
    import _ "golang.org/x/crypto"
    
    -- x/vendor/v.go --
    package main
    
    -- x/y/y.go --
    package y
    
    -- x/y/z/go.mod --
    syntax error!
    
    -- x/y/z/z.go --
    package z
    
    -- x/y/z/w/w.go --
    package w
    
    -- @at/go.mod --
    module at
    
    go 1.14
    -- @at/at.go --
    package at
    
    -- badat/go.mod --
    module badat
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 18:09:53 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/list_all_gobuild.txt

    go list all
    
    -- go.mod --
    go 1.17
    module m
    
    -- p/p.go --
    package p
    
    -- p/p_test.go --
    //go:build linux
    
    package p
    
    import "m/q"
    
    -- q/q_linux.go --
    package q
    
    -- r/r.go --
    package r
    
    -- r/r_test.go --
    // +build linux
    
    package r
    
    import "m/s"
    
    -- s/s_linux.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 17:26:46 UTC 2023
    - 674 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_tidy_issue60313.txt

    require example.net/outer v0.1.0
    -- b/b.go --
    package b
    -- b/b_test.go --
    package b_test
    
    import _ "example.net/outer/inner"
    -- inner/go.mod --
    module example.net/outer/inner
    
    go 1.21
    -- inner/inner.go --
    package inner
    -- outer/go.mod --
    module example.net/outer
    
    go 1.21
    -- outer/inner/inner.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 19:42:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_multiple.txt

    # enabled, and multiple package or multiple fuzz targets match.
    # TODO(#46312): support fuzzing multiple targets in multiple packages.
    
    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # With fuzzing disabled, multiple targets can be tested.
    go test ./...
    
    # With fuzzing enabled, at most one package may be tested,
    # even if only one package contains fuzz targets.
    ! go test -fuzz=. ./...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_pgo_auto_multi.txt

    -- b/default.pgo --
    -- nopgo/nopgo.go --
    package main
    import _ "test/dep"
    import _ "test/dep2"
    func main() {}
    -- nopgo/nopgo_test.go --
    package main
    import "testing"
    func TestNopgo(*testing.T) {}
    -- dep/dep.go --
    package dep
    import _ "test/dep3"
    -- dep2/dep2.go --
    package dep2
    -- dep3/dep3.go --
    package dep3
    -- testdep/testdep.go --
    package testdep
    import _ "test/testdep2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:38:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top