Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for more (1.37 sec)

  1. 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)
  2. src/cmd/compile/internal/ssa/_gen/README

    This command generates Go code (in the parent directory) for all
    the architecture-specific opcodes, blocks, and rewrites. See the
    "Hacking on SSA" section in the parent directory's README.md for
    more information.
    
    To regenerate everything, run "go generate" on the ssa package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 462 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cgo_badmethod_issue57926.txt

    ! stderr 'Alias'
    
    -- 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/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
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cover_build_pkg_select.txt

    # This test checks more of the "go build -cover" functionality,
    # specifically which packages get selected when building.
    
    [short] skip
    
    # Skip if new coverage is not enabled.
    [!GOEXPERIMENT:coverageredesign] skip
    
    #-------------------------------------------
    
    # Build for coverage.
    go build -mod=mod -o $WORK/modex.exe -cover mod.example/main
    
    # Save off old GOCOVERDIR setting
    env SAVEGOCOVERDIR=$GOCOVERDIR
    
    # Execute.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_io_error.txt

    # The coordinator should not record a crasher.
    #
    # We simulate an I/O error in the test by writing garbage to fuzz_out.
    # This is unlikely, but possible. It's difficult to simulate interruptions
    # due to ^C and EOF errors which are more common. We don't report those.
    [short] skip
    [!fuzz] skip
    env GOCACHE=$WORK/cache
    
    # If the I/O error occurs before F.Fuzz is called, the coordinator should
    # stop the worker and say that.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/list_goroot_symlink.txt

    # Most path lookups in GOROOT are not sensitive to symlinks. However, patterns
    # involving '...' wildcards must use Walk to check the GOROOT tree, which makes
    # them more sensitive to symlinks (because Walk doesn't follow them).
    #
    # So we check such a pattern to confirm that it works and reports a path relative
    # to $GOROOT/src (and not the symlink target).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:01:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_fuzztime.txt

    go test
    
    # For the fuzzing phase, we reduce GOMAXPROCS to avoid consuming too many
    # resources during the test. Ideally this would just free up resources to run
    # other parallel tests more quickly, but unfortunately it is actually necessary
    # in some 32-bit environments to prevent the fuzzing engine from running out of
    # address space (see https://go.dev/issue/65434).
    env GOMAXPROCS=2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 20:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/trampoline_reuse_test.txt

    # main.BigAsm
    # main.Func2
    # bar.Bar+400-tramp1
    #
    # bar.Bar needs to be placed far enough away to generate relocations
    # from main package calls. and main.Func1 and main.Func2 are placed
    # a bit more than the direct call limit apart, but not more than 0x400
    # bytes beyond it (to verify the reloc calc).
    
    go build
    
    -- go.mod --
    
    module foo
    
    go 1.19
    
    -- main.go --
    
    package main
    
    import "foo/bar"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 14:31:23 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/vcstest/fossil/hello.txt

    fossil timeline --oneline
    cmp stdout .fossil-timeline
    
    -- .fossil-timeline --
    d4c7dcdc29 hello world
    58da0d15e9 initial empty check-in
    +++ no more data (2) +++
    -- hello.go --
    package main
    
    func main() {
    	println("hello, world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 470 bytes
    - Viewed (0)
Back to top