Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for pastie (0.4 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. .github/ISSUE_TEMPLATE/01-pkgsite.yml

        validations:
          required: true
      - type: textarea
        id: screenshot
        attributes:
          label: "Screenshot"
          description: "Please paste a screenshot of the page."
        validations:
          required: false
      - type: textarea
        id: what-did-you-do
        attributes:
          label: "What did you do?"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typeparam.go

    // respective 64 bit atomic instructions are not available
    // on all platforms.
    var lastID atomic.Uint32
    
    // nextID returns a value increasing monotonically by 1 with
    // each call, starting with 1. It may be called concurrently.
    func nextID() uint64 { return uint64(lastID.Add(1)) }
    
    // A TypeParam represents a type parameter type.
    type TypeParam struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/base/base.go

    	// out-of-memory.  This doesn't seem to happen; in experiments on a variety
    	// of machines with a variety of extra loads to disrupt scheduling, the
    	// worst overshoot observed was 50% past requestedHeapGoal.
    
    	metrics.Read(sample)
    	for _, s := range sample {
    		if s.Value.Kind() == metrics.KindBad {
    			// Just return, a slightly slower compilation is a tolerable outcome.
    			if logHeapTweaks {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top