Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Erasure (0.09 sec)

  1. .github/ISSUE_TEMPLATE/11-language-change.yml

          label: "Orthogonality: How does this change interact or overlap with existing features?"
          description: "Is the goal of this change a performance improvement? If so, what quantifiable improvement should we expect? How would we measure it?"
        validations:
          required: false
    
      - type: textarea
        id: learning-curve
        attributes:
          label: "Would this change make Go easier or harder to learn, and why?"
    
      - type: textarea
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 20:49:24 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/12-telemetry.yml

      attributes:
        label: Summary
        description: >
          What change are you proposing to the upload configuration, and why?
          For new upload configuration, which new counters will be collected, what
          do they measure, and why is it important to collect them?
          Note that uploaded data must not carry sensitive user information.
          See [go.dev/doc/telemetry#proposals](https://go.dev/doc/telemetry#proposals)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 19:58:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/switch.go

    	// equality comparison, they don't get CSEd and the equality comparisons will be
    	// done using wider loads.
    
    	n := len(ir.StringVal(cc[0].lo)) // Length of the constant strings.
    	bestScore := int64(0)            // measure of how good the split is.
    	bestIdx := 0                     // split using expr[bestIdx]
    	bestByte := int8(0)              // compare expr[bestIdx] against bestByte
    	for idx := 0; idx < n; idx++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    	if loadedDirect {
    		direct = make(map[string]bool)
    	} else {
    		// TODO(bcmills): It seems like a shame to allocate and copy a map here when
    		// it will only rarely actually vary from rs.direct. Measure this cost and
    		// maybe avoid the copy.
    		direct = make(map[string]bool, len(rs.direct))
    		for mPath := range rs.direct {
    			direct[mPath] = true
    		}
    	}
    
    	var maxTooNew *gover.TooNewError
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. doc/go_spec.html

    distinct arrays always represent distinct storage.
    </p>
    <p>
    The array underlying a slice may extend past the end of the slice.
    The <i>capacity</i> is a measure of that extent: it is the sum of
    the length of the slice and the length of the array beyond the slice;
    a slice of length up to that capacity can be created by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/regalloc.go

    	"cmd/internal/sys"
    	"fmt"
    	"internal/buildcfg"
    	"math/bits"
    	"unsafe"
    )
    
    const (
    	moveSpills = iota
    	logSpills
    	regDebug
    	stackDebug
    )
    
    // distance is a measure of how far into the future values are used.
    // distance is measured in units of instructions.
    const (
    	likelyDistance   = 1
    	normalDistance   = 10
    	unlikelyDistance = 100
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

      max-width: 15em;
    }
    /* Right-click menu title */
    #action-title {
      display: block;
      padding: 0.5em 1em;
      background: #888;
      text-overflow: ellipsis;
      overflow: hidden;
    }
    /* Internal canvas used to measure text size when picking fonts */
    #textsizer {
      position: absolute;
      bottom: -100px;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/internal/dwarf/dwarf.go

    // of the function (any inlined copy of it, or the single out-of-line
    // 'concrete' instance) will contain a pointer back to this abstract
    // DIE (as a space-saving measure, so that name/type etc doesn't have
    // to be repeated for each inlined copy).
    func PutAbstractFunc(ctxt Context, s *FnState) error {
    	if logDwarf {
    		ctxt.Logf("PutAbstractFunc(%v)\n", s.Absfn)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/assignments.go

    		}
    		res = append(res, s)
    	}
    	return "(" + strings.Join(res, ", ") + ")"
    }
    
    func measure(x int, unit string) string {
    	if x != 1 {
    		unit += "s"
    	}
    	return fmt.Sprintf("%d %s", x, unit)
    }
    
    func (check *Checker) assignError(rhs []syntax.Expr, l, r int) {
    	vars := measure(l, "variable")
    	vals := measure(r, "value")
    	rhs0 := rhs[0]
    
    	if len(rhs) == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/signature.go

    				}
    			} else if len(tparams) < len(recvTParams) {
    				// Reporting an error here is a stop-gap measure to avoid crashes in the
    				// compiler when a type parameter/argument cannot be inferred later. It
    				// may lead to follow-on errors (see issues go.dev/issue/51339, go.dev/issue/51343).
    				// TODO(gri) find a better solution
    				got := measure(len(tparams), "type parameter")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top