Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 105 for Your (0.56 sec)

  1. CONTRIBUTING.md

    # Contributing to Go
    
    Go is an open source project.
    
    It is the work of hundreds of contributors. We appreciate your help!
    
    ## Before filing an issue
    
    If you are unsure whether you have found a bug, please consider asking in the [golang-nuts mailing
    list](https://groups.google.com/forum/#!forum/golang-nuts) or [other forums](https://golang.org/help/) first. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 22:00:27 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/fix/doc.go

    // license that can be found in the LICENSE file.
    
    /*
    Fix finds Go programs that use old APIs and rewrites them to use
    newer ones.  After you update to a new Go release, fix helps make
    the necessary changes to your programs.
    
    Usage:
    
    	go tool fix [-r name,...] [path ...]
    
    Without an explicit path, fix reads standard input and writes the
    result to standard output.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/helpdoc.go

    the directory DIR/src/P for some DIR listed in the GOPATH
    environment variable (For more details see: 'go help gopath').
    
    If no import paths are given, the action applies to the
    package in the current directory.
    
    There are four reserved names for paths that should not be used
    for packages to be built with the go tool:
    
    - "main" denotes the top-level package in a stand-alone executable.
    
    - "all" expands to all packages found in all the GOPATH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/bug/bug.go

    	if !web.OpenBrowser(url) {
    		fmt.Print("Please file a new issue at golang.org/issue/new using this template:\n\n")
    		fmt.Print(body)
    	}
    }
    
    const bugHeader = `<!-- Please answer these questions before submitting your issue. Thanks! -->
    
    `
    const bugFooter = `### What did you do?
    
    <!--
    If possible, provide a recipe for reproducing the error.
    A complete runnable program is good.
    A link on play.golang.org is best.
    -->
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. doc/go_mem.html

    such as those in the <a href="/pkg/sync/"><code>sync</code></a>
    and <a href="/pkg/sync/atomic/"><code>sync/atomic</code></a> packages.
    </p>
    
    <p>
    If you must read the rest of this document to understand the behavior of your program,
    you are being too clever.
    </p>
    
    <p>
    Don't be clever.
    </p>
    
    <h3 id="overview">Informal Overview</h3>
    
    <p>
    Go approaches its memory model in much the same way as the rest of the language,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // should not be necessary in typical use. However, the build cache
    // does not detect changes to C libraries imported with cgo.
    // If you have made changes to the C libraries on your system, you
    // will need to clean the cache explicitly or else use the -a build flag
    // (see 'go help build') to force rebuilding of packages that
    // depend on the updated C libraries.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/cache/cache.go

    // Go developers found that essentially all reuse of cached entries happened
    // within 5 days of the previous reuse. See golang.org/issue/22990.
    const (
    	mtimeInterval = 1 * time.Hour
    	trimInterval  = 24 * time.Hour
    	trimLimit     = 5 * 24 * time.Hour
    )
    
    // used makes a best-effort attempt to update mtime on file,
    // so that mtime reflects cache access time.
    //
    // Because the reflection only needs to be approximate,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/base/base.go

    // size, but this function does not affect that.
    //
    // -d=gcadjust=1 enables logging of GOGC adjustment events.
    //
    // NOTE: If you think this code would help startup time in your own
    // application and you decide to use it, please benchmark first to see if it
    // actually works for you (it may not: the Go compiler is not typical), and
    // whatever the outcome, please leave a comment on bug #56546.  This code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cover_swig.txt

      int g;
      g = y;
      while (x > 0) {
        g = x;
        x = y % x;
        y = g;
      }
      return g;
    }
    
    
    -- main.go --
    package main
    
    import (
    	"fmt"
    )
    
    func main() {
    	// Call our gcd() function
    	x := 42
    	y := 105
    	g := Gcd(x, y)
    	fmt.Println("The gcd of", x, "and", y, "is", g)
    
    	// Manipulate the Foo global variable
    
    	// Output its current value
    	fmt.Println("Foo =", GetFoo())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 05 21:29:51 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_list_update_nolatest.txt

    # Check that if a proxy does not have a version of a module that could be
    # an upgrade, 'go list -m -u' still succeeds.
    # We use a local file proxy, since our test proxy doesn't have the behavior
    # we want to test, and we don't want it to be too clever.
    # Verifies #45305, where proxy.golang.org serves an empty /@v/list (200)
    # but has no /@latest (410) because the go.mod at the tip of the default
    # branch has a different major version suffix.
    env testproxy=$GOPROXY
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top