Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for Height (0.13 sec)

  1. src/cmd/link/internal/ld/stackcheck.go

    		}
    		height := growth
    		if target != 0 { // Don't walk into the leaf "edge"
    			height += sc.check(target)
    		}
    		if height > maxHeight {
    			maxHeight = height
    		}
    	}
    
    	if !ldr.IsNoSplit(sym) {
    		// Splittable functions start with a call to
    		// morestack, after which their height is 0. Account
    		// for the height of the call to morestack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    func (e *badPathError) Error() string {
    	return fmt.Sprintf("malformed tile path %q", e.path)
    }
    
    // A TileReader reads tiles from a go.sum database log.
    type TileReader interface {
    	// Height returns the height of the available tiles.
    	Height() int
    
    	// ReadTiles returns the data for each requested tile.
    	// If ReadTiles returns err == nil, it must also return
    	// a data record for each tile (len(data) == len(tiles))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    		return
    	}
    }
    
    // SetTileHeight sets the tile height for the Client.
    // Any call to SetTileHeight must happen before the first call to [Client.Lookup].
    // If SetTileHeight is not called, the Client defaults to tile height 8.
    // SetTileHeight can be called at most once,
    // and if so it must be called before the first call to Lookup.
    func (c *Client) SetTileHeight(height int) {
    	if atomic.LoadUint32(&c.didLookup) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        const swidth = svg.clientWidth || svg.parentNode.clientWidth;
        const sheight = svg.clientHeight || svg.parentNode.clientHeight;
    
        // Convert deltas from screen space to svg space.
        dx *= (svg.viewBox.baseVal.width / swidth);
        dy *= (svg.viewBox.baseVal.height / sheight);
    
        svg.viewBox.baseVal.x -= dx;
        svg.viewBox.baseVal.y -= dy;
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. src/cmd/trace/regions.go

    }
    td,
    th {
      padding-left: 8px;
      padding-right: 8px;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    .details tr:hover {
      background-color: #f2f2f2;
    }
    .details td {
      text-align: right;
      border: 1px solid #000;
    }
    .details td.id {
      text-align: left;
    }
    .stacked-bar-graph {
      width: 300px;
      height: 10px;
      color: #414042;
      white-space: nowrap;
      font-size: 5px;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

          box.y -= adjust;
          divs.push(drawBox(xscale, box));
        }
        divs.push(drawSep(-adjust, posTotal, negTotal));
    
        const h = (list.length > 0 ?  list[list.length-1].y : 0) + 4*ROW;
        chart.style.height = h+'px';
        chart.replaceChildren(...divs);
      }
    
      function drawBox(xscale, box) {
        const srcIndex = box.src;
        const src = stacks.Sources[srcIndex];
    
        function makeRect(cl, x, y, w, h) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/cmd/trace/goroutines.go

    }
    td,
    th {
      padding-left: 8px;
      padding-right: 8px;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    .details tr:hover {
      background-color: #f2f2f2;
    }
    .details td {
      text-align: right;
      border: 1px solid black;
    }
    .details td.id {
      text-align: left;
    }
    .stacked-bar-graph {
      width: 300px;
      height: 10px;
      color: #414042;
      white-space: nowrap;
      font-size: 5px;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/html.go

        var node = document.getElementById(id);
        if (node) {
        		node.width.baseVal.value *= 0.9;
        		node.height.baseVal.value *= 0.9;
        }
        return false;
    }
    
    function graphEnlarge(id) {
        var node = document.getElementById(id);
        if (node) {
        		node.width.baseVal.value *= 1.1;
        		node.height.baseVal.value *= 1.1;
        }
        return false;
    }
    
    function makeDraggable(event) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/term/terminal.go

    		down = y - t.cursorY
    	}
    
    	left := 0
    	if x < t.cursorX {
    		left = t.cursorX - x
    	}
    
    	right := 0
    	if x > t.cursorX {
    		right = x - t.cursorX
    	}
    
    	t.cursorX = x
    	t.cursorY = y
    	t.move(up, down, left, right)
    }
    
    func (t *Terminal) move(up, down, left, right int) {
    	m := []rune{}
    
    	// 1 unit up can be expressed as ^[[A or ^[A
    	// 5 units up can be expressed as ^[[5A
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  10. src/cmd/gofmt/gofmt.go

    // (if any) and will cause a nonzero final exit code.
    func (s *sequencer) Add(weight int64, f func(*reporter) error) {
    	if weight < 0 || weight > s.maxWeight {
    		weight = s.maxWeight
    	}
    	if err := s.sem.Acquire(context.TODO(), weight); err != nil {
    		// Change the task from "execute f" to "report err".
    		weight = 0
    		f = func(*reporter) error { return err }
    	}
    
    	r := &reporter{prev: s.prev}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top