Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 511 for topo (0.09 sec)

  1. src/cmd/compile/internal/ssa/flags_test.go

    			if a != b {
    				t.Errorf("asmAdd diff: x=%x y=%x got=%s want=%s\n", x, y, a, b)
    			}
    			coverage[a] = true
    		}
    	}
    	if len(coverage) != 9 { // TODO: can we cover all outputs?
    		t.Errorf("coverage too small, got %d want 9", len(coverage))
    	}
    }
    
    func TestSubFlagsNative(t *testing.T) {
    	var numbers = []int64{
    		1, 0, -1,
    		2, -2,
    		1<<63 - 1, -1 << 63,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:36:17 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. doc/next/9-todo.md

    -->
    
    <!-- Items that don't need to be mentioned in Go 1.23 release notes but are picked up by relnote todo.
    
    CL 458895 - an x/playground fix that mentioned an accepted cmd/go proposal go.dev/issue/40728 in Go 1.16 milestone...
    CL 582097 - an x/build CL working on relnote itself; it doesn't need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/gotoolchain_modcmds.txt

    ! go mod graph
    stderr '^go: rsc.io/future@v1.0.0: module rsc.io/future@v1.0.0 requires go >= 1.999 \(running go 1.21.0\)'
    
    # TODO(#64008): 'go mod download' without arguments should fail too.
    
    
    # 'go get' should update the main module's go.mod file to a version compatible with the
    # go version required for rsc.io/future, not fail.
    go get .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/sccp.go

    func (t *worklist) meet(val *Value) lattice {
    	optimisticLt := lattice{top, nil}
    	for i := 0; i < len(val.Args); i++ {
    		edge := Edge{val.Block, i}
    		// If incoming edge for phi is not visited, assume top optimistically.
    		// According to rules of meet:
    		// 		Top ∩ any = any
    		// Top participates in meet() but does not affect the result, so here
    		// we will ignore Top and only take other lattices into consideration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/pkg.go

    func (pkg *Pkg) LookupOK(name string) (s *Sym, existed bool) {
    	// TODO(gri) remove this check in favor of specialized lookup
    	if pkg == nil {
    		pkg = nopkg
    	}
    	if s := pkg.Syms[name]; s != nil {
    		return s, true
    	}
    
    	s = &Sym{
    		Name: name,
    		Pkg:  pkg,
    	}
    	pkg.Syms[name] = s
    	return s, false
    }
    
    func (pkg *Pkg) LookupBytes(name []byte) *Sym {
    	// TODO(gri) remove this check in favor of specialized lookup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:28:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/amd64error.s

    	MOVQ 2147483647+1(AX), AX       // ERROR "offset too large"
    	MOVQ 3395469782(R10), R8        // ERROR "offset too large"
    	LEAQ 3395469782(AX), AX         // ERROR "offset too large"
    	ADDQ 3395469782(AX), AX         // ERROR "offset too large"
    	ADDL 3395469782(AX), AX         // ERROR "offset too large"
    	ADDW 3395469782(AX), AX         // ERROR "offset too large"
    	LEAQ 433954697820(AX), AX       // ERROR "offset too large"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/clean/clean.go

    			clean(pkg)
    		}
    	}
    
    	sh := work.NewShell("", fmt.Print)
    
    	if cleanCache {
    		dir, _ := cache.DefaultDir()
    		if dir != "off" {
    			// Remove the cache subdirectories but not the top cache directory.
    			// The top cache directory may have been created with special permissions
    			// and not something that we want to remove. Also, we'd like to preserve
    			// the access log for future analysis, even if the cache is cleared.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/pgen.go

    	})
    	for _, large := range largeStackFrames {
    		if large.callee != 0 {
    			base.ErrorfAt(large.pos, 0, "stack frame too large (>1GB): %d MB locals + %d MB args + %d MB callee", large.locals>>20, large.args>>20, large.callee>>20)
    		} else {
    			base.ErrorfAt(large.pos, 0, "stack frame too large (>1GB): %d MB locals + %d MB args", large.locals>>20, large.args>>20)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/complit.go

    )
    
    // getdyn calculates the initGenType for n.
    // If top is false, getdyn is recursing.
    func getdyn(n ir.Node, top bool) initGenType {
    	switch n.Op() {
    	default:
    		if ir.IsConstNode(n) {
    			return initConst
    		}
    		return initDynamic
    
    	case ir.OSLICELIT:
    		n := n.(*ir.CompLitExpr)
    		if !top {
    			return initDynamic
    		}
    		if n.Len/4 > int64(len(n.List)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/action.go

    		// math on arm). So if it was not passed on the command line and
    		// it is not present in another shared library, add it here.
    		// TODO(rsc): Maybe this should only happen if "runtime" is in the original package set.
    		// TODO(rsc): This should probably be changed to use load.LinkerDeps(p).
    		// TODO(rsc): We don't add standard library imports for gccgo
    		// because they are all always linked in anyhow.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top