Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for Package (0.07 sec)

  1. 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)
  2. src/README.vendor

    "vendor/golang.org/x/crypto/cryptobyte". When a package with the
    same path is imported from a package outside std or cmd, it will
    be resolved normally. Consequently, a binary may be built with two
    copies of a package at different versions if the package is
    imported normally and vendored by the standard library.
    
    Vendored packages are internally renamed with a "vendor/" prefix
    to preserve the invariant that all packages have distinct paths.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K 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_install_pkg_version.txt

    # 'go install pkg@version' reports errors for meta packages, std packages,
    # and directories.
    ! go install std@v1.0.0
    stderr '^go: std@v1.0.0: argument must be a package path, not a meta-package$'
    ! go install fmt@v1.0.0
    stderr '^go: fmt@v1.0.0: argument must not be a package in the standard library$'
    ! go install example.com//cmd/a@v1.0.0
    stderr '^go: example.com//cmd/a@v1.0.0: argument must be a clean package path$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/vendor_test_issue14613.txt

    package myapp
    import (
       "mylibtesttest/rds"
    )
    
    -- $GOPATH/src/github.com/clsung/go-vendor-issue-14613/./vendor/mylibtesttest/rds/rds.go --
    package rds
    
    -- $GOPATH/src/github.com/clsung/go-vendor-issue-14613/./vendor/github.com/clsung/fake/fake.go --
    package fake
    
    func DoNothing() string {
    	return "Ok"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_json_issue35169.txt

    stdout '\{.*"Action":"output","Package":"example","Output":"FAIL\\texample \[build failed\]\\n"\}'
    stdout '\{.*"Action":"fail","Package":"example",.*\}'
    
    -- go.mod --
    module example
    go 1.19
    -- example.go --
    package example
    
    This is not valid Go source.
    -- example_test.go --
    package  example
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:29:21 UTC 2023
    - 804 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_pgo_auto.txt

    module test
    go 1.20
    -- a/a1/a1.go --
    package main
    import _ "test/dep"
    func main() {}
    -- a/a1/a1_test.go --
    package main
    import "testing"
    func TestA(*testing.T) {}
    -- a/a1/external_test.go --
    package main_test
    import "testing"
    func TestExternal(*testing.T) {}
    -- a/a1/default.pgo --
    -- nopgo/nopgo.go --
    package main
    func main() {}
    -- dep/dep.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_compile_multi_pkg.txt

    package pkg1
    
    -- pkg/pkg2/pkg2_test.go --
    package pkg2
    
    -- anotherpkg/pkg1/pkg1_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:09:34 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_trimpath_goroot.txt

    stdout '^GOROOT $'
    stderr 'cannot find package "runtime" in any of:\n\t\(\$GOROOT not set\)\n\t'$WORK${/}gopath${/}src${/}runtime' \(from \$GOPATH\)\n\z'
    
    exec ./example.test.exe -test.v
    stdout '^GOROOT '$TESTGO_GOROOT'$'
    stdout '^runtime '$TESTGO_GOROOT${/}src${/}runtime'$'
    
    ! exec ./example.test-trimpath.exe -test.v
    stdout '^GOROOT $'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_compat_added.txt

    	example.net/pruned v0.1.0 => ./pruned
    )
    
    require example.net/lazy v0.1.0
    -- m.go --
    package m
    
    import (
    	_ "example.net/added"
    	_ "example.net/lazy"
    )
    
    -- a1/go.mod --
    module example.net/added
    
    go 1.17
    -- a2/go.mod --
    module example.net/added
    
    go 1.17
    -- a2/added.go --
    package added
    
    -- lazy/go.mod --
    module example.net/lazy
    
    go 1.17
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top