Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 761 for topo (0.1 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/top.html

    <!DOCTYPE html>
    <html>
    <head>
      <meta charset="utf-8">
      <title>{{.Title}}</title>
      {{template "css" .}}
      <style type="text/css">
      </style>
    </head>
    <body>
      {{template "header" .}}
      <div id="top">
        <table id="toptable">
          <thead>
            <tr>
              <th id="flathdr1">Flat</th>
              <th id="flathdr2">Flat%</th>
              <th>Sum%</th>
              <th id="cumhdr1">Cum</th>
              <th id="cumhdr2">Cum%</th>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 14:39:18 UTC 2022
    - 3.1K 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/compile/internal/typecheck/typecheck.go

    			return false
    		}
    		if ir.ConstOverflow(v, types.Types[types.TINT]) {
    			base.Errorf("%s argument too large in make(%v)", arg, t)
    			return false
    		}
    	}
    
    	// DefaultLit is necessary for non-constants too: n might be 1.1<<k.
    	// TODO(gri) The length argument requirements for (array/slice) make
    	// are the same as for index expressions. Factor the code better;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/ssa/deadcode.go

    	for i, b := range f.Blocks {
    		if !reachable[b.ID] {
    			// TODO what if control is statement boundary? Too late here.
    			b.ResetControls()
    		}
    		for _, v := range b.Values {
    			if !live[v.ID] {
    				v.resetArgs()
    				if v.Pos.IsStmt() == src.PosIsStmt && reachable[b.ID] {
    					pendingLines.set(v.Pos, int32(i)) // TODO could be more than one pos for a line
    				}
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/pass.go

    		if a.Reg != 0 || a.Index != 0 || a.Scale != 0 || a.Name != 0 || a.Offset != 0 || a.Sym != nil {
    			break
    		}
    		return
    
    	case TYPE_REG:
    		// TODO(rsc): After fixing PINSRQ, check a.Offset != 0 too.
    		// TODO(rsc): After fixing SHRQ, check a.Index != 0 too.
    		if a.Scale != 0 || a.Name != 0 || a.Sym != nil {
    			break
    		}
    		return
    
    	case TYPE_ADDR:
    		if a.Val != nil {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/webhtml.go

    	def("graph", loadFile("html/graph.html"))
    	def("graph_css", loadCSS("html/graph.css"))
    	def("script", loadJS("html/common.js"))
    	def("top", loadFile("html/top.html"))
    	def("sourcelisting", loadFile("html/source.html"))
    	def("plaintext", loadFile("html/plaintext.html"))
    	// TODO: Rename "stacks" to "flamegraph" to seal moving off d3 flamegraph.
    	def("stacks", loadFile("html/stacks.html"))
    	def("stacks_css", loadCSS("html/stacks.css"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top