Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fonction (0.11 sec)

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

      // E.g., 9s (45%) 🠆 10s (50%)
      function diffText(from, to) {
        return percentText(from) + " 🠆 " + percentText(to);
      }
    
      // percentText returns text that displays v in appropriate units alongside its
      // percentange.
      function percentText(v) {
        function percent(v, total) {
          return Number(((100.0 * v) / total).toFixed(1)) + '%';
        }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      }
    
      function handleWheel(e) {
        if (e.deltaY == 0) return;
        // Change scale factor by 1.1 or 1/1.1
        rescale(currentScale * (e.deltaY < 0 ? 1.1 : (1/1.1)),
                toSvg(e.offsetX, e.offsetY));
      }
    
      function setMode(m) {
        mode = m;
        touchid = null;
        touchid2 = null;
      }
    
      function panStart(x, y) {
        moved = false;
        panLastX = x;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

    	return svgRoot;
    }
    
    /**
     * Instance an SVGPoint object with given event coordinates.
     */
    function getEventPoint(evt) {
    	var p = root.createSVGPoint();
    
    	p.x = evt.clientX;
    	p.y = evt.clientY;
    
    	return p;
    }
    
    /**
     * Sets the current transform matrix of an element.
     */
    function setCTM(element, matrix) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top