Created
          April 20, 2019 15:18 
        
      - 
      
- 
        Save filipnavara/0777cdeeba07f469314e4c05185fa29d to your computer and use it in GitHub Desktop. 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" | |
| "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
| <!-- Generated by graphviz version 2.38.0 (20140413.2041) | |
| --> | |
| <!-- Title: unnamed Pages: 1 --> | |
| <svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
| <script type="text/ecmascript"><![CDATA[ | |
| /** | |
| * SVGPan library 1.2.2 | |
| * ====================== | |
| * | |
| * Given an unique existing element with id "viewport" (or when missing, the | |
| * first g-element), including the library into any SVG adds the following | |
| * capabilities: | |
| * | |
| * - Mouse panning | |
| * - Mouse zooming (using the wheel) | |
| * - Object dragging | |
| * | |
| * You can configure the behaviour of the pan/zoom/drag with the variables | |
| * listed in the CONFIGURATION section of this file. | |
| * | |
| * Known issues: | |
| * | |
| * - Zooming (while panning) on Safari has still some issues | |
| * | |
| * Releases: | |
| * | |
| * 1.2.2, Tue Aug 30 17:21:56 CEST 2011, Andrea Leofreddi | |
| * - Fixed viewBox on root tag (#7) | |
| * - Improved zoom speed (#2) | |
| * | |
| * 1.2.1, Mon Jul 4 00:33:18 CEST 2011, Andrea Leofreddi | |
| * - Fixed a regression with mouse wheel (now working on Firefox 5) | |
| * - Working with viewBox attribute (#4) | |
| * - Added "use strict;" and fixed resulting warnings (#5) | |
| * - Added configuration variables, dragging is disabled by default (#3) | |
| * | |
| * 1.2, Sat Mar 20 08:42:50 GMT 2010, Zeng Xiaohui | |
| * Fixed a bug with browser mouse handler interaction | |
| * | |
| * 1.1, Wed Feb 3 17:39:33 GMT 2010, Zeng Xiaohui | |
| * Updated the zoom code to support the mouse wheel on Safari/Chrome | |
| * | |
| * 1.0, Andrea Leofreddi | |
| * First release | |
| * | |
| * This code is licensed under the following BSD license: | |
| * | |
| * Copyright 2009-2017 Andrea Leofreddi <[email protected]>. All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without modification, are | |
| * permitted provided that the following conditions are met: | |
| * | |
| * 1. Redistributions of source code must retain the above copyright | |
| * notice, this list of conditions and the following disclaimer. | |
| * 2. Redistributions in binary form must reproduce the above copyright | |
| * notice, this list of conditions and the following disclaimer in the | |
| * documentation and/or other materials provided with the distribution. | |
| * 3. Neither the name of the copyright holder nor the names of its | |
| * contributors may be used to endorse or promote products derived from | |
| * this software without specific prior written permission. | |
| * | |
| * THIS SOFTWARE IS PROVIDED BY COPYRIGHT HOLDERS AND CONTRIBUTORS ''AS IS'' AND ANY EXPRESS | |
| * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY | |
| * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS OR | |
| * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
| * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
| * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | |
| * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
| * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | |
| * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| * | |
| * The views and conclusions contained in the software and documentation are those of the | |
| * authors and should not be interpreted as representing official policies, either expressed | |
| * or implied, of Andrea Leofreddi. | |
| */ | |
| "use strict"; | |
| /// CONFIGURATION | |
| /// ====> | |
| var enablePan = 1; // 1 or 0: enable or disable panning (default enabled) | |
| var enableZoom = 1; // 1 or 0: enable or disable zooming (default enabled) | |
| var enableDrag = 0; // 1 or 0: enable or disable dragging (default disabled) | |
| var zoomScale = 0.2; // Zoom sensitivity | |
| /// <==== | |
| /// END OF CONFIGURATION | |
| var root = document.documentElement; | |
| var state = 'none', svgRoot = null, stateTarget, stateOrigin, stateTf; | |
| setupHandlers(root); | |
| /** | |
| * Register handlers | |
| */ | |
| function setupHandlers(root){ | |
| setAttributes(root, { | |
| "onmouseup" : "handleMouseUp(evt)", | |
| "onmousedown" : "handleMouseDown(evt)", | |
| "onmousemove" : "handleMouseMove(evt)", | |
| //"onmouseout" : "handleMouseUp(evt)", // Decomment this to stop the pan functionality when dragging out of the SVG element | |
| }); | |
| if(navigator.userAgent.toLowerCase().indexOf('webkit') >= 0) | |
| window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari | |
| else | |
| window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Others | |
| } | |
| /** | |
| * Retrieves the root element for SVG manipulation. The element is then cached into the svgRoot global variable. | |
| */ | |
| function getRoot(root) { | |
| if(svgRoot == null) { | |
| var r = root.getElementById("viewport") ? root.getElementById("viewport") : root.documentElement, t = r; | |
| while(t != root) { | |
| if(t.getAttribute("viewBox")) { | |
| setCTM(r, t.getCTM()); | |
| t.removeAttribute("viewBox"); | |
| } | |
| t = t.parentNode; | |
| } | |
| svgRoot = r; | |
| } | |
| 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) { | |
| var s = "matrix(" + matrix.a + "," + matrix.b + "," + matrix.c + "," + matrix.d + "," + matrix.e + "," + matrix.f + ")"; | |
| element.setAttribute("transform", s); | |
| } | |
| /** | |
| * Dumps a matrix to a string (useful for debug). | |
| */ | |
| function dumpMatrix(matrix) { | |
| var s = "[ " + matrix.a + ", " + matrix.c + ", " + matrix.e + "\n " + matrix.b + ", " + matrix.d + ", " + matrix.f + "\n 0, 0, 1 ]"; | |
| return s; | |
| } | |
| /** | |
| * Sets attributes of an element. | |
| */ | |
| function setAttributes(element, attributes){ | |
| for (var i in attributes) | |
| element.setAttributeNS(null, i, attributes[i]); | |
| } | |
| /** | |
| * Handle mouse wheel event. | |
| */ | |
| function handleMouseWheel(evt) { | |
| if(!enableZoom) | |
| return; | |
| if(evt.preventDefault) | |
| evt.preventDefault(); | |
| evt.returnValue = false; | |
| var svgDoc = evt.target.ownerDocument; | |
| var delta; | |
| if(evt.wheelDelta) | |
| delta = evt.wheelDelta / 360; // Chrome/Safari | |
| else | |
| delta = evt.detail / -9; // Mozilla | |
| var z = Math.pow(1 + zoomScale, delta); | |
| var g = getRoot(svgDoc); | |
| var p = getEventPoint(evt); | |
| p = p.matrixTransform(g.getCTM().inverse()); | |
| // Compute new scale matrix in current mouse position | |
| var k = root.createSVGMatrix().translate(p.x, p.y).scale(z).translate(-p.x, -p.y); | |
| setCTM(g, g.getCTM().multiply(k)); | |
| if(typeof(stateTf) == "undefined") | |
| stateTf = g.getCTM().inverse(); | |
| stateTf = stateTf.multiply(k.inverse()); | |
| } | |
| /** | |
| * Handle mouse move event. | |
| */ | |
| function handleMouseMove(evt) { | |
| if(evt.preventDefault) | |
| evt.preventDefault(); | |
| evt.returnValue = false; | |
| var svgDoc = evt.target.ownerDocument; | |
| var g = getRoot(svgDoc); | |
| if(state == 'pan' && enablePan) { | |
| // Pan mode | |
| var p = getEventPoint(evt).matrixTransform(stateTf); | |
| setCTM(g, stateTf.inverse().translate(p.x - stateOrigin.x, p.y - stateOrigin.y)); | |
| } else if(state == 'drag' && enableDrag) { | |
| // Drag mode | |
| var p = getEventPoint(evt).matrixTransform(g.getCTM().inverse()); | |
| setCTM(stateTarget, root.createSVGMatrix().translate(p.x - stateOrigin.x, p.y - stateOrigin.y).multiply(g.getCTM().inverse()).multiply(stateTarget.getCTM())); | |
| stateOrigin = p; | |
| } | |
| } | |
| /** | |
| * Handle click event. | |
| */ | |
| function handleMouseDown(evt) { | |
| if(evt.preventDefault) | |
| evt.preventDefault(); | |
| evt.returnValue = false; | |
| var svgDoc = evt.target.ownerDocument; | |
| var g = getRoot(svgDoc); | |
| if( | |
| evt.target.tagName == "svg" | |
| || !enableDrag // Pan anyway when drag is disabled and the user clicked on an element | |
| ) { | |
| // Pan mode | |
| state = 'pan'; | |
| stateTf = g.getCTM().inverse(); | |
| stateOrigin = getEventPoint(evt).matrixTransform(stateTf); | |
| } else { | |
| // Drag mode | |
| state = 'drag'; | |
| stateTarget = evt.target; | |
| stateTf = g.getCTM().inverse(); | |
| stateOrigin = getEventPoint(evt).matrixTransform(stateTf); | |
| } | |
| } | |
| /** | |
| * Handle mouse button release event. | |
| */ | |
| function handleMouseUp(evt) { | |
| if(evt.preventDefault) | |
| evt.preventDefault(); | |
| evt.returnValue = false; | |
| var svgDoc = evt.target.ownerDocument; | |
| if(state == 'pan' || state == 'drag') { | |
| // Quit pan mode | |
| state = ''; | |
| } | |
| } | |
| ]]></script><g id="viewport" transform="scale(0.5,0.5) translate(0,0)"><g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 2593)"> | |
| <title>unnamed</title> | |
| <polygon fill="white" stroke="none" points="-4,4 -4,-2593 1889.5,-2593 1889.5,4 -4,4"/> | |
| <g id="clust1" class="cluster"><title>cluster_L</title> | |
| <polygon fill="none" stroke="black" points="461.5,-2449 461.5,-2581 867.5,-2581 867.5,-2449 461.5,-2449"/> | |
| </g> | |
| <!-- Type: cpu --> | |
| <g id="node1" class="node"><title>Type: cpu</title> | |
| <polygon fill="#f8f8f8" stroke="black" points="859,-2573 470,-2573 470,-2457 859,-2457 859,-2573"/> | |
| <text text-anchor="start" x="478" y="-2556.2" font-family="Times New Roman,serif" font-size="16.00">Type: cpu</text> | |
| <text text-anchor="start" x="478" y="-2538.2" font-family="Times New Roman,serif" font-size="16.00">Time: Apr 20, 2019 at 5:10pm (CEST)</text> | |
| <text text-anchor="start" x="478" y="-2520.2" font-family="Times New Roman,serif" font-size="16.00">Duration: 30s, Total samples = 5.06s (16.87%)</text> | |
| <text text-anchor="start" x="478" y="-2502.2" font-family="Times New Roman,serif" font-size="16.00">Showing nodes accounting for 3.75s, 74.11% of 5.06s total</text> | |
| <text text-anchor="start" x="478" y="-2484.2" font-family="Times New Roman,serif" font-size="16.00">Dropped 225 nodes (cum <= 0.03s)</text> | |
| <text text-anchor="start" x="478" y="-2466.2" font-family="Times New Roman,serif" font-size="16.00">Showing top 80 nodes out of 236</text> | |
| </g> | |
| <!-- N1 --> | |
| <g id="node1" class="node"><title>N1</title> | |
| <g id="a_node1"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next (4.01s)"> | |
| <polygon fill="#edd7d5" stroke="#b20c00" points="1157,-2537 1070,-2537 1070,-2493 1157,-2493 1157,-2537"/> | |
| <text text-anchor="middle" x="1113.5" y="-2526.6" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="1113.5" y="-2517.6" font-family="Times New Roman,serif" font-size="8.00">(*Context)</text> | |
| <text text-anchor="middle" x="1113.5" y="-2508.6" font-family="Times New Roman,serif" font-size="8.00">Next</text> | |
| <text text-anchor="middle" x="1113.5" y="-2499.6" font-family="Times New Roman,serif" font-size="8.00">0 of 4.01s (79.25%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7 --> | |
| <g id="node7" class="node"><title>N7</title> | |
| <g id="a_node7"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).run (4.04s)"> | |
| <polygon fill="#edd6d5" stroke="#b20b00" points="1085,-2406 998,-2406 998,-2362 1085,-2362 1085,-2406"/> | |
| <text text-anchor="middle" x="1041.5" y="-2395.6" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="1041.5" y="-2386.6" font-family="Times New Roman,serif" font-size="8.00">(*Context)</text> | |
| <text text-anchor="middle" x="1041.5" y="-2377.6" font-family="Times New Roman,serif" font-size="8.00">run</text> | |
| <text text-anchor="middle" x="1041.5" y="-2368.6" font-family="Times New Roman,serif" font-size="8.00">0 of 4.04s (79.84%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N7 --> | |
| <g id="edge3" class="edge"><title>N1->N7</title> | |
| <g id="a_edge3"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).run (4.01s)"> | |
| <path fill="none" stroke="#b20c00" stroke-width="4" d="M1098.75,-2492.86C1088.77,-2478.11 1075.61,-2457.79 1065.5,-2439 1061.46,-2431.49 1057.51,-2423.15 1054.02,-2415.33"/> | |
| <polygon fill="#b20c00" stroke="#b20c00" stroke-width="4" points="1057.21,-2413.9 1050.01,-2406.12 1050.79,-2416.69 1057.21,-2413.9"/> | |
| </a> | |
| </g> | |
| <g id="a_edge3-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).run (4.01s)"> | |
| <text text-anchor="middle" x="1082.5" y="-2427.8" font-family="Times New Roman,serif" font-size="14.00"> 4.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2 --> | |
| <g id="node2" class="node"><title>N2</title> | |
| <g id="a_node2"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).objectAtOffset (2.49s)"> | |
| <polygon fill="#edd9d5" stroke="#b22200" points="802.5,-1569 718.5,-1569 718.5,-1506 802.5,-1506 802.5,-1569"/> | |
| <text text-anchor="middle" x="760.5" y="-1557" font-family="Times New Roman,serif" font-size="10.00">packfile</text> | |
| <text text-anchor="middle" x="760.5" y="-1546" font-family="Times New Roman,serif" font-size="10.00">(*Packfile)</text> | |
| <text text-anchor="middle" x="760.5" y="-1535" font-family="Times New Roman,serif" font-size="10.00">objectAtOffset</text> | |
| <text text-anchor="middle" x="760.5" y="-1524" font-family="Times New Roman,serif" font-size="10.00">0.01s (0.2%)</text> | |
| <text text-anchor="middle" x="760.5" y="-1513" font-family="Times New Roman,serif" font-size="10.00">of 2.49s (49.21%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17 --> | |
| <g id="node17" class="node"><title>N17</title> | |
| <g id="a_node17"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).fillOFSDeltaObjectContentWithBuffer (1.31s)"> | |
| <polygon fill="#edddd5" stroke="#b23b00" points="778.5,-1440.5 628.5,-1440.5 628.5,-1396.5 778.5,-1396.5 778.5,-1440.5"/> | |
| <text text-anchor="middle" x="703.5" y="-1430.1" font-family="Times New Roman,serif" font-size="8.00">packfile</text> | |
| <text text-anchor="middle" x="703.5" y="-1421.1" font-family="Times New Roman,serif" font-size="8.00">(*Packfile)</text> | |
| <text text-anchor="middle" x="703.5" y="-1412.1" font-family="Times New Roman,serif" font-size="8.00">fillOFSDeltaObjectContentWithBuffer</text> | |
| <text text-anchor="middle" x="703.5" y="-1403.1" font-family="Times New Roman,serif" font-size="8.00">0 of 1.31s (25.89%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N17 --> | |
| <g id="edge18" class="edge"><title>N2->N17</title> | |
| <g id="a_edge18"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).objectAtOffset -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).fillOFSDeltaObjectContentWithBuffer (1.31s)"> | |
| <path fill="none" stroke="#b23b00" stroke-width="2" d="M720.178,-1505.87C713.829,-1499.08 708.161,-1491.38 704.5,-1483 700.162,-1473.07 699.007,-1461.41 699.23,-1450.81"/> | |
| <polygon fill="#b23b00" stroke="#b23b00" stroke-width="2" points="702.733,-1450.86 699.846,-1440.67 695.746,-1450.44 702.733,-1450.86"/> | |
| </a> | |
| </g> | |
| <g id="a_edge18-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).objectAtOffset -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).fillOFSDeltaObjectContentWithBuffer (1.31s)"> | |
| <text text-anchor="middle" x="721.5" y="-1471.8" font-family="Times New Roman,serif" font-size="14.00"> 1.31s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20 --> | |
| <g id="node20" class="node"><title>N20</title> | |
| <g id="a_node20"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).SeekObjectHeader (1.07s)"> | |
| <polygon fill="#edded5" stroke="#b24200" points="329,-1332 242,-1332 242,-1288 329,-1288 329,-1332"/> | |
| <text text-anchor="middle" x="285.5" y="-1321.6" font-family="Times New Roman,serif" font-size="8.00">packfile</text> | |
| <text text-anchor="middle" x="285.5" y="-1312.6" font-family="Times New Roman,serif" font-size="8.00">(*Scanner)</text> | |
| <text text-anchor="middle" x="285.5" y="-1303.6" font-family="Times New Roman,serif" font-size="8.00">SeekObjectHeader</text> | |
| <text text-anchor="middle" x="285.5" y="-1294.6" font-family="Times New Roman,serif" font-size="8.00">0 of 1.07s (21.15%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N20 --> | |
| <g id="edge21" class="edge"><title>N2->N20</title> | |
| <g id="a_edge21"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).objectAtOffset ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).SeekObjectHeader (1.07s)"> | |
| <path fill="none" stroke="#b24200" stroke-width="2" stroke-dasharray="1,5" d="M718.128,-1535.01C661.439,-1531.57 558.964,-1520.25 480.5,-1483 408.163,-1448.66 342.449,-1379.33 308.909,-1339.99"/> | |
| <polygon fill="#b24200" stroke="#b24200" stroke-width="2" points="311.366,-1337.47 302.25,-1332.07 306.009,-1341.97 311.366,-1337.47"/> | |
| </a> | |
| </g> | |
| <g id="a_edge21-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).objectAtOffset ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).SeekObjectHeader (1.07s)"> | |
| <text text-anchor="middle" x="440.5" y="-1414.8" font-family="Times New Roman,serif" font-size="14.00"> 1.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N23 --> | |
| <g id="node23" class="node"><title>N23</title> | |
| <g id="a_node23"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).NextObject (0.86s)"> | |
| <polygon fill="#ede1d8" stroke="#b2591a" points="723,-1332 636,-1332 636,-1288 723,-1288 723,-1332"/> | |
| <text text-anchor="middle" x="679.5" y="-1321.6" font-family="Times New Roman,serif" font-size="8.00">packfile</text> | |
| <text text-anchor="middle" x="679.5" y="-1312.6" font-family="Times New Roman,serif" font-size="8.00">(*Scanner)</text> | |
| <text text-anchor="middle" x="679.5" y="-1303.6" font-family="Times New Roman,serif" font-size="8.00">NextObject</text> | |
| <text text-anchor="middle" x="679.5" y="-1294.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.86s (17.00%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N23 --> | |
| <g id="edge48" class="edge"><title>N2->N23</title> | |
| <g id="a_edge48"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).objectAtOffset -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).NextObject (0.29s)"> | |
| <path fill="none" stroke="#b29c7f" d="M718.373,-1528.85C676.47,-1518.75 614.382,-1496.49 585.5,-1450 570.725,-1426.22 573.436,-1412.27 585.5,-1387 595.135,-1366.82 613.037,-1350.27 630.653,-1337.83"/> | |
| <polygon fill="#b29c7f" stroke="#b29c7f" points="632.897,-1340.54 639.24,-1332.05 628.99,-1334.73 632.897,-1340.54"/> | |
| </a> | |
| </g> | |
| <g id="a_edge48-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).objectAtOffset -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).NextObject (0.29s)"> | |
| <text text-anchor="middle" x="602.5" y="-1414.8" font-family="Times New Roman,serif" font-size="14.00"> 0.29s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N29 --> | |
| <g id="node29" class="node"><title>N29</title> | |
| <g id="a_node29"><a xlink:title="runtime.newobject (0.19s)"> | |
| <polygon fill="#edebe8" stroke="#b2a590" points="1196,-912 1105,-912 1105,-856 1196,-856 1196,-912"/> | |
| <text text-anchor="middle" x="1150.5" y="-899.2" font-family="Times New Roman,serif" font-size="11.00">runtime</text> | |
| <text text-anchor="middle" x="1150.5" y="-887.2" font-family="Times New Roman,serif" font-size="11.00">newobject</text> | |
| <text text-anchor="middle" x="1150.5" y="-875.2" font-family="Times New Roman,serif" font-size="11.00">0.03s (0.59%)</text> | |
| <text text-anchor="middle" x="1150.5" y="-863.2" font-family="Times New Roman,serif" font-size="11.00">of 0.19s (3.75%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N29 --> | |
| <g id="edge121" class="edge"><title>N2->N29</title> | |
| <g id="a_edge121"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).objectAtOffset -> runtime.newobject (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M718.253,-1529.98C683.107,-1522.95 633.091,-1509.06 596.5,-1483 581.513,-1472.33 580.519,-1466.04 571.5,-1450 552.527,-1416.26 546.739,-1407.02 539.5,-1369 538.253,-1362.45 537.568,-1360.38 539.5,-1354 542.286,-1344.8 547.587,-1344.78 551.5,-1336 585.101,-1260.58 556.354,-1227.59 597.5,-1156 627.961,-1103 742.915,-997.318 793.5,-963 823.637,-942.555 833.566,-940.287 868.5,-930 945.219,-907.409 1037.23,-895.42 1094.79,-889.643"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1095.16,-893.123 1104.78,-888.668 1094.48,-886.156 1095.16,-893.123"/> | |
| </a> | |
| </g> | |
| <g id="a_edge121-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).objectAtOffset -> runtime.newobject (0.01s)"> | |
| <text text-anchor="middle" x="599.5" y="-1207.3" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N39 --> | |
| <g id="node39" class="node"><title>N39</title> | |
| <g id="a_node39"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).fillRegularObjectContent (0.71s)"> | |
| <polygon fill="#ede3dc" stroke="#b26d35" points="912.5,-1450 796.5,-1450 796.5,-1387 912.5,-1387 912.5,-1450"/> | |
| <text text-anchor="middle" x="854.5" y="-1438" font-family="Times New Roman,serif" font-size="10.00">packfile</text> | |
| <text text-anchor="middle" x="854.5" y="-1427" font-family="Times New Roman,serif" font-size="10.00">(*Packfile)</text> | |
| <text text-anchor="middle" x="854.5" y="-1416" font-family="Times New Roman,serif" font-size="10.00">fillRegularObjectContent</text> | |
| <text text-anchor="middle" x="854.5" y="-1405" font-family="Times New Roman,serif" font-size="10.00">0.01s (0.2%)</text> | |
| <text text-anchor="middle" x="854.5" y="-1394" font-family="Times New Roman,serif" font-size="10.00">of 0.71s (14.03%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N39 --> | |
| <g id="edge30" class="edge"><title>N2->N39</title> | |
| <g id="a_edge30"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).objectAtOffset ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).fillRegularObjectContent (0.71s)"> | |
| <path fill="none" stroke="#b26d35" stroke-dasharray="1,5" d="M785.197,-1505.76C796.963,-1491.12 811.156,-1473.45 823.626,-1457.93"/> | |
| <polygon fill="#b26d35" stroke="#b26d35" points="826.433,-1460.02 829.968,-1450.04 820.976,-1455.64 826.433,-1460.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge30-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).objectAtOffset ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).fillRegularObjectContent (0.71s)"> | |
| <text text-anchor="middle" x="830.5" y="-1471.8" font-family="Times New Roman,serif" font-size="14.00"> 0.71s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N3 --> | |
| <g id="node3" class="node"><title>N3</title> | |
| <g id="a_node3"><a xlink:title="reflect.Value.call (4.03s)"> | |
| <polygon fill="#edd7d5" stroke="#b20b00" points="1013,-2212 926,-2212 926,-2176 1013,-2176 1013,-2212"/> | |
| <text text-anchor="middle" x="969.5" y="-2201.1" font-family="Times New Roman,serif" font-size="8.00">Value</text> | |
| <text text-anchor="middle" x="969.5" y="-2192.1" font-family="Times New Roman,serif" font-size="8.00">call</text> | |
| <text text-anchor="middle" x="969.5" y="-2183.1" font-family="Times New Roman,serif" font-size="8.00">0 of 4.03s (79.64%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N3->N1 --> | |
| <g id="edge6" class="edge"><title>N3->N1</title> | |
| <g id="a_edge6"><a xlink:title="reflect.Value.call ... code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next (3.98s)"> | |
| <path fill="none" stroke="#b20c00" stroke-width="4" stroke-dasharray="1,5" d="M966.937,-2212.04C962.141,-2249.5 955.09,-2340.88 988.5,-2406 1006.12,-2440.34 1039.76,-2468.42 1067.7,-2487.34"/> | |
| <polygon fill="#b20c00" stroke="#b20c00" stroke-width="4" points="1065.89,-2490.33 1076.17,-2492.91 1069.74,-2484.49 1065.89,-2490.33"/> | |
| </a> | |
| </g> | |
| <g id="a_edge6-label"><a xlink:title="reflect.Value.call ... code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next (3.98s)"> | |
| <text text-anchor="middle" x="985.5" y="-2332.8" font-family="Times New Roman,serif" font-size="14.00"> 3.98s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8 --> | |
| <g id="node8" class="node"><title>N8</title> | |
| <g id="a_node8"><a xlink:title="code.gitea.io/gitea/modules/git.getLastCommitForPaths (3.66s)"> | |
| <polygon fill="#edd7d5" stroke="#b21000" points="981,-2121 868,-2121 868,-2069 981,-2069 981,-2121"/> | |
| <text text-anchor="middle" x="924.5" y="-2109" font-family="Times New Roman,serif" font-size="10.00">git</text> | |
| <text text-anchor="middle" x="924.5" y="-2098" font-family="Times New Roman,serif" font-size="10.00">getLastCommitForPaths</text> | |
| <text text-anchor="middle" x="924.5" y="-2087" font-family="Times New Roman,serif" font-size="10.00">0.01s (0.2%)</text> | |
| <text text-anchor="middle" x="924.5" y="-2076" font-family="Times New Roman,serif" font-size="10.00">of 3.66s (72.33%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N3->N8 --> | |
| <g id="edge11" class="edge"><title>N3->N8</title> | |
| <g id="a_edge11"><a xlink:title="reflect.Value.call ... code.gitea.io/gitea/modules/git.getLastCommitForPaths (3.66s)"> | |
| <path fill="none" stroke="#b21000" stroke-width="4" stroke-dasharray="1,5" d="M961.455,-2175.66C955.635,-2163.11 947.577,-2145.74 940.471,-2130.43"/> | |
| <polygon fill="#b21000" stroke="#b21000" stroke-width="4" points="943.581,-2128.81 936.198,-2121.21 937.231,-2131.76 943.581,-2128.81"/> | |
| </a> | |
| </g> | |
| <g id="a_edge11-label"><a xlink:title="reflect.Value.call ... code.gitea.io/gitea/modules/git.getLastCommitForPaths (3.66s)"> | |
| <text text-anchor="middle" x="968.5" y="-2142.8" font-family="Times New Roman,serif" font-size="14.00"> 3.66s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N68 --> | |
| <g id="node68" class="node"><title>N68</title> | |
| <g id="a_node68"><a xlink:title="sort.quickSort (0.33s)"> | |
| <polygon fill="#ede9e5" stroke="#b29878" points="1079.5,-2121 999.5,-2121 999.5,-2069 1079.5,-2069 1079.5,-2121"/> | |
| <text text-anchor="middle" x="1039.5" y="-2109" font-family="Times New Roman,serif" font-size="10.00">sort</text> | |
| <text text-anchor="middle" x="1039.5" y="-2098" font-family="Times New Roman,serif" font-size="10.00">quickSort</text> | |
| <text text-anchor="middle" x="1039.5" y="-2087" font-family="Times New Roman,serif" font-size="10.00">0.01s (0.2%)</text> | |
| <text text-anchor="middle" x="1039.5" y="-2076" font-family="Times New Roman,serif" font-size="10.00">of 0.33s (6.52%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N3->N68 --> | |
| <g id="edge40" class="edge"><title>N3->N68</title> | |
| <g id="a_edge40"><a xlink:title="reflect.Value.call ... sort.quickSort (0.33s)"> | |
| <path fill="none" stroke="#b29878" stroke-dasharray="1,5" d="M982.015,-2175.66C991.239,-2162.88 1004.08,-2145.09 1015.28,-2129.56"/> | |
| <polygon fill="#b29878" stroke="#b29878" points="1018.29,-2131.37 1021.3,-2121.21 1012.61,-2127.28 1018.29,-2131.37"/> | |
| </a> | |
| </g> | |
| <g id="a_edge40-label"><a xlink:title="reflect.Value.call ... sort.quickSort (0.33s)"> | |
| <text text-anchor="middle" x="1024.5" y="-2142.8" font-family="Times New Roman,serif" font-size="14.00"> 0.33s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4 --> | |
| <g id="node4" class="node"><title>N4</title> | |
| <g id="a_node4"><a xlink:title="runtime.mallocgc (0.86s)"> | |
| <polygon fill="#ede1d8" stroke="#b2591a" points="1501,-805 1368,-805 1368,-725 1501,-725 1501,-805"/> | |
| <text text-anchor="middle" x="1434.5" y="-788.2" font-family="Times New Roman,serif" font-size="16.00">runtime</text> | |
| <text text-anchor="middle" x="1434.5" y="-770.2" font-family="Times New Roman,serif" font-size="16.00">mallocgc</text> | |
| <text text-anchor="middle" x="1434.5" y="-752.2" font-family="Times New Roman,serif" font-size="16.00">0.21s (4.15%)</text> | |
| <text text-anchor="middle" x="1434.5" y="-734.2" font-family="Times New Roman,serif" font-size="16.00">of 0.86s (17.00%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13 --> | |
| <g id="node13" class="node"><title>N13</title> | |
| <g id="a_node13"><a xlink:title="runtime.systemstack (1.10s)"> | |
| <polygon fill="#edded5" stroke="#b24100" points="1607.5,-658.5 1523.5,-658.5 1523.5,-606.5 1607.5,-606.5 1607.5,-658.5"/> | |
| <text text-anchor="middle" x="1565.5" y="-646.5" font-family="Times New Roman,serif" font-size="10.00">runtime</text> | |
| <text text-anchor="middle" x="1565.5" y="-635.5" font-family="Times New Roman,serif" font-size="10.00">systemstack</text> | |
| <text text-anchor="middle" x="1565.5" y="-624.5" font-family="Times New Roman,serif" font-size="10.00">0.01s (0.2%)</text> | |
| <text text-anchor="middle" x="1565.5" y="-613.5" font-family="Times New Roman,serif" font-size="10.00">of 1.10s (21.74%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N13 --> | |
| <g id="edge78" class="edge"><title>N4->N13</title> | |
| <g id="a_edge78"><a xlink:title="runtime.mallocgc ... runtime.systemstack (0.10s)"> | |
| <path fill="none" stroke="#b2ada0" stroke-dasharray="1,5" d="M1473.8,-724.846C1492.66,-706.058 1514.99,-683.814 1532.9,-665.98"/> | |
| <polygon fill="#b2ada0" stroke="#b2ada0" points="1535.66,-668.167 1540.27,-658.63 1530.72,-663.208 1535.66,-668.167"/> | |
| </a> | |
| </g> | |
| <g id="a_edge78-label"><a xlink:title="runtime.mallocgc ... runtime.systemstack (0.10s)"> | |
| <text text-anchor="middle" x="1521.5" y="-695.8" font-family="Times New Roman,serif" font-size="14.00"> 0.10s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44 --> | |
| <g id="node44" class="node"><title>N44</title> | |
| <g id="a_node44"><a xlink:title="runtime.memclrNoHeapPointers (0.14s)"> | |
| <polygon fill="#edece9" stroke="#b2aa99" points="1796.5,-229.5 1646.5,-229.5 1646.5,-176.5 1796.5,-176.5 1796.5,-229.5"/> | |
| <text text-anchor="middle" x="1721.5" y="-214.3" font-family="Times New Roman,serif" font-size="14.00">runtime</text> | |
| <text text-anchor="middle" x="1721.5" y="-199.3" font-family="Times New Roman,serif" font-size="14.00">memclrNoHeapPointers</text> | |
| <text text-anchor="middle" x="1721.5" y="-184.3" font-family="Times New Roman,serif" font-size="14.00">0.14s (2.77%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N44 --> | |
| <g id="edge142" class="edge"><title>N4->N44</title> | |
| <g id="a_edge142"><a xlink:title="runtime.mallocgc -> runtime.memclrNoHeapPointers (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M1501.12,-728.861C1504.92,-727.433 1508.73,-726.13 1512.5,-725 1636.7,-687.783 1789.5,-763.154 1789.5,-633.5 1789.5,-633.5 1789.5,-633.5 1789.5,-339 1789.5,-301.747 1768.59,-264.299 1749.96,-238.326"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1752.54,-235.92 1743.77,-229.975 1746.91,-240.091 1752.54,-235.92"/> | |
| </a> | |
| </g> | |
| <g id="a_edge142-label"><a xlink:title="runtime.mallocgc -> runtime.memclrNoHeapPointers (0.01s)"> | |
| <text text-anchor="middle" x="1806.5" y="-484.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N50 --> | |
| <g id="node50" class="node"><title>N50</title> | |
| <g id="a_node50"><a xlink:title="runtime.nextFreeFast (0.12s)"> | |
| <polygon fill="#edecea" stroke="#b2ab9d" points="1499,-659 1404,-659 1404,-606 1499,-606 1499,-659"/> | |
| <text text-anchor="middle" x="1451.5" y="-643.8" font-family="Times New Roman,serif" font-size="14.00">runtime</text> | |
| <text text-anchor="middle" x="1451.5" y="-628.8" font-family="Times New Roman,serif" font-size="14.00">nextFreeFast</text> | |
| <text text-anchor="middle" x="1451.5" y="-613.8" font-family="Times New Roman,serif" font-size="14.00">0.12s (2.37%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N50 --> | |
| <g id="edge72" class="edge"><title>N4->N50</title> | |
| <g id="a_edge72"><a xlink:title="runtime.mallocgc -> runtime.nextFreeFast (0.12s)"> | |
| <path fill="none" stroke="#b2ab9d" d="M1439.6,-724.846C1441.9,-707.188 1444.6,-686.479 1446.84,-669.247"/> | |
| <polygon fill="#b2ab9d" stroke="#b2ab9d" points="1450.35,-669.393 1448.17,-659.025 1443.41,-668.489 1450.35,-669.393"/> | |
| </a> | |
| </g> | |
| <g id="a_edge72-label"><a xlink:title="runtime.mallocgc -> runtime.nextFreeFast (0.12s)"> | |
| <text text-anchor="middle" x="1461.5" y="-695.8" font-family="Times New Roman,serif" font-size="14.00"> 0.12s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N61 --> | |
| <g id="node61" class="node"><title>N61</title> | |
| <g id="a_node61"><a xlink:title="runtime.heapBitsSetType (0.12s)"> | |
| <polygon fill="#edecea" stroke="#b2ab9d" points="1276.5,-666.5 1164.5,-666.5 1164.5,-598.5 1276.5,-598.5 1276.5,-666.5"/> | |
| <text text-anchor="middle" x="1220.5" y="-651.3" font-family="Times New Roman,serif" font-size="14.00">runtime</text> | |
| <text text-anchor="middle" x="1220.5" y="-636.3" font-family="Times New Roman,serif" font-size="14.00">heapBitsSetType</text> | |
| <text text-anchor="middle" x="1220.5" y="-621.3" font-family="Times New Roman,serif" font-size="14.00">0.10s (1.98%)</text> | |
| <text text-anchor="middle" x="1220.5" y="-606.3" font-family="Times New Roman,serif" font-size="14.00">of 0.12s (2.37%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N61 --> | |
| <g id="edge71" class="edge"><title>N4->N61</title> | |
| <g id="a_edge71"><a xlink:title="runtime.mallocgc -> runtime.heapBitsSetType (0.12s)"> | |
| <path fill="none" stroke="#b2ab9d" d="M1367.89,-742.683C1344.04,-733.532 1317.61,-721.557 1295.5,-707 1281.5,-697.785 1267.89,-685.711 1256.18,-674.02"/> | |
| <polygon fill="#b2ab9d" stroke="#b2ab9d" points="1258.65,-671.532 1249.16,-666.818 1253.64,-676.42 1258.65,-671.532"/> | |
| </a> | |
| </g> | |
| <g id="a_edge71-label"><a xlink:title="runtime.mallocgc -> runtime.heapBitsSetType (0.12s)"> | |
| <text text-anchor="middle" x="1312.5" y="-695.8" font-family="Times New Roman,serif" font-size="14.00"> 0.12s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N70 --> | |
| <g id="node70" class="node"><title>N70</title> | |
| <g id="a_node70"><a xlink:title="runtime.(*mcache).refill (0.24s)"> | |
| <polygon fill="#edeae7" stroke="#b2a188" points="1386,-666.5 1295,-666.5 1295,-598.5 1386,-598.5 1386,-666.5"/> | |
| <text text-anchor="middle" x="1340.5" y="-653.7" font-family="Times New Roman,serif" font-size="11.00">runtime</text> | |
| <text text-anchor="middle" x="1340.5" y="-641.7" font-family="Times New Roman,serif" font-size="11.00">(*mcache)</text> | |
| <text text-anchor="middle" x="1340.5" y="-629.7" font-family="Times New Roman,serif" font-size="11.00">refill</text> | |
| <text text-anchor="middle" x="1340.5" y="-617.7" font-family="Times New Roman,serif" font-size="11.00">0.02s (0.4%)</text> | |
| <text text-anchor="middle" x="1340.5" y="-605.7" font-family="Times New Roman,serif" font-size="11.00">of 0.24s (4.74%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N70 --> | |
| <g id="edge51" class="edge"><title>N4->N70</title> | |
| <g id="a_edge51"><a xlink:title="runtime.mallocgc ... runtime.(*mcache).refill (0.24s)"> | |
| <path fill="none" stroke="#b2a188" stroke-dasharray="1,5" d="M1367.71,-736.787C1356.02,-728.944 1345.4,-719.129 1338.5,-707 1333.38,-698.014 1331.71,-687.356 1331.8,-676.984"/> | |
| <polygon fill="#b2a188" stroke="#b2a188" points="1335.31,-676.975 1332.43,-666.78 1328.32,-676.547 1335.31,-676.975"/> | |
| </a> | |
| </g> | |
| <g id="a_edge51-label"><a xlink:title="runtime.mallocgc ... runtime.(*mcache).refill (0.24s)"> | |
| <text text-anchor="middle" x="1355.5" y="-695.8" font-family="Times New Roman,serif" font-size="14.00"> 0.24s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5 --> | |
| <g id="node5" class="node"><title>N5</title> | |
| <g id="a_node5"><a xlink:title="code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).fastInvoke (4.01s)"> | |
| <polygon fill="#edd7d5" stroke="#b20c00" points="1229,-2216 1142,-2216 1142,-2172 1229,-2172 1229,-2216"/> | |
| <text text-anchor="middle" x="1185.5" y="-2205.6" font-family="Times New Roman,serif" font-size="8.00">inject</text> | |
| <text text-anchor="middle" x="1185.5" y="-2196.6" font-family="Times New Roman,serif" font-size="8.00">(*injector)</text> | |
| <text text-anchor="middle" x="1185.5" y="-2187.6" font-family="Times New Roman,serif" font-size="8.00">fastInvoke</text> | |
| <text text-anchor="middle" x="1185.5" y="-2178.6" font-family="Times New Roman,serif" font-size="8.00">0 of 4.01s (79.25%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5->N1 --> | |
| <g id="edge5" class="edge"><title>N5->N1</title> | |
| <g id="a_edge5"><a xlink:title="code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).fastInvoke ... code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next (3.98s)"> | |
| <path fill="none" stroke="#b20c00" stroke-width="4" stroke-dasharray="1,5" d="M1180.67,-2216.38C1168.25,-2271.44 1135.1,-2418.3 1120.53,-2482.84"/> | |
| <polygon fill="#b20c00" stroke="#b20c00" stroke-width="4" points="1117.07,-2482.3 1118.28,-2492.82 1123.9,-2483.84 1117.07,-2482.3"/> | |
| </a> | |
| </g> | |
| <g id="a_edge5-label"><a xlink:title="code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).fastInvoke ... code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next (3.98s)"> | |
| <text text-anchor="middle" x="1171.5" y="-2332.8" font-family="Times New Roman,serif" font-size="14.00"> 3.98s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N9 --> | |
| <g id="node9" class="node"><title>N9</title> | |
| <g id="a_node9"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.LoggerInvoker.Invoke (3.95s)"> | |
| <polygon fill="#edd7d5" stroke="#b20c00" points="1229,-2117 1142,-2117 1142,-2073 1229,-2073 1229,-2117"/> | |
| <text text-anchor="middle" x="1185.5" y="-2106.6" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="1185.5" y="-2097.6" font-family="Times New Roman,serif" font-size="8.00">LoggerInvoker</text> | |
| <text text-anchor="middle" x="1185.5" y="-2088.6" font-family="Times New Roman,serif" font-size="8.00">Invoke</text> | |
| <text text-anchor="middle" x="1185.5" y="-2079.6" font-family="Times New Roman,serif" font-size="8.00">0 of 3.95s (78.06%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5->N9 --> | |
| <g id="edge8" class="edge"><title>N5->N9</title> | |
| <g id="a_edge8"><a xlink:title="code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).fastInvoke -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.LoggerInvoker.Invoke (3.90s)"> | |
| <path fill="none" stroke="#b20d00" stroke-width="4" d="M1185.5,-2171.95C1185.5,-2158.86 1185.5,-2141.79 1185.5,-2127.15"/> | |
| <polygon fill="#b20d00" stroke="#b20d00" stroke-width="4" points="1189,-2127.01 1185.5,-2117.01 1182,-2127.01 1189,-2127.01"/> | |
| </a> | |
| </g> | |
| <g id="a_edge8-label"><a xlink:title="code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).fastInvoke -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.LoggerInvoker.Invoke (3.90s)"> | |
| <text text-anchor="middle" x="1202.5" y="-2142.8" font-family="Times New Roman,serif" font-size="14.00"> 3.90s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6 --> | |
| <g id="node6" class="node"><title>N6</title> | |
| <g id="a_node6"><a xlink:title="code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).Invoke (4.05s)"> | |
| <polygon fill="#edd6d5" stroke="#b20b00" points="1085,-2311 998,-2311 998,-2267 1085,-2267 1085,-2311"/> | |
| <text text-anchor="middle" x="1041.5" y="-2300.6" font-family="Times New Roman,serif" font-size="8.00">inject</text> | |
| <text text-anchor="middle" x="1041.5" y="-2291.6" font-family="Times New Roman,serif" font-size="8.00">(*injector)</text> | |
| <text text-anchor="middle" x="1041.5" y="-2282.6" font-family="Times New Roman,serif" font-size="8.00">Invoke</text> | |
| <text text-anchor="middle" x="1041.5" y="-2273.6" font-family="Times New Roman,serif" font-size="8.00">0 of 4.05s (80.04%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6->N3 --> | |
| <g id="edge2" class="edge"><title>N6->N3</title> | |
| <g id="a_edge2"><a xlink:title="code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).Invoke ... reflect.Value.call (4.02s)"> | |
| <path fill="none" stroke="#b20b00" stroke-width="4" stroke-dasharray="1,5" d="M1025.16,-2266.9C1014.48,-2253.1 1000.47,-2235 989.171,-2220.41"/> | |
| <polygon fill="#b20b00" stroke="#b20b00" stroke-width="4" points="991.771,-2218.05 982.882,-2212.28 986.236,-2222.33 991.771,-2218.05"/> | |
| </a> | |
| </g> | |
| <g id="a_edge2-label"><a xlink:title="code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).Invoke ... reflect.Value.call (4.02s)"> | |
| <text text-anchor="middle" x="1027.5" y="-2237.8" font-family="Times New Roman,serif" font-size="14.00"> 4.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6->N5 --> | |
| <g id="edge4" class="edge"><title>N6->N5</title> | |
| <g id="a_edge4"><a xlink:title="code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).Invoke -> code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).fastInvoke (4s)"> | |
| <path fill="none" stroke="#b20c00" stroke-width="4" d="M1050.19,-2266.84C1055.7,-2255.71 1063.82,-2242.64 1074.5,-2234 1091.01,-2220.65 1112.41,-2211.71 1132.01,-2205.8"/> | |
| <polygon fill="#b20c00" stroke="#b20c00" stroke-width="4" points="1133.08,-2209.14 1141.76,-2203.06 1131.18,-2202.4 1133.08,-2209.14"/> | |
| </a> | |
| </g> | |
| <g id="a_edge4-label"><a xlink:title="code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).Invoke -> code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).fastInvoke (4s)"> | |
| <text text-anchor="middle" x="1083" y="-2237.8" font-family="Times New Roman,serif" font-size="14.00"> 4s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N6 --> | |
| <g id="edge1" class="edge"><title>N7->N6</title> | |
| <g id="a_edge1"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).run -> code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).Invoke (4.04s)"> | |
| <path fill="none" stroke="#b20b00" stroke-width="4" d="M1041.5,-2361.9C1041.5,-2349.89 1041.5,-2334.62 1041.5,-2321.24"/> | |
| <polygon fill="#b20b00" stroke="#b20b00" stroke-width="4" points="1045,-2321.02 1041.5,-2311.02 1038,-2321.02 1045,-2321.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge1-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).run -> code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).Invoke (4.04s)"> | |
| <text text-anchor="middle" x="1058.5" y="-2332.8" font-family="Times New Roman,serif" font-size="14.00"> 4.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18 --> | |
| <g id="node18" class="node"><title>N18</title> | |
| <g id="a_node18"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetCommit (1.30s)"> | |
| <polygon fill="#edddd5" stroke="#b23b00" points="948,-1911 861,-1911 861,-1875 948,-1875 948,-1911"/> | |
| <text text-anchor="middle" x="904.5" y="-1900.1" font-family="Times New Roman,serif" font-size="8.00">object</text> | |
| <text text-anchor="middle" x="904.5" y="-1891.1" font-family="Times New Roman,serif" font-size="8.00">GetCommit</text> | |
| <text text-anchor="middle" x="904.5" y="-1882.1" font-family="Times New Roman,serif" font-size="8.00">0 of 1.30s (25.69%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8->N18 --> | |
| <g id="edge19" class="edge"><title>N8->N18</title> | |
| <g id="a_edge19"><a xlink:title="code.gitea.io/gitea/modules/git.getLastCommitForPaths ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetCommit (1.28s)"> | |
| <path fill="none" stroke="#b23c00" stroke-width="2" stroke-dasharray="1,5" d="M893.381,-2068.91C879.242,-2055.49 864.02,-2037.68 856.5,-2018 843.455,-1983.86 864.908,-1944.52 883.175,-1919.47"/> | |
| <polygon fill="#b23c00" stroke="#b23c00" stroke-width="2" points="886.17,-1921.31 889.442,-1911.23 880.6,-1917.07 886.17,-1921.31"/> | |
| </a> | |
| </g> | |
| <g id="a_edge19-label"><a xlink:title="code.gitea.io/gitea/modules/git.getLastCommitForPaths ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetCommit (1.28s)"> | |
| <text text-anchor="middle" x="873.5" y="-1992.3" font-family="Times New Roman,serif" font-size="14.00"> 1.28s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26 --> | |
| <g id="node26" class="node"><title>N26</title> | |
| <g id="a_node26"><a xlink:title="code.gitea.io/gitea/modules/git.getFileHashes (2.31s)"> | |
| <polygon fill="#eddad5" stroke="#b22500" points="806,-2014 719,-2014 719,-1978 806,-1978 806,-2014"/> | |
| <text text-anchor="middle" x="762.5" y="-2003.1" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="762.5" y="-1994.1" font-family="Times New Roman,serif" font-size="8.00">getFileHashes</text> | |
| <text text-anchor="middle" x="762.5" y="-1985.1" font-family="Times New Roman,serif" font-size="8.00">0 of 2.31s (45.65%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8->N26 --> | |
| <g id="edge15" class="edge"><title>N8->N26</title> | |
| <g id="a_edge15"><a xlink:title="code.gitea.io/gitea/modules/git.getLastCommitForPaths -> code.gitea.io/gitea/modules/git.getFileHashes (2.31s)"> | |
| <path fill="none" stroke="#b22500" stroke-width="3" d="M867.716,-2084.5C843.209,-2078.19 815.427,-2067.84 794.5,-2051 785.429,-2043.7 778.355,-2033.09 773.192,-2023.2"/> | |
| <polygon fill="#b22500" stroke="#b22500" stroke-width="3" points="776.298,-2021.58 768.824,-2014.07 769.983,-2024.6 776.298,-2021.58"/> | |
| </a> | |
| </g> | |
| <g id="a_edge15-label"><a xlink:title="code.gitea.io/gitea/modules/git.getLastCommitForPaths -> code.gitea.io/gitea/modules/git.getFileHashes (2.31s)"> | |
| <text text-anchor="middle" x="811.5" y="-2039.8" font-family="Times New Roman,serif" font-size="14.00"> 2.31s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27 --> | |
| <g id="node27" class="node"><title>N27</title> | |
| <g id="a_node27"><a xlink:title="runtime.growslice (0.22s)"> | |
| <polygon fill="#edebe7" stroke="#b2a38b" points="1588.5,-1023 1508.5,-1023 1508.5,-971 1588.5,-971 1588.5,-1023"/> | |
| <text text-anchor="middle" x="1548.5" y="-1011" font-family="Times New Roman,serif" font-size="10.00">runtime</text> | |
| <text text-anchor="middle" x="1548.5" y="-1000" font-family="Times New Roman,serif" font-size="10.00">growslice</text> | |
| <text text-anchor="middle" x="1548.5" y="-989" font-family="Times New Roman,serif" font-size="10.00">0.01s (0.2%)</text> | |
| <text text-anchor="middle" x="1548.5" y="-978" font-family="Times New Roman,serif" font-size="10.00">of 0.22s (4.35%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8->N27 --> | |
| <g id="edge101" class="edge"><title>N8->N27</title> | |
| <g id="a_edge101"><a xlink:title="code.gitea.io/gitea/modules/git.getLastCommitForPaths -> runtime.growslice (0.02s)"> | |
| <path fill="none" stroke="#b2b1ae" d="M934.741,-2068.81C958.218,-2011.63 1015.29,-1875.94 1033.5,-1863 1064.28,-1841.12 1166.08,-1855 1202.5,-1845 1236.45,-1835.68 1246.99,-1833.97 1274.5,-1812 1304.23,-1788.26 1302.34,-1773.39 1326.5,-1744 1390.48,-1666.15 1423.86,-1659.92 1476.5,-1574 1507.46,-1523.47 1505.68,-1505.84 1525.5,-1450 1554.78,-1367.51 1575.5,-1347.03 1575.5,-1259.5 1575.5,-1259.5 1575.5,-1259.5 1575.5,-1109 1575.5,-1082.98 1568.41,-1054.47 1561.49,-1032.86"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="1564.74,-1031.52 1558.25,-1023.15 1558.1,-1033.74 1564.74,-1031.52"/> | |
| </a> | |
| </g> | |
| <g id="a_edge101-label"><a xlink:title="code.gitea.io/gitea/modules/git.getLastCommitForPaths -> runtime.growslice (0.02s)"> | |
| <text text-anchor="middle" x="1526.5" y="-1533.8" font-family="Times New Roman,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N77 --> | |
| <g id="node77" class="node"><title>N77</title> | |
| <g id="a_node77"><a xlink:title="runtime.mapassign (0.06s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="1349.5,-1136 1269.5,-1136 1269.5,-1084 1349.5,-1084 1349.5,-1136"/> | |
| <text text-anchor="middle" x="1309.5" y="-1124" font-family="Times New Roman,serif" font-size="10.00">runtime</text> | |
| <text text-anchor="middle" x="1309.5" y="-1113" font-family="Times New Roman,serif" font-size="10.00">mapassign</text> | |
| <text text-anchor="middle" x="1309.5" y="-1102" font-family="Times New Roman,serif" font-size="10.00">0.01s (0.2%)</text> | |
| <text text-anchor="middle" x="1309.5" y="-1091" font-family="Times New Roman,serif" font-size="10.00">of 0.06s (1.19%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8->N77 --> | |
| <g id="edge116" class="edge"><title>N8->N77</title> | |
| <g id="a_edge116"><a xlink:title="code.gitea.io/gitea/modules/git.getLastCommitForPaths -> runtime.mapassign (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M922.872,-2068.89C921.861,-2044.4 921.818,-2006.25 928.5,-1974 931.698,-1958.56 933.463,-1954.56 941.5,-1941 946.809,-1932.04 950.084,-1931.2 956.5,-1923 976.873,-1896.95 971.863,-1879.54 1000.5,-1863 1064,-1826.33 1093.98,-1865.1 1164.5,-1845 1197.19,-1835.68 1209.96,-1836.53 1233.5,-1812 1313.18,-1728.96 1312.36,-1686.73 1335.5,-1574 1352.28,-1492.27 1324.84,-1239.39 1313.79,-1146.07"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1317.25,-1145.52 1312.59,-1136.01 1310.3,-1146.35 1317.25,-1145.52"/> | |
| </a> | |
| </g> | |
| <g id="a_edge116-label"><a xlink:title="code.gitea.io/gitea/modules/git.getLastCommitForPaths -> runtime.mapassign (0.01s)"> | |
| <text text-anchor="middle" x="1349.5" y="-1595.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N9->N1 --> | |
| <g id="edge7" class="edge"><title>N9->N1</title> | |
| <g id="a_edge7"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.LoggerInvoker.Invoke ... code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next (3.93s)"> | |
| <path fill="none" stroke="#b20d00" stroke-width="4" stroke-dasharray="1,5" d="M1213.54,-2117.01C1233.76,-2134.76 1257.5,-2162.17 1257.5,-2193 1257.5,-2385 1257.5,-2385 1257.5,-2385 1257.5,-2435.71 1207.35,-2471.49 1166.24,-2492.31"/> | |
| <polygon fill="#b20d00" stroke="#b20d00" stroke-width="4" points="1164.55,-2489.24 1157.1,-2496.77 1167.62,-2495.53 1164.55,-2489.24"/> | |
| </a> | |
| </g> | |
| <g id="a_edge7-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.LoggerInvoker.Invoke ... code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next (3.93s)"> | |
| <text text-anchor="middle" x="1274.5" y="-2285.3" font-family="Times New Roman,serif" font-size="14.00"> 3.93s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N60 --> | |
| <g id="node60" class="node"><title>N60</title> | |
| <g id="a_node60"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.Logger.func1 (3.84s)"> | |
| <polygon fill="#edd7d5" stroke="#b20e00" points="1229,-2018 1142,-2018 1142,-1974 1229,-1974 1229,-2018"/> | |
| <text text-anchor="middle" x="1185.5" y="-2007.6" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="1185.5" y="-1998.6" font-family="Times New Roman,serif" font-size="8.00">Logger</text> | |
| <text text-anchor="middle" x="1185.5" y="-1989.6" font-family="Times New Roman,serif" font-size="8.00">func1</text> | |
| <text text-anchor="middle" x="1185.5" y="-1980.6" font-family="Times New Roman,serif" font-size="8.00">0 of 3.84s (75.89%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N9->N60 --> | |
| <g id="edge9" class="edge"><title>N9->N60</title> | |
| <g id="a_edge9"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.LoggerInvoker.Invoke -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.Logger.func1 (3.83s)"> | |
| <path fill="none" stroke="#b20e00" stroke-width="4" d="M1185.5,-2072.95C1185.5,-2059.86 1185.5,-2042.79 1185.5,-2028.15"/> | |
| <polygon fill="#b20e00" stroke="#b20e00" stroke-width="4" points="1189,-2028.01 1185.5,-2018.01 1182,-2028.01 1189,-2028.01"/> | |
| </a> | |
| </g> | |
| <g id="a_edge9-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.LoggerInvoker.Invoke -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.Logger.func1 (3.83s)"> | |
| <text text-anchor="middle" x="1202.5" y="-2039.8" font-family="Times New Roman,serif" font-size="14.00"> 3.83s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10 --> | |
| <g id="node10" class="node"><title>N10</title> | |
| <g id="a_node10"><a xlink:title="runtime.cgocall (1.04s)"> | |
| <polygon fill="#edded5" stroke="#b24300" points="189,-112 0,-112 0,7.10543e-015 189,7.10543e-015 189,-112"/> | |
| <text text-anchor="middle" x="94.5" y="-88.8" font-family="Times New Roman,serif" font-size="24.00">runtime</text> | |
| <text text-anchor="middle" x="94.5" y="-62.8" font-family="Times New Roman,serif" font-size="24.00">cgocall</text> | |
| <text text-anchor="middle" x="94.5" y="-36.8" font-family="Times New Roman,serif" font-size="24.00">1.02s (20.16%)</text> | |
| <text text-anchor="middle" x="94.5" y="-10.8" font-family="Times New Roman,serif" font-size="24.00">of 1.04s (20.55%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11 --> | |
| <g id="node11" class="node"><title>N11</title> | |
| <g id="a_node11"><a xlink:title="net/http.(*conn).serve (2.93s)"> | |
| <polygon fill="#edd9d5" stroke="#b21a00" points="964,-2537 877,-2537 877,-2493 964,-2493 964,-2537"/> | |
| <text text-anchor="middle" x="920.5" y="-2526.6" font-family="Times New Roman,serif" font-size="8.00">http</text> | |
| <text text-anchor="middle" x="920.5" y="-2517.6" font-family="Times New Roman,serif" font-size="8.00">(*conn)</text> | |
| <text text-anchor="middle" x="920.5" y="-2508.6" font-family="Times New Roman,serif" font-size="8.00">serve</text> | |
| <text text-anchor="middle" x="920.5" y="-2499.6" font-family="Times New Roman,serif" font-size="8.00">0 of 2.93s (57.91%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11->N7 --> | |
| <g id="edge12" class="edge"><title>N11->N7</title> | |
| <g id="a_edge12"><a xlink:title="net/http.(*conn).serve ... code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).run (2.93s)"> | |
| <path fill="none" stroke="#b21a00" stroke-width="3" stroke-dasharray="1,5" d="M940.21,-2492.99C960.513,-2471.34 992.289,-2437.46 1014.83,-2413.43"/> | |
| <polygon fill="#b21a00" stroke="#b21a00" stroke-width="3" points="1017.51,-2415.69 1021.8,-2406 1012.4,-2410.9 1017.51,-2415.69"/> | |
| </a> | |
| </g> | |
| <g id="a_edge12-label"><a xlink:title="net/http.(*conn).serve ... code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).run (2.93s)"> | |
| <text text-anchor="middle" x="1019.5" y="-2427.8" font-family="Times New Roman,serif" font-size="14.00"> 2.93s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12 --> | |
| <g id="node12" class="node"><title>N12</title> | |
| <g id="a_node12"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).EncodedObject (2.77s)"> | |
| <polygon fill="#edd9d5" stroke="#b21d00" points="803,-1809.5 718,-1809.5 718,-1746.5 803,-1746.5 803,-1809.5"/> | |
| <text text-anchor="middle" x="760.5" y="-1797.5" font-family="Times New Roman,serif" font-size="10.00">filesystem</text> | |
| <text text-anchor="middle" x="760.5" y="-1786.5" font-family="Times New Roman,serif" font-size="10.00">(*ObjectStorage)</text> | |
| <text text-anchor="middle" x="760.5" y="-1775.5" font-family="Times New Roman,serif" font-size="10.00">EncodedObject</text> | |
| <text text-anchor="middle" x="760.5" y="-1764.5" font-family="Times New Roman,serif" font-size="10.00">0.01s (0.2%)</text> | |
| <text text-anchor="middle" x="760.5" y="-1753.5" font-family="Times New Roman,serif" font-size="10.00">of 2.77s (54.74%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15 --> | |
| <g id="node15" class="node"><title>N15</title> | |
| <g id="a_node15"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).getFromPackfile (2.77s)"> | |
| <polygon fill="#edd9d5" stroke="#b21d00" points="804,-1681 717,-1681 717,-1637 804,-1637 804,-1681"/> | |
| <text text-anchor="middle" x="760.5" y="-1670.6" font-family="Times New Roman,serif" font-size="8.00">filesystem</text> | |
| <text text-anchor="middle" x="760.5" y="-1661.6" font-family="Times New Roman,serif" font-size="8.00">(*ObjectStorage)</text> | |
| <text text-anchor="middle" x="760.5" y="-1652.6" font-family="Times New Roman,serif" font-size="8.00">getFromPackfile</text> | |
| <text text-anchor="middle" x="760.5" y="-1643.6" font-family="Times New Roman,serif" font-size="8.00">0 of 2.77s (54.74%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12->N15 --> | |
| <g id="edge13" class="edge"><title>N12->N15</title> | |
| <g id="a_edge13"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).EncodedObject -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).getFromPackfile (2.76s)"> | |
| <path fill="none" stroke="#b21d00" stroke-width="3" d="M760.5,-1746.26C760.5,-1729.33 760.5,-1708.35 760.5,-1691.33"/> | |
| <polygon fill="#b21d00" stroke="#b21d00" stroke-width="3" points="764,-1691.31 760.5,-1681.31 757,-1691.31 764,-1691.31"/> | |
| </a> | |
| </g> | |
| <g id="a_edge13-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).EncodedObject -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).getFromPackfile (2.76s)"> | |
| <text text-anchor="middle" x="777.5" y="-1714.8" font-family="Times New Roman,serif" font-size="14.00"> 2.76s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N54 --> | |
| <g id="node54" class="node"><title>N54</title> | |
| <g id="a_node54"><a xlink:title="runtime.gcDrain (0.79s)"> | |
| <polygon fill="#ede2da" stroke="#b26227" points="1613.5,-516.5 1517.5,-516.5 1517.5,-460.5 1613.5,-460.5 1613.5,-516.5"/> | |
| <text text-anchor="middle" x="1565.5" y="-503.7" font-family="Times New Roman,serif" font-size="11.00">runtime</text> | |
| <text text-anchor="middle" x="1565.5" y="-491.7" font-family="Times New Roman,serif" font-size="11.00">gcDrain</text> | |
| <text text-anchor="middle" x="1565.5" y="-479.7" font-family="Times New Roman,serif" font-size="11.00">0.03s (0.59%)</text> | |
| <text text-anchor="middle" x="1565.5" y="-467.7" font-family="Times New Roman,serif" font-size="11.00">of 0.79s (15.61%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13->N54 --> | |
| <g id="edge25" class="edge"><title>N13->N54</title> | |
| <g id="a_edge25"><a xlink:title="runtime.systemstack ... runtime.gcDrain (0.79s)"> | |
| <path fill="none" stroke="#b26227" stroke-dasharray="1,5" d="M1565.5,-606.44C1565.5,-584.425 1565.5,-552.083 1565.5,-526.989"/> | |
| <polygon fill="#b26227" stroke="#b26227" points="1569,-526.729 1565.5,-516.729 1562,-526.729 1569,-526.729"/> | |
| </a> | |
| </g> | |
| <g id="a_edge25-label"><a xlink:title="runtime.systemstack ... runtime.gcDrain (0.79s)"> | |
| <text text-anchor="middle" x="1582.5" y="-561.8" font-family="Times New Roman,serif" font-size="14.00"> 0.79s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N57 --> | |
| <g id="node57" class="node"><title>N57</title> | |
| <g id="a_node57"><a xlink:title="runtime.(*mheap).alloc (0.17s)"> | |
| <polygon fill="#edebe9" stroke="#b2a794" points="1741,-362 1658,-362 1658,-318 1741,-318 1741,-362"/> | |
| <text text-anchor="middle" x="1699.5" y="-351.6" font-family="Times New Roman,serif" font-size="8.00">runtime</text> | |
| <text text-anchor="middle" x="1699.5" y="-342.6" font-family="Times New Roman,serif" font-size="8.00">(*mheap)</text> | |
| <text text-anchor="middle" x="1699.5" y="-333.6" font-family="Times New Roman,serif" font-size="8.00">alloc</text> | |
| <text text-anchor="middle" x="1699.5" y="-324.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.17s (3.36%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13->N57 --> | |
| <g id="edge146" class="edge"><title>N13->N57</title> | |
| <g id="a_edge146"><a xlink:title="runtime.systemstack ... runtime.(*mheap).alloc (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1607.75,-614.96C1638.73,-600.335 1678.57,-575.725 1697.5,-540 1725.78,-486.642 1716.38,-413.38 1707.56,-372.266"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1710.93,-371.272 1705.3,-362.295 1704.1,-372.822 1710.93,-371.272"/> | |
| </a> | |
| </g> | |
| <g id="a_edge146-label"><a xlink:title="runtime.systemstack ... runtime.(*mheap).alloc (0.01s)"> | |
| <text text-anchor="middle" x="1733.5" y="-484.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N14 --> | |
| <g id="node14" class="node"><title>N14</title> | |
| <g id="a_node14"><a xlink:title="runtime.scanobject (0.81s)"> | |
| <polygon fill="#ede2da" stroke="#b26023" points="1640,-386 1491,-386 1491,-294 1640,-294 1640,-386"/> | |
| <text text-anchor="middle" x="1565.5" y="-366.8" font-family="Times New Roman,serif" font-size="19.00">runtime</text> | |
| <text text-anchor="middle" x="1565.5" y="-345.8" font-family="Times New Roman,serif" font-size="19.00">scanobject</text> | |
| <text text-anchor="middle" x="1565.5" y="-324.8" font-family="Times New Roman,serif" font-size="19.00">0.41s (8.10%)</text> | |
| <text text-anchor="middle" x="1565.5" y="-303.8" font-family="Times New Roman,serif" font-size="19.00">of 0.81s (16.01%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N41 --> | |
| <g id="node41" class="node"><title>N41</title> | |
| <g id="a_node41"><a xlink:title="runtime.findObject (0.27s)"> | |
| <polygon fill="#edeae6" stroke="#b29e82" points="1628,-243 1503,-243 1503,-163 1628,-163 1628,-243"/> | |
| <text text-anchor="middle" x="1565.5" y="-226.2" font-family="Times New Roman,serif" font-size="16.00">runtime</text> | |
| <text text-anchor="middle" x="1565.5" y="-208.2" font-family="Times New Roman,serif" font-size="16.00">findObject</text> | |
| <text text-anchor="middle" x="1565.5" y="-190.2" font-family="Times New Roman,serif" font-size="16.00">0.23s (4.55%)</text> | |
| <text text-anchor="middle" x="1565.5" y="-172.2" font-family="Times New Roman,serif" font-size="16.00">of 0.27s (5.34%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N14->N41 --> | |
| <g id="edge56" class="edge"><title>N14->N41</title> | |
| <g id="a_edge56"><a xlink:title="runtime.scanobject -> runtime.findObject (0.21s)"> | |
| <path fill="none" stroke="#b2a48d" d="M1565.5,-293.671C1565.5,-280.737 1565.5,-266.58 1565.5,-253.415"/> | |
| <polygon fill="#b2a48d" stroke="#b2a48d" points="1569,-253.111 1565.5,-243.111 1562,-253.111 1569,-253.111"/> | |
| </a> | |
| </g> | |
| <g id="a_edge56-label"><a xlink:title="runtime.scanobject -> runtime.findObject (0.21s)"> | |
| <text text-anchor="middle" x="1582.5" y="-264.8" font-family="Times New Roman,serif" font-size="14.00"> 0.21s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N64 --> | |
| <g id="node64" class="node"><title>N64</title> | |
| <g id="a_node64"><a xlink:title="runtime.greyobject (0.14s)"> | |
| <polygon fill="#edece9" stroke="#b2aa99" points="1485,-235 1380,-235 1380,-171 1485,-171 1485,-235"/> | |
| <text text-anchor="middle" x="1432.5" y="-220.6" font-family="Times New Roman,serif" font-size="13.00">runtime</text> | |
| <text text-anchor="middle" x="1432.5" y="-206.6" font-family="Times New Roman,serif" font-size="13.00">greyobject</text> | |
| <text text-anchor="middle" x="1432.5" y="-192.6" font-family="Times New Roman,serif" font-size="13.00">0.09s (1.78%)</text> | |
| <text text-anchor="middle" x="1432.5" y="-178.6" font-family="Times New Roman,serif" font-size="13.00">of 0.14s (2.77%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N14->N64 --> | |
| <g id="edge66" class="edge"><title>N14->N64</title> | |
| <g id="a_edge66"><a xlink:title="runtime.scanobject -> runtime.greyobject (0.14s)"> | |
| <path fill="none" stroke="#b2aa99" d="M1520.84,-293.671C1504.48,-277.065 1486.14,-258.444 1470.42,-242.493"/> | |
| <polygon fill="#b2aa99" stroke="#b2aa99" points="1472.91,-240.035 1463.4,-235.368 1467.93,-244.948 1472.91,-240.035"/> | |
| </a> | |
| </g> | |
| <g id="a_edge66-label"><a xlink:title="runtime.scanobject -> runtime.greyobject (0.14s)"> | |
| <text text-anchor="middle" x="1520.5" y="-264.8" font-family="Times New Roman,serif" font-size="14.00"> 0.14s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N65 --> | |
| <g id="node65" class="node"><title>N65</title> | |
| <g id="a_node65"><a xlink:title="runtime.heapBitsForAddr (0.05s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a9" points="1361.5,-231 1269.5,-231 1269.5,-175 1361.5,-175 1361.5,-231"/> | |
| <text text-anchor="middle" x="1315.5" y="-218.2" font-family="Times New Roman,serif" font-size="11.00">runtime</text> | |
| <text text-anchor="middle" x="1315.5" y="-206.2" font-family="Times New Roman,serif" font-size="11.00">heapBitsForAddr</text> | |
| <text text-anchor="middle" x="1315.5" y="-194.2" font-family="Times New Roman,serif" font-size="11.00">0.03s (0.59%)</text> | |
| <text text-anchor="middle" x="1315.5" y="-182.2" font-family="Times New Roman,serif" font-size="11.00">of 0.05s (0.99%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N14->N65 --> | |
| <g id="edge112" class="edge"><title>N14->N65</title> | |
| <g id="a_edge112"><a xlink:title="runtime.scanobject -> runtime.heapBitsForAddr (0.02s)"> | |
| <path fill="none" stroke="#b2b1ae" d="M1490.88,-305.687C1453.93,-288.336 1409.08,-265.976 1370.5,-243 1367.14,-241.002 1363.73,-238.862 1360.33,-236.652"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="1362.2,-233.694 1351.94,-231.053 1358.31,-239.516 1362.2,-233.694"/> | |
| </a> | |
| </g> | |
| <g id="a_edge112-label"><a xlink:title="runtime.scanobject -> runtime.heapBitsForAddr (0.02s)"> | |
| <text text-anchor="middle" x="1445.5" y="-264.8" font-family="Times New Roman,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15->N2 --> | |
| <g id="edge14" class="edge"><title>N15->N2</title> | |
| <g id="a_edge14"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).getFromPackfile ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).objectAtOffset (2.49s)"> | |
| <path fill="none" stroke="#b22200" stroke-width="3" stroke-dasharray="1,5" d="M760.5,-1636.91C760.5,-1621.01 760.5,-1598.7 760.5,-1579.35"/> | |
| <polygon fill="#b22200" stroke="#b22200" stroke-width="3" points="764,-1579.25 760.5,-1569.25 757,-1579.25 764,-1579.25"/> | |
| </a> | |
| </g> | |
| <g id="a_edge14-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).getFromPackfile ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).objectAtOffset (2.49s)"> | |
| <text text-anchor="middle" x="777.5" y="-1595.8" font-family="Times New Roman,serif" font-size="14.00"> 2.49s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N67 --> | |
| <g id="node67" class="node"><title>N67</title> | |
| <g id="a_node67"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/idxfile.(*MemoryIndex).findHashIndex (0.10s)"> | |
| <polygon fill="#edecea" stroke="#b2ada0" points="503,-1574 408,-1574 408,-1501 503,-1501 503,-1574"/> | |
| <text text-anchor="middle" x="455.5" y="-1560.4" font-family="Times New Roman,serif" font-size="12.00">idxfile</text> | |
| <text text-anchor="middle" x="455.5" y="-1547.4" font-family="Times New Roman,serif" font-size="12.00">(*MemoryIndex)</text> | |
| <text text-anchor="middle" x="455.5" y="-1534.4" font-family="Times New Roman,serif" font-size="12.00">findHashIndex</text> | |
| <text text-anchor="middle" x="455.5" y="-1521.4" font-family="Times New Roman,serif" font-size="12.00">0.04s (0.79%)</text> | |
| <text text-anchor="middle" x="455.5" y="-1508.4" font-family="Times New Roman,serif" font-size="12.00">of 0.10s (1.98%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15->N67 --> | |
| <g id="edge77" class="edge"><title>N15->N67</title> | |
| <g id="a_edge77"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).getFromPackfile ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/idxfile.(*MemoryIndex).findHashIndex (0.10s)"> | |
| <path fill="none" stroke="#b2ada0" stroke-dasharray="1,5" d="M716.801,-1640.88C663.126,-1619.85 571.931,-1584.12 512.716,-1560.92"/> | |
| <polygon fill="#b2ada0" stroke="#b2ada0" points="513.723,-1557.55 503.135,-1557.16 511.169,-1564.07 513.723,-1557.55"/> | |
| </a> | |
| </g> | |
| <g id="a_edge77-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).getFromPackfile ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/idxfile.(*MemoryIndex).findHashIndex (0.10s)"> | |
| <text text-anchor="middle" x="643.5" y="-1595.8" font-family="Times New Roman,serif" font-size="14.00"> 0.10s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N75 --> | |
| <g id="node75" class="node"><title>N75</title> | |
| <g id="a_node75"><a xlink:title="runtime.gcWriteBarrier (0.05s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a9" points="1198,-783 1115,-783 1115,-747 1198,-747 1198,-783"/> | |
| <text text-anchor="middle" x="1156.5" y="-772.1" font-family="Times New Roman,serif" font-size="8.00">runtime</text> | |
| <text text-anchor="middle" x="1156.5" y="-763.1" font-family="Times New Roman,serif" font-size="8.00">gcWriteBarrier</text> | |
| <text text-anchor="middle" x="1156.5" y="-754.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.05s (0.99%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15->N75 --> | |
| <g id="edge128" class="edge"><title>N15->N75</title> | |
| <g id="a_edge128"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).getFromPackfile ... runtime.gcWriteBarrier (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M804.072,-1645.63C839.092,-1633.33 886.576,-1610.87 912.5,-1574 1012.26,-1432.1 919.045,-1352.67 976.5,-1189 997.591,-1128.92 1023.42,-1123.34 1046.5,-1064 1080.93,-975.484 1057.34,-942.97 1095.5,-856 1105.86,-832.382 1122.54,-808.336 1135.84,-791.048"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1138.63,-793.161 1142.06,-783.135 1133.13,-788.837 1138.63,-793.161"/> | |
| </a> | |
| </g> | |
| <g id="a_edge128-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).getFromPackfile ... runtime.gcWriteBarrier (0.01s)"> | |
| <text text-anchor="middle" x="993.5" y="-1207.3" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N76 --> | |
| <g id="node76" class="node"><title>N76</title> | |
| <g id="a_node76"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit.(*DotGit).objectPackPath (0.12s)"> | |
| <polygon fill="#edecea" stroke="#b2ab9d" points="904,-1559.5 821,-1559.5 821,-1515.5 904,-1515.5 904,-1559.5"/> | |
| <text text-anchor="middle" x="862.5" y="-1549.1" font-family="Times New Roman,serif" font-size="8.00">dotgit</text> | |
| <text text-anchor="middle" x="862.5" y="-1540.1" font-family="Times New Roman,serif" font-size="8.00">(*DotGit)</text> | |
| <text text-anchor="middle" x="862.5" y="-1531.1" font-family="Times New Roman,serif" font-size="8.00">objectPackPath</text> | |
| <text text-anchor="middle" x="862.5" y="-1522.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.12s (2.37%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15->N76 --> | |
| <g id="edge69" class="edge"><title>N15->N76</title> | |
| <g id="a_edge69"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).getFromPackfile ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit.(*DotGit).objectPackPath (0.12s)"> | |
| <path fill="none" stroke="#b2ab9d" stroke-dasharray="1,5" d="M778.501,-1636.91C794.932,-1617.66 819.371,-1589.03 837.658,-1567.6"/> | |
| <polygon fill="#b2ab9d" stroke="#b2ab9d" points="840.506,-1569.66 844.336,-1559.78 835.182,-1565.11 840.506,-1569.66"/> | |
| </a> | |
| </g> | |
| <g id="a_edge69-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).getFromPackfile ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit.(*DotGit).objectPackPath (0.12s)"> | |
| <text text-anchor="middle" x="832.5" y="-1595.8" font-family="Times New Roman,serif" font-size="14.00"> 0.12s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16 --> | |
| <g id="node16" class="node"><title>N16</title> | |
| <g id="a_node16"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetTree (2.17s)"> | |
| <polygon fill="#eddad5" stroke="#b22800" points="804,-1911 717,-1911 717,-1875 804,-1875 804,-1911"/> | |
| <text text-anchor="middle" x="760.5" y="-1900.1" font-family="Times New Roman,serif" font-size="8.00">object</text> | |
| <text text-anchor="middle" x="760.5" y="-1891.1" font-family="Times New Roman,serif" font-size="8.00">GetTree</text> | |
| <text text-anchor="middle" x="760.5" y="-1882.1" font-family="Times New Roman,serif" font-size="8.00">0 of 2.17s (42.89%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16->N12 --> | |
| <g id="edge17" class="edge"><title>N16->N12</title> | |
| <g id="a_edge17"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetTree -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).EncodedObject (1.79s)"> | |
| <path fill="none" stroke="#b22f00" stroke-width="2" d="M760.5,-1874.84C760.5,-1860.25 760.5,-1838.72 760.5,-1819.76"/> | |
| <polygon fill="#b22f00" stroke="#b22f00" stroke-width="2" points="764,-1819.55 760.5,-1809.55 757,-1819.55 764,-1819.55"/> | |
| </a> | |
| </g> | |
| <g id="a_edge17-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetTree -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).EncodedObject (1.79s)"> | |
| <text text-anchor="middle" x="777.5" y="-1833.8" font-family="Times New Roman,serif" font-size="14.00"> 1.79s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16->N29 --> | |
| <g id="edge127" class="edge"><title>N16->N29</title> | |
| <g id="a_edge127"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetTree ... runtime.newobject (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M716.709,-1883.31C603.5,-1858.3 300.766,-1774.66 168.5,-1574 122.707,-1504.53 115.087,-1442.03 177.5,-1387 214.46,-1354.41 352.646,-1387.04 398.5,-1369 408.512,-1365.06 407.924,-1358.9 417.5,-1354 443.419,-1340.73 459.568,-1356.24 480.5,-1336 540.917,-1277.57 485.319,-1221.09 538.5,-1156 548.825,-1143.36 558.488,-1149.04 570.5,-1138 592.641,-1117.64 590.416,-1106.03 608.5,-1082 649.865,-1027.03 648.676,-998.679 707.5,-963 739.774,-943.424 754.897,-957.538 790.5,-945 804.561,-940.048 806.257,-934.399 820.5,-930 846.108,-922.09 1007.72,-902.033 1094.9,-891.574"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1095.38,-895.041 1104.9,-890.378 1094.55,-888.091 1095.38,-895.041"/> | |
| </a> | |
| </g> | |
| <g id="a_edge127-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetTree ... runtime.newobject (0.01s)"> | |
| <text text-anchor="middle" x="434.5" y="-1357.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N40 --> | |
| <g id="node40" class="node"><title>N40</title> | |
| <g id="a_node40"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Tree).Decode (0.37s)"> | |
| <polygon fill="#ede9e4" stroke="#b29471" points="904,-1800 821,-1800 821,-1756 904,-1756 904,-1800"/> | |
| <text text-anchor="middle" x="862.5" y="-1789.6" font-family="Times New Roman,serif" font-size="8.00">object</text> | |
| <text text-anchor="middle" x="862.5" y="-1780.6" font-family="Times New Roman,serif" font-size="8.00">(*Tree)</text> | |
| <text text-anchor="middle" x="862.5" y="-1771.6" font-family="Times New Roman,serif" font-size="8.00">Decode</text> | |
| <text text-anchor="middle" x="862.5" y="-1762.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.37s (7.31%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16->N40 --> | |
| <g id="edge39" class="edge"><title>N16->N40</title> | |
| <g id="a_edge39"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetTree ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Tree).Decode (0.37s)"> | |
| <path fill="none" stroke="#b29471" stroke-dasharray="1,5" d="M775.992,-1874.84C792.073,-1857.02 817.507,-1828.85 836.642,-1807.65"/> | |
| <polygon fill="#b29471" stroke="#b29471" points="839.276,-1809.95 843.378,-1800.18 834.08,-1805.26 839.276,-1809.95"/> | |
| </a> | |
| </g> | |
| <g id="a_edge39-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetTree ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Tree).Decode (0.37s)"> | |
| <text text-anchor="middle" x="832.5" y="-1833.8" font-family="Times New Roman,serif" font-size="14.00"> 0.37s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17->N2 --> | |
| <g id="edge20" class="edge"><title>N17->N2</title> | |
| <g id="a_edge20"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).fillOFSDeltaObjectContentWithBuffer -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).objectAtOffset (1.16s)"> | |
| <path fill="none" stroke="#b23f00" stroke-width="2" d="M721.072,-1440.77C727.196,-1448.93 733.723,-1458.55 738.5,-1468 742.932,-1476.77 746.718,-1486.62 749.836,-1496.06"/> | |
| <polygon fill="#b23f00" stroke="#b23f00" stroke-width="2" points="746.519,-1497.18 752.843,-1505.68 753.201,-1495.09 746.519,-1497.18"/> | |
| </a> | |
| </g> | |
| <g id="a_edge20-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).fillOFSDeltaObjectContentWithBuffer -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).objectAtOffset (1.16s)"> | |
| <text text-anchor="middle" x="762.5" y="-1471.8" font-family="Times New Roman,serif" font-size="14.00"> 1.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43 --> | |
| <g id="node43" class="node"><title>N43</title> | |
| <g id="a_node43"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.ApplyDelta (0.21s)"> | |
| <polygon fill="#edebe8" stroke="#b2a48d" points="471.5,-1336 391.5,-1336 391.5,-1284 471.5,-1284 471.5,-1336"/> | |
| <text text-anchor="middle" x="431.5" y="-1324" font-family="Times New Roman,serif" font-size="10.00">packfile</text> | |
| <text text-anchor="middle" x="431.5" y="-1313" font-family="Times New Roman,serif" font-size="10.00">ApplyDelta</text> | |
| <text text-anchor="middle" x="431.5" y="-1302" font-family="Times New Roman,serif" font-size="10.00">0.01s (0.2%)</text> | |
| <text text-anchor="middle" x="431.5" y="-1291" font-family="Times New Roman,serif" font-size="10.00">of 0.21s (4.15%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17->N43 --> | |
| <g id="edge54" class="edge"><title>N17->N43</title> | |
| <g id="a_edge54"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).fillOFSDeltaObjectContentWithBuffer -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.ApplyDelta (0.21s)"> | |
| <path fill="none" stroke="#b2a48d" d="M649.762,-1396.46C600.804,-1377.29 529.066,-1349.2 481.361,-1330.52"/> | |
| <polygon fill="#b2a48d" stroke="#b2a48d" points="482.446,-1327.19 471.859,-1326.8 479.894,-1333.71 482.446,-1327.19"/> | |
| </a> | |
| </g> | |
| <g id="a_edge54-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).fillOFSDeltaObjectContentWithBuffer -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.ApplyDelta (0.21s)"> | |
| <text text-anchor="middle" x="593.5" y="-1357.8" font-family="Times New Roman,serif" font-size="14.00"> 0.21s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N46 --> | |
| <g id="node46" class="node"><title>N46</title> | |
| <g id="a_node46"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).cachePut (0.29s)"> | |
| <polygon fill="#edeae6" stroke="#b29c7f" points="896,-1332 813,-1332 813,-1288 896,-1288 896,-1332"/> | |
| <text text-anchor="middle" x="854.5" y="-1321.6" font-family="Times New Roman,serif" font-size="8.00">packfile</text> | |
| <text text-anchor="middle" x="854.5" y="-1312.6" font-family="Times New Roman,serif" font-size="8.00">(*Packfile)</text> | |
| <text text-anchor="middle" x="854.5" y="-1303.6" font-family="Times New Roman,serif" font-size="8.00">cachePut</text> | |
| <text text-anchor="middle" x="854.5" y="-1294.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.29s (5.73%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17->N46 --> | |
| <g id="edge63" class="edge"><title>N17->N46</title> | |
| <g id="a_edge63"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).fillOFSDeltaObjectContentWithBuffer -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).cachePut (0.16s)"> | |
| <path fill="none" stroke="#b2a896" d="M708.167,-1396.35C712.21,-1382.6 719.376,-1365.2 731.5,-1354 751.141,-1335.85 778.87,-1325.3 803.03,-1319.19"/> | |
| <polygon fill="#b2a896" stroke="#b2a896" points="803.841,-1322.59 812.782,-1316.91 802.248,-1315.78 803.841,-1322.59"/> | |
| </a> | |
| </g> | |
| <g id="a_edge63-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).fillOFSDeltaObjectContentWithBuffer -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).cachePut (0.16s)"> | |
| <text text-anchor="middle" x="748.5" y="-1357.8" font-family="Times New Roman,serif" font-size="14.00"> 0.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18->N12 --> | |
| <g id="edge22" class="edge"><title>N18->N12</title> | |
| <g id="a_edge22"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetCommit -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).EncodedObject (0.98s)"> | |
| <path fill="none" stroke="#b24805" d="M893.738,-1874.82C884.468,-1861.17 870,-1842.38 853.5,-1830 839.286,-1819.34 831.512,-1820.86 812.113,-1811.85"/> | |
| <polygon fill="#b24805" stroke="#b24805" points="813.54,-1808.65 803.035,-1807.27 810.388,-1814.9 813.54,-1808.65"/> | |
| </a> | |
| </g> | |
| <g id="a_edge22-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetCommit -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem.(*ObjectStorage).EncodedObject (0.98s)"> | |
| <text text-anchor="middle" x="887.5" y="-1833.8" font-family="Times New Roman,serif" font-size="14.00"> 0.98s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25 --> | |
| <g id="node25" class="node"><title>N25</title> | |
| <g id="a_node25"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Commit).Decode (0.30s)"> | |
| <polygon fill="#edeae6" stroke="#b29b7d" points="1248,-1693 1157,-1693 1157,-1625 1248,-1625 1248,-1693"/> | |
| <text text-anchor="middle" x="1202.5" y="-1680.2" font-family="Times New Roman,serif" font-size="11.00">object</text> | |
| <text text-anchor="middle" x="1202.5" y="-1668.2" font-family="Times New Roman,serif" font-size="11.00">(*Commit)</text> | |
| <text text-anchor="middle" x="1202.5" y="-1656.2" font-family="Times New Roman,serif" font-size="11.00">Decode</text> | |
| <text text-anchor="middle" x="1202.5" y="-1644.2" font-family="Times New Roman,serif" font-size="11.00">0.02s (0.4%)</text> | |
| <text text-anchor="middle" x="1202.5" y="-1632.2" font-family="Times New Roman,serif" font-size="11.00">of 0.30s (5.93%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18->N25 --> | |
| <g id="edge46" class="edge"><title>N18->N25</title> | |
| <g id="a_edge46"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetCommit ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Commit).Decode (0.30s)"> | |
| <path fill="none" stroke="#b29b7d" stroke-dasharray="1,5" d="M933.459,-1874.94C942.485,-1870.34 952.659,-1865.85 962.5,-1863 1001.12,-1851.83 1111.2,-1870.23 1142.5,-1845 1184.88,-1810.84 1197.68,-1746.34 1201.34,-1703.26"/> | |
| <polygon fill="#b29b7d" stroke="#b29b7d" points="1204.85,-1703.29 1202.08,-1693.07 1197.87,-1702.79 1204.85,-1703.29"/> | |
| </a> | |
| </g> | |
| <g id="a_edge46-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetCommit ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Commit).Decode (0.30s)"> | |
| <text text-anchor="middle" x="1212.5" y="-1774.3" font-family="Times New Roman,serif" font-size="14.00"> 0.30s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18->N29 --> | |
| <g id="edge105" class="edge"><title>N18->N29</title> | |
| <g id="a_edge105"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetCommit ... runtime.newobject (0.02s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M937.36,-1874.87C945.502,-1870.82 954.257,-1866.63 962.5,-1863 982.972,-1853.99 991.883,-1858.78 1009.5,-1845 1068.21,-1799.07 1076.41,-1748.35 1114.5,-1607 1191.21,-1322.37 1154.75,-1239.79 1155.5,-945 1155.52,-938.333 1155.87,-936.656 1155.5,-930 1155.36,-927.459 1155.17,-924.841 1154.96,-922.206"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="1158.43,-921.713 1154,-912.087 1151.46,-922.372 1158.43,-921.713"/> | |
| </a> | |
| </g> | |
| <g id="a_edge105-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetCommit ... runtime.newobject (0.02s)"> | |
| <text text-anchor="middle" x="1178.5" y="-1357.8" font-family="Times New Roman,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19 --> | |
| <g id="node19" class="node"><title>N19</title> | |
| <g id="a_node19"><a xlink:title="runtime.makeslice (0.32s)"> | |
| <polygon fill="#ede9e5" stroke="#b2997a" points="1474.5,-910 1394.5,-910 1394.5,-858 1474.5,-858 1474.5,-910"/> | |
| <text text-anchor="middle" x="1434.5" y="-898" font-family="Times New Roman,serif" font-size="10.00">runtime</text> | |
| <text text-anchor="middle" x="1434.5" y="-887" font-family="Times New Roman,serif" font-size="10.00">makeslice</text> | |
| <text text-anchor="middle" x="1434.5" y="-876" font-family="Times New Roman,serif" font-size="10.00">0.01s (0.2%)</text> | |
| <text text-anchor="middle" x="1434.5" y="-865" font-family="Times New Roman,serif" font-size="10.00">of 0.32s (6.32%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19->N4 --> | |
| <g id="edge44" class="edge"><title>N19->N4</title> | |
| <g id="a_edge44"><a xlink:title="runtime.makeslice -> runtime.mallocgc (0.31s)"> | |
| <path fill="none" stroke="#b29a7b" d="M1434.5,-857.901C1434.5,-845.581 1434.5,-830.291 1434.5,-815.74"/> | |
| <polygon fill="#b29a7b" stroke="#b29a7b" points="1438,-815.328 1434.5,-805.328 1431,-815.328 1438,-815.328"/> | |
| </a> | |
| </g> | |
| <g id="a_edge44-label"><a xlink:title="runtime.makeslice -> runtime.mallocgc (0.31s)"> | |
| <text text-anchor="middle" x="1451.5" y="-826.8" font-family="Times New Roman,serif" font-size="14.00"> 0.31s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N31 --> | |
| <g id="node31" class="node"><title>N31</title> | |
| <g id="a_node31"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).nextObjectHeader (0.76s)"> | |
| <polygon fill="#ede3db" stroke="#b2662c" points="249,-1233 162,-1233 162,-1189 249,-1189 249,-1233"/> | |
| <text text-anchor="middle" x="205.5" y="-1222.6" font-family="Times New Roman,serif" font-size="8.00">packfile</text> | |
| <text text-anchor="middle" x="205.5" y="-1213.6" font-family="Times New Roman,serif" font-size="8.00">(*Scanner)</text> | |
| <text text-anchor="middle" x="205.5" y="-1204.6" font-family="Times New Roman,serif" font-size="8.00">nextObjectHeader</text> | |
| <text text-anchor="middle" x="205.5" y="-1195.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.76s (15.02%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20->N31 --> | |
| <g id="edge27" class="edge"><title>N20->N31</title> | |
| <g id="a_edge27"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).SeekObjectHeader -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).nextObjectHeader (0.76s)"> | |
| <path fill="none" stroke="#b2662c" d="M258.69,-1287.58C251.374,-1281.07 243.749,-1273.61 237.5,-1266 231.52,-1258.72 225.929,-1250.2 221.147,-1242.1"/> | |
| <polygon fill="#b2662c" stroke="#b2662c" points="224.093,-1240.2 216.113,-1233.23 218.005,-1243.66 224.093,-1240.2"/> | |
| </a> | |
| </g> | |
| <g id="a_edge27-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).SeekObjectHeader -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).nextObjectHeader (0.76s)"> | |
| <text text-anchor="middle" x="254.5" y="-1254.8" font-family="Times New Roman,serif" font-size="14.00"> 0.76s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36 --> | |
| <g id="node36" class="node"><title>N36</title> | |
| <g id="a_node36"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*bufferedSeeker).Seek (0.54s)"> | |
| <polygon fill="#ede6e0" stroke="#b28153" points="249,-1132 162,-1132 162,-1088 249,-1088 249,-1132"/> | |
| <text text-anchor="middle" x="205.5" y="-1121.6" font-family="Times New Roman,serif" font-size="8.00">packfile</text> | |
| <text text-anchor="middle" x="205.5" y="-1112.6" font-family="Times New Roman,serif" font-size="8.00">(*bufferedSeeker)</text> | |
| <text text-anchor="middle" x="205.5" y="-1103.6" font-family="Times New Roman,serif" font-size="8.00">Seek</text> | |
| <text text-anchor="middle" x="205.5" y="-1094.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.54s (10.67%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20->N36 --> | |
| <g id="edge43" class="edge"><title>N20->N36</title> | |
| <g id="a_edge43"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).SeekObjectHeader -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*bufferedSeeker).Seek (0.31s)"> | |
| <path fill="none" stroke="#b29a7b" d="M283.49,-1287.98C279.739,-1257.04 269.54,-1198.35 243.5,-1156 240.196,-1150.63 236.278,-1145.23 232.234,-1140.13"/> | |
| <polygon fill="#b29a7b" stroke="#b29a7b" points="234.918,-1137.89 225.844,-1132.42 229.527,-1142.35 234.918,-1137.89"/> | |
| </a> | |
| </g> | |
| <g id="a_edge43-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).SeekObjectHeader -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*bufferedSeeker).Seek (0.31s)"> | |
| <text text-anchor="middle" x="290.5" y="-1207.3" font-family="Times New Roman,serif" font-size="14.00"> 0.31s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21 --> | |
| <g id="node21" class="node"><title>N21</title> | |
| <g id="a_node21"><a xlink:title="io.copyBuffer (0.77s)"> | |
| <polygon fill="#ede2db" stroke="#b2652a" points="528,-1128 441,-1128 441,-1092 528,-1092 528,-1128"/> | |
| <text text-anchor="middle" x="484.5" y="-1117.1" font-family="Times New Roman,serif" font-size="8.00">io</text> | |
| <text text-anchor="middle" x="484.5" y="-1108.1" font-family="Times New Roman,serif" font-size="8.00">copyBuffer</text> | |
| <text text-anchor="middle" x="484.5" y="-1099.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.77s (15.22%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21->N27 --> | |
| <g id="edge108" class="edge"><title>N21->N27</title> | |
| <g id="a_edge108"><a xlink:title="io.copyBuffer ... runtime.growslice (0.02s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M528.374,-1102.18C569.805,-1095.98 633.729,-1087.07 689.5,-1082 848.159,-1067.59 888.841,-1078.42 1047.5,-1064 1213.23,-1048.94 1408.43,-1019.96 1498.43,-1005.96"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="1499.02,-1009.41 1508.36,-1004.41 1497.94,-1002.49 1499.02,-1009.41"/> | |
| </a> | |
| </g> | |
| <g id="a_edge108-label"><a xlink:title="io.copyBuffer ... runtime.growslice (0.02s)"> | |
| <text text-anchor="middle" x="1202.5" y="-1052.8" font-family="Times New Roman,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N28 --> | |
| <g id="node28" class="node"><title>N28</title> | |
| <g id="a_node28"><a xlink:title="bytes.(*Buffer).ReadFrom (0.31s)"> | |
| <polygon fill="#edeae5" stroke="#b29a7b" points="448,-1031 357,-1031 357,-963 448,-963 448,-1031"/> | |
| <text text-anchor="middle" x="402.5" y="-1018.2" font-family="Times New Roman,serif" font-size="11.00">bytes</text> | |
| <text text-anchor="middle" x="402.5" y="-1006.2" font-family="Times New Roman,serif" font-size="11.00">(*Buffer)</text> | |
| <text text-anchor="middle" x="402.5" y="-994.2" font-family="Times New Roman,serif" font-size="11.00">ReadFrom</text> | |
| <text text-anchor="middle" x="402.5" y="-982.2" font-family="Times New Roman,serif" font-size="11.00">0.02s (0.4%)</text> | |
| <text text-anchor="middle" x="402.5" y="-970.2" font-family="Times New Roman,serif" font-size="11.00">of 0.31s (6.13%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21->N28 --> | |
| <g id="edge55" class="edge"><title>N21->N28</title> | |
| <g id="a_edge55"><a xlink:title="io.copyBuffer -> bytes.(*Buffer).ReadFrom (0.21s)"> | |
| <path fill="none" stroke="#b2a48d" d="M463.34,-1092C454.36,-1084.1 444.208,-1074.21 436.5,-1064 431.027,-1056.75 425.99,-1048.49 421.565,-1040.33"/> | |
| <polygon fill="#b2a48d" stroke="#b2a48d" points="424.547,-1038.47 416.837,-1031.21 418.332,-1041.7 424.547,-1038.47"/> | |
| </a> | |
| </g> | |
| <g id="a_edge55-label"><a xlink:title="io.copyBuffer -> bytes.(*Buffer).ReadFrom (0.21s)"> | |
| <text text-anchor="middle" x="453.5" y="-1052.8" font-family="Times New Roman,serif" font-size="14.00"> 0.21s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N30 --> | |
| <g id="node30" class="node"><title>N30</title> | |
| <g id="a_node30"><a xlink:title="compress/zlib.(*reader).Read (0.73s)"> | |
| <polygon fill="#ede3dc" stroke="#b26a31" points="528,-906 441,-906 441,-862 528,-862 528,-906"/> | |
| <text text-anchor="middle" x="484.5" y="-895.6" font-family="Times New Roman,serif" font-size="8.00">zlib</text> | |
| <text text-anchor="middle" x="484.5" y="-886.6" font-family="Times New Roman,serif" font-size="8.00">(*reader)</text> | |
| <text text-anchor="middle" x="484.5" y="-877.6" font-family="Times New Roman,serif" font-size="8.00">Read</text> | |
| <text text-anchor="middle" x="484.5" y="-868.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.73s (14.43%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21->N30 --> | |
| <g id="edge35" class="edge"><title>N21->N30</title> | |
| <g id="a_edge35"><a xlink:title="io.copyBuffer -> compress/zlib.(*reader).Read (0.53s)"> | |
| <path fill="none" stroke="#b28255" d="M484.5,-1091.8C484.5,-1054.17 484.5,-964.138 484.5,-916.228"/> | |
| <polygon fill="#b28255" stroke="#b28255" points="488,-916.121 484.5,-906.121 481,-916.121 488,-916.121"/> | |
| </a> | |
| </g> | |
| <g id="a_edge35-label"><a xlink:title="io.copyBuffer -> compress/zlib.(*reader).Read (0.53s)"> | |
| <text text-anchor="middle" x="501.5" y="-993.3" font-family="Times New Roman,serif" font-size="14.00"> 0.53s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21->N75 --> | |
| <g id="edge130" class="edge"><title>N21->N75</title> | |
| <g id="a_edge130"><a xlink:title="io.copyBuffer ... runtime.gcWriteBarrier (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M493.429,-1091.99C512.869,-1055.24 558.26,-971.091 570.5,-963 622.099,-928.892 651.104,-968.054 708.5,-945 723.987,-938.779 814.482,-863.28 829.5,-856 921.161,-811.567 1038.27,-786.087 1104.57,-774.236"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1105.52,-777.623 1114.76,-772.45 1104.31,-770.728 1105.52,-777.623"/> | |
| </a> | |
| </g> | |
| <g id="a_edge130-label"><a xlink:title="io.copyBuffer ... runtime.gcWriteBarrier (0.01s)"> | |
| <text text-anchor="middle" x="747.5" y="-933.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N22 --> | |
| <g id="node22" class="node"><title>N22</title> | |
| <g id="a_node22"><a xlink:title="syscall.Syscall6 (0.76s)"> | |
| <polygon fill="#ede3db" stroke="#b2662c" points="138,-221 51,-221 51,-185 138,-185 138,-221"/> | |
| <text text-anchor="middle" x="94.5" y="-210.1" font-family="Times New Roman,serif" font-size="8.00">syscall</text> | |
| <text text-anchor="middle" x="94.5" y="-201.1" font-family="Times New Roman,serif" font-size="8.00">Syscall6</text> | |
| <text text-anchor="middle" x="94.5" y="-192.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.76s (15.02%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N22->N10 --> | |
| <g id="edge29" class="edge"><title>N22->N10</title> | |
| <g id="a_edge29"><a xlink:title="syscall.Syscall6 -> runtime.cgocall (0.75s)"> | |
| <path fill="none" stroke="#b2672e" d="M94.5,-184.797C94.5,-169.245 94.5,-145.333 94.5,-122.382"/> | |
| <polygon fill="#b2672e" stroke="#b2672e" points="98.0001,-122.287 94.5,-112.287 91.0001,-122.287 98.0001,-122.287"/> | |
| </a> | |
| </g> | |
| <g id="a_edge29-label"><a xlink:title="syscall.Syscall6 -> runtime.cgocall (0.75s)"> | |
| <text text-anchor="middle" x="111.5" y="-133.8" font-family="Times New Roman,serif" font-size="14.00"> 0.75s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N48 --> | |
| <g id="node48" class="node"><title>N48</title> | |
| <g id="a_node48"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).copyObject (0.86s)"> | |
| <polygon fill="#ede1d8" stroke="#b2591a" points="723,-1233 636,-1233 636,-1189 723,-1189 723,-1233"/> | |
| <text text-anchor="middle" x="679.5" y="-1222.6" font-family="Times New Roman,serif" font-size="8.00">packfile</text> | |
| <text text-anchor="middle" x="679.5" y="-1213.6" font-family="Times New Roman,serif" font-size="8.00">(*Scanner)</text> | |
| <text text-anchor="middle" x="679.5" y="-1204.6" font-family="Times New Roman,serif" font-size="8.00">copyObject</text> | |
| <text text-anchor="middle" x="679.5" y="-1195.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.86s (17.00%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N23->N48 --> | |
| <g id="edge23" class="edge"><title>N23->N48</title> | |
| <g id="a_edge23"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).NextObject -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).copyObject (0.86s)"> | |
| <path fill="none" stroke="#b2591a" d="M679.5,-1287.95C679.5,-1274.86 679.5,-1257.79 679.5,-1243.15"/> | |
| <polygon fill="#b2591a" stroke="#b2591a" points="683,-1243.01 679.5,-1233.01 676,-1243.01 683,-1243.01"/> | |
| </a> | |
| </g> | |
| <g id="a_edge23-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).NextObject -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).copyObject (0.86s)"> | |
| <text text-anchor="middle" x="696.5" y="-1254.8" font-family="Times New Roman,serif" font-size="14.00"> 0.86s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N24 --> | |
| <g id="node24" class="node"><title>N24</title> | |
| <g id="a_node24"><a xlink:title="runtime.gcBgMarkWorker (0.79s)"> | |
| <polygon fill="#ede2da" stroke="#b26227" points="1609,-783 1522,-783 1522,-747 1609,-747 1609,-783"/> | |
| <text text-anchor="middle" x="1565.5" y="-772.1" font-family="Times New Roman,serif" font-size="8.00">runtime</text> | |
| <text text-anchor="middle" x="1565.5" y="-763.1" font-family="Times New Roman,serif" font-size="8.00">gcBgMarkWorker</text> | |
| <text text-anchor="middle" x="1565.5" y="-754.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.79s (15.61%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N24->N13 --> | |
| <g id="edge24" class="edge"><title>N24->N13</title> | |
| <g id="a_edge24"><a xlink:title="runtime.gcBgMarkWorker -> runtime.systemstack (0.79s)"> | |
| <path fill="none" stroke="#b26227" d="M1565.5,-746.939C1565.5,-727.232 1565.5,-694.273 1565.5,-668.945"/> | |
| <polygon fill="#b26227" stroke="#b26227" points="1569,-668.618 1565.5,-658.618 1562,-668.618 1569,-668.618"/> | |
| </a> | |
| </g> | |
| <g id="a_edge24-label"><a xlink:title="runtime.gcBgMarkWorker -> runtime.systemstack (0.79s)"> | |
| <text text-anchor="middle" x="1582.5" y="-695.8" font-family="Times New Roman,serif" font-size="14.00"> 0.79s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25->N19 --> | |
| <g id="edge81" class="edge"><title>N25->N19</title> | |
| <g id="a_edge81"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Commit).Decode ... runtime.makeslice (0.09s)"> | |
| <path fill="none" stroke="#b2ada2" stroke-dasharray="1,5" d="M1248.06,-1642.7C1278.84,-1629.69 1317.11,-1607.68 1335.5,-1574 1358.19,-1532.44 1453.5,-1211.85 1453.5,-1164.5 1453.5,-1164.5 1453.5,-1164.5 1453.5,-996 1453.5,-970.345 1448.51,-941.827 1443.64,-920.121"/> | |
| <polygon fill="#b2ada2" stroke="#b2ada2" points="1447.04,-919.3 1441.36,-910.36 1440.23,-920.894 1447.04,-919.3"/> | |
| </a> | |
| </g> | |
| <g id="a_edge81-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Commit).Decode ... runtime.makeslice (0.09s)"> | |
| <text text-anchor="middle" x="1453.5" y="-1254.8" font-family="Times New Roman,serif" font-size="14.00"> 0.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25->N27 --> | |
| <g id="edge126" class="edge"><title>N25->N27</title> | |
| <g id="a_edge126"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Commit).Decode -> runtime.growslice (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M1248.36,-1656.35C1293.04,-1652.66 1361.01,-1641.3 1408.5,-1607 1441.94,-1582.85 1494.27,-1489.07 1507.5,-1450 1514.16,-1430.34 1537.65,-1136.6 1545.74,-1033.47"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1549.25,-1033.5 1546.54,-1023.26 1542.27,-1032.96 1549.25,-1033.5"/> | |
| </a> | |
| </g> | |
| <g id="a_edge126-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Commit).Decode -> runtime.growslice (0.01s)"> | |
| <text text-anchor="middle" x="1542.5" y="-1306.3" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25->N29 --> | |
| <g id="edge97" class="edge"><title>N25->N29</title> | |
| <g id="a_edge97"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Commit).Decode ... runtime.newobject (0.03s)"> | |
| <path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M1248.19,-1640.58C1263.32,-1632.59 1278.76,-1621.58 1288.5,-1607 1377.28,-1474.09 1314.91,-1408.94 1339.5,-1251 1351.13,-1176.32 1388.37,-1151.43 1358.5,-1082 1327.38,-1009.66 1255.18,-951.44 1204.63,-917.55"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="1206.36,-914.499 1196.08,-911.915 1202.5,-920.343 1206.36,-914.499"/> | |
| </a> | |
| </g> | |
| <g id="a_edge97-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Commit).Decode ... runtime.newobject (0.03s)"> | |
| <text text-anchor="middle" x="1356.5" y="-1254.8" font-family="Times New Roman,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N51 --> | |
| <g id="node51" class="node"><title>N51</title> | |
| <g id="a_node51"><a xlink:title="runtime.slicebytetostring (0.12s)"> | |
| <polygon fill="#edecea" stroke="#b2ab9d" points="1298.5,-910 1214.5,-910 1214.5,-858 1298.5,-858 1298.5,-910"/> | |
| <text text-anchor="middle" x="1256.5" y="-898" font-family="Times New Roman,serif" font-size="10.00">runtime</text> | |
| <text text-anchor="middle" x="1256.5" y="-887" font-family="Times New Roman,serif" font-size="10.00">slicebytetostring</text> | |
| <text text-anchor="middle" x="1256.5" y="-876" font-family="Times New Roman,serif" font-size="10.00">0.01s (0.2%)</text> | |
| <text text-anchor="middle" x="1256.5" y="-865" font-family="Times New Roman,serif" font-size="10.00">of 0.12s (2.37%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25->N51 --> | |
| <g id="edge104" class="edge"><title>N25->N51</title> | |
| <g id="a_edge104"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Commit).Decode ... runtime.slicebytetostring (0.02s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M1227.97,-1624.9C1232.03,-1619.07 1236.03,-1612.96 1239.5,-1607 1247.6,-1593.08 1251.09,-1589.75 1254.5,-1574 1261.37,-1542.29 1255.95,-1533.41 1254.5,-1501 1249.83,-1396.24 1238.17,-1370.76 1233.5,-1266 1227.83,-1138.75 1243.64,-987.795 1251.87,-920.471"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="1255.36,-920.756 1253.12,-910.4 1248.42,-919.892 1255.36,-920.756"/> | |
| </a> | |
| </g> | |
| <g id="a_edge104-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Commit).Decode ... runtime.slicebytetostring (0.02s)"> | |
| <text text-anchor="middle" x="1250.5" y="-1254.8" font-family="Times New Roman,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N55 --> | |
| <g id="node55" class="node"><title>N55</title> | |
| <g id="a_node55"><a xlink:title="bufio.(*Reader).ReadBytes (0.12s)"> | |
| <polygon fill="#edecea" stroke="#b2ab9d" points="1246,-1574 1151,-1574 1151,-1501 1246,-1501 1246,-1574"/> | |
| <text text-anchor="middle" x="1198.5" y="-1560.4" font-family="Times New Roman,serif" font-size="12.00">bufio</text> | |
| <text text-anchor="middle" x="1198.5" y="-1547.4" font-family="Times New Roman,serif" font-size="12.00">(*Reader)</text> | |
| <text text-anchor="middle" x="1198.5" y="-1534.4" font-family="Times New Roman,serif" font-size="12.00">ReadBytes</text> | |
| <text text-anchor="middle" x="1198.5" y="-1521.4" font-family="Times New Roman,serif" font-size="12.00">0.04s (0.79%)</text> | |
| <text text-anchor="middle" x="1198.5" y="-1508.4" font-family="Times New Roman,serif" font-size="12.00">of 0.12s (2.37%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25->N55 --> | |
| <g id="edge124" class="edge"><title>N25->N55</title> | |
| <g id="a_edge124"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Commit).Decode -> bufio.(*Reader).ReadBytes (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M1201.39,-1624.71C1200.97,-1612.17 1200.48,-1597.67 1200.03,-1584.18"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1203.52,-1583.99 1199.69,-1574.12 1196.53,-1584.23 1203.52,-1583.99"/> | |
| </a> | |
| </g> | |
| <g id="a_edge124-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Commit).Decode -> bufio.(*Reader).ReadBytes (0.01s)"> | |
| <text text-anchor="middle" x="1218.5" y="-1595.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25->N75 --> | |
| <g id="edge125" class="edge"><title>N25->N75</title> | |
| <g id="a_edge125"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Commit).Decode -> runtime.gcWriteBarrier (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M1248.09,-1648.54C1294.23,-1638.79 1367.56,-1622.83 1430.5,-1607 1635.23,-1555.51 1852.21,-1564.18 1832.5,-1354 1814.52,-1162.29 1901.14,-1040.57 1743.5,-930 1702.07,-900.943 1559.41,-938.824 1516.5,-912 1492,-896.686 1506.44,-873.562 1483.5,-856 1472.39,-847.491 1297.33,-801.959 1208.04,-779.105"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1208.67,-775.653 1198.11,-776.567 1206.94,-782.435 1208.67,-775.653"/> | |
| </a> | |
| </g> | |
| <g id="a_edge125-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Commit).Decode -> runtime.gcWriteBarrier (0.01s)"> | |
| <text text-anchor="middle" x="1853.5" y="-1207.3" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26->N16 --> | |
| <g id="edge16" class="edge"><title>N26->N16</title> | |
| <g id="a_edge16"><a xlink:title="code.gitea.io/gitea/modules/git.getFileHashes ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetTree (2.17s)"> | |
| <path fill="none" stroke="#b22800" stroke-width="3" stroke-dasharray="1,5" d="M762.161,-1977.87C761.855,-1962.41 761.399,-1939.42 761.043,-1921.41"/> | |
| <polygon fill="#b22800" stroke="#b22800" stroke-width="3" points="764.538,-1921.15 760.841,-1911.22 757.54,-1921.28 764.538,-1921.15"/> | |
| </a> | |
| </g> | |
| <g id="a_edge16-label"><a xlink:title="code.gitea.io/gitea/modules/git.getFileHashes ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.GetTree (2.17s)"> | |
| <text text-anchor="middle" x="779.5" y="-1944.8" font-family="Times New Roman,serif" font-size="14.00"> 2.17s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N62 --> | |
| <g id="node62" class="node"><title>N62</title> | |
| <g id="a_node62"><a xlink:title="runtime.mapassign_faststr (0.10s)"> | |
| <polygon fill="#edecea" stroke="#b2ada0" points="464.5,-1923 368.5,-1923 368.5,-1863 464.5,-1863 464.5,-1923"/> | |
| <text text-anchor="middle" x="416.5" y="-1909.4" font-family="Times New Roman,serif" font-size="12.00">runtime</text> | |
| <text text-anchor="middle" x="416.5" y="-1896.4" font-family="Times New Roman,serif" font-size="12.00">mapassign_faststr</text> | |
| <text text-anchor="middle" x="416.5" y="-1883.4" font-family="Times New Roman,serif" font-size="12.00">0.04s (0.79%)</text> | |
| <text text-anchor="middle" x="416.5" y="-1870.4" font-family="Times New Roman,serif" font-size="12.00">of 0.10s (1.98%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26->N62 --> | |
| <g id="edge75" class="edge"><title>N26->N62</title> | |
| <g id="a_edge75"><a xlink:title="code.gitea.io/gitea/modules/git.getFileHashes ... runtime.mapassign_faststr (0.10s)"> | |
| <path fill="none" stroke="#b2ada0" stroke-dasharray="1,5" d="M718.679,-1982.21C656.717,-1964.12 543.391,-1931.04 474.511,-1910.93"/> | |
| <polygon fill="#b2ada0" stroke="#b2ada0" points="475.262,-1907.51 464.682,-1908.06 473.301,-1914.23 475.262,-1907.51"/> | |
| </a> | |
| </g> | |
| <g id="a_edge75-label"><a xlink:title="code.gitea.io/gitea/modules/git.getFileHashes ... runtime.mapassign_faststr (0.10s)"> | |
| <text text-anchor="middle" x="637.5" y="-1944.8" font-family="Times New Roman,serif" font-size="14.00"> 0.10s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26->N75 --> | |
| <g id="edge115" class="edge"><title>N26->N75</title> | |
| <g id="a_edge115"><a xlink:title="code.gitea.io/gitea/modules/git.getFileHashes ... runtime.gcWriteBarrier (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M781.371,-1977.67C787.849,-1971.21 794.877,-1963.6 800.5,-1956 828.539,-1918.1 815.069,-1892.92 851.5,-1863 872.031,-1846.14 888.114,-1862.04 908.5,-1845 967.08,-1796.05 956.644,-1762.38 988.5,-1693 1056.1,-1545.77 1061.28,-1504 1122.5,-1354 1181.36,-1209.79 1198.62,-1174.79 1258.5,-1031 1280.49,-978.198 1296.4,-968.11 1307.5,-912 1312.33,-887.584 1322.16,-876.112 1307.5,-856 1292.1,-834.874 1274.69,-850.067 1251.5,-838 1226.51,-824.995 1201.23,-805.458 1183.04,-790.016"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1185.06,-787.137 1175.2,-783.247 1180.48,-792.433 1185.06,-787.137"/> | |
| </a> | |
| </g> | |
| <g id="a_edge115-label"><a xlink:title="code.gitea.io/gitea/modules/git.getFileHashes ... runtime.gcWriteBarrier (0.01s)"> | |
| <text text-anchor="middle" x="1139.5" y="-1357.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27->N4 --> | |
| <g id="edge62" class="edge"><title>N27->N4</title> | |
| <g id="a_edge62"><a xlink:title="runtime.growslice -> runtime.mallocgc (0.19s)"> | |
| <path fill="none" stroke="#b2a590" d="M1539,-970.712C1525.75,-936.421 1500.23,-873.642 1472.5,-823 1470.82,-819.934 1469.03,-816.821 1467.17,-813.711"/> | |
| <polygon fill="#b2a590" stroke="#b2a590" points="1470.02,-811.67 1461.79,-805.002 1464.06,-815.349 1470.02,-811.67"/> | |
| </a> | |
| </g> | |
| <g id="a_edge62-label"><a xlink:title="runtime.growslice -> runtime.mallocgc (0.19s)"> | |
| <text text-anchor="middle" x="1532.5" y="-880.3" font-family="Times New Roman,serif" font-size="14.00"> 0.19s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N34 --> | |
| <g id="node34" class="node"><title>N34</title> | |
| <g id="a_node34"><a xlink:title="runtime.memmove (0.12s)"> | |
| <polygon fill="#edecea" stroke="#b2ab9d" points="638,-515 543,-515 543,-462 638,-462 638,-515"/> | |
| <text text-anchor="middle" x="590.5" y="-499.8" font-family="Times New Roman,serif" font-size="14.00">runtime</text> | |
| <text text-anchor="middle" x="590.5" y="-484.8" font-family="Times New Roman,serif" font-size="14.00">memmove</text> | |
| <text text-anchor="middle" x="590.5" y="-469.8" font-family="Times New Roman,serif" font-size="14.00">0.12s (2.37%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27->N34 --> | |
| <g id="edge140" class="edge"><title>N27->N34</title> | |
| <g id="a_edge140"><a xlink:title="runtime.growslice -> runtime.memmove (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M1584.57,-970.95C1627.81,-938.47 1698.02,-877.331 1726.5,-805 1765.68,-705.495 1709.8,-643.263 1616.5,-591 1573.91,-567.142 858.599,-510.22 648.24,-493.927"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="648.264,-490.418 638.024,-493.137 647.724,-497.397 648.264,-490.418"/> | |
| </a> | |
| </g> | |
| <g id="a_edge140-label"><a xlink:title="runtime.growslice -> runtime.memmove (0.01s)"> | |
| <text text-anchor="middle" x="1756.5" y="-761.3" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27->N44 --> | |
| <g id="edge139" class="edge"><title>N27->N44</title> | |
| <g id="a_edge139"><a xlink:title="runtime.growslice -> runtime.memclrNoHeapPointers (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M1588.74,-989.927C1671.16,-976.35 1851.5,-940.323 1851.5,-885 1851.5,-885 1851.5,-885 1851.5,-339 1851.5,-294.307 1814.07,-258.708 1779.38,-235.312"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1780.94,-232.149 1770.65,-229.629 1777.12,-238.016 1780.94,-232.149"/> | |
| </a> | |
| </g> | |
| <g id="a_edge139-label"><a xlink:title="runtime.growslice -> runtime.memclrNoHeapPointers (0.01s)"> | |
| <text text-anchor="middle" x="1868.5" y="-628.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N28->N19 --> | |
| <g id="edge83" class="edge"><title>N28->N19</title> | |
| <g id="a_edge83"><a xlink:title="bytes.(*Buffer).ReadFrom ... runtime.makeslice (0.06s)"> | |
| <path fill="none" stroke="#b2afa7" stroke-dasharray="1,5" d="M448.1,-968.175C452.842,-966.123 457.689,-964.337 462.5,-963 561.067,-935.617 823.415,-970.446 922.5,-945 936.939,-941.292 938.083,-933.791 952.5,-930 1028.89,-909.91 1229.18,-922.245 1307.5,-912 1333.1,-908.651 1361.22,-902.893 1384.48,-897.553"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="1385.52,-900.904 1394.46,-895.218 1383.92,-894.088 1385.52,-900.904"/> | |
| </a> | |
| </g> | |
| <g id="a_edge83-label"><a xlink:title="bytes.(*Buffer).ReadFrom ... runtime.makeslice (0.06s)"> | |
| <text text-anchor="middle" x="969.5" y="-933.8" font-family="Times New Roman,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N28->N30 --> | |
| <g id="edge57" class="edge"><title>N28->N30</title> | |
| <g id="a_edge57"><a xlink:title="bytes.(*Buffer).ReadFrom -> compress/zlib.(*reader).Read (0.20s)"> | |
| <path fill="none" stroke="#b2a58f" d="M416.837,-962.794C422.261,-951.871 428.967,-939.978 436.5,-930 440.754,-924.365 445.753,-918.828 450.888,-913.669"/> | |
| <polygon fill="#b2a58f" stroke="#b2a58f" points="453.651,-915.868 458.438,-906.416 448.802,-910.82 453.651,-915.868"/> | |
| </a> | |
| </g> | |
| <g id="a_edge57-label"><a xlink:title="bytes.(*Buffer).ReadFrom -> compress/zlib.(*reader).Read (0.20s)"> | |
| <text text-anchor="middle" x="453.5" y="-933.8" font-family="Times New Roman,serif" font-size="14.00"> 0.20s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N28->N34 --> | |
| <g id="edge114" class="edge"><title>N28->N34</title> | |
| <g id="a_edge114"><a xlink:title="bytes.(*Buffer).ReadFrom ... runtime.memmove (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M398.635,-962.96C389.279,-876.51 369.486,-646.491 416.5,-591 433.673,-570.73 449.729,-584.862 473.5,-573 501.615,-558.97 530.378,-538.541 552.35,-521.402"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="554.752,-523.964 560.422,-515.015 550.408,-518.475 554.752,-523.964"/> | |
| </a> | |
| </g> | |
| <g id="a_edge114-label"><a xlink:title="bytes.(*Buffer).ReadFrom ... runtime.memmove (0.01s)"> | |
| <text text-anchor="middle" x="404.5" y="-761.3" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N69 --> | |
| <g id="node69" class="node"><title>N69</title> | |
| <g id="a_node69"><a xlink:title="runtime.deferreturn (0.04s)"> | |
| <polygon fill="#edecec" stroke="#b2b0ab" points="918.5,-910 838.5,-910 838.5,-858 918.5,-858 918.5,-910"/> | |
| <text text-anchor="middle" x="878.5" y="-898" font-family="Times New Roman,serif" font-size="10.00">runtime</text> | |
| <text text-anchor="middle" x="878.5" y="-887" font-family="Times New Roman,serif" font-size="10.00">deferreturn</text> | |
| <text text-anchor="middle" x="878.5" y="-876" font-family="Times New Roman,serif" font-size="10.00">0.01s (0.2%)</text> | |
| <text text-anchor="middle" x="878.5" y="-865" font-family="Times New Roman,serif" font-size="10.00">of 0.04s (0.79%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N28->N69 --> | |
| <g id="edge113" class="edge"><title>N28->N69</title> | |
| <g id="a_edge113"><a xlink:title="bytes.(*Buffer).ReadFrom ... runtime.deferreturn (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M448.231,-968.611C452.947,-966.47 457.752,-964.544 462.5,-963 522.997,-943.323 541.81,-955.815 604.5,-945 615.551,-943.094 752.597,-912.858 828.572,-896.054"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="829.411,-899.453 838.419,-893.876 827.899,-892.618 829.411,-899.453"/> | |
| </a> | |
| </g> | |
| <g id="a_edge113-label"><a xlink:title="bytes.(*Buffer).ReadFrom ... runtime.deferreturn (0.01s)"> | |
| <text text-anchor="middle" x="687.5" y="-933.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N29->N4 --> | |
| <g id="edge65" class="edge"><title>N29->N4</title> | |
| <g id="a_edge65"><a xlink:title="runtime.newobject -> runtime.mallocgc (0.16s)"> | |
| <path fill="none" stroke="#b2a896" d="M1196.28,-860.176C1199.39,-858.735 1202.48,-857.331 1205.5,-856 1255.85,-833.79 1313.53,-811.14 1358.4,-794.118"/> | |
| <polygon fill="#b2a896" stroke="#b2a896" points="1359.65,-797.385 1367.77,-790.574 1357.18,-790.837 1359.65,-797.385"/> | |
| </a> | |
| </g> | |
| <g id="a_edge65-label"><a xlink:title="runtime.newobject -> runtime.mallocgc (0.16s)"> | |
| <text text-anchor="middle" x="1297.5" y="-826.8" font-family="Times New Roman,serif" font-size="14.00"> 0.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N30->N34 --> | |
| <g id="edge129" class="edge"><title>N30->N34</title> | |
| <g id="a_edge129"><a xlink:title="compress/zlib.(*reader).Read ... runtime.memmove (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M504.844,-861.583C511.005,-854.43 517.466,-846.188 522.5,-838 530.844,-824.428 532.015,-820.288 536.5,-805 551.789,-752.886 575.212,-596.42 585.435,-525.338"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="588.949,-525.487 586.902,-515.092 582.019,-524.495 588.949,-525.487"/> | |
| </a> | |
| </g> | |
| <g id="a_edge129-label"><a xlink:title="compress/zlib.(*reader).Read ... runtime.memmove (0.01s)"> | |
| <text text-anchor="middle" x="576.5" y="-695.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N37 --> | |
| <g id="node37" class="node"><title>N37</title> | |
| <g id="a_node37"><a xlink:title="compress/flate.(*decompressor).nextBlock (0.71s)"> | |
| <polygon fill="#ede3dc" stroke="#b26d35" points="528,-787 441,-787 441,-743 528,-743 528,-787"/> | |
| <text text-anchor="middle" x="484.5" y="-776.6" font-family="Times New Roman,serif" font-size="8.00">flate</text> | |
| <text text-anchor="middle" x="484.5" y="-767.6" font-family="Times New Roman,serif" font-size="8.00">(*decompressor)</text> | |
| <text text-anchor="middle" x="484.5" y="-758.6" font-family="Times New Roman,serif" font-size="8.00">nextBlock</text> | |
| <text text-anchor="middle" x="484.5" y="-749.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.71s (14.03%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N30->N37 --> | |
| <g id="edge31" class="edge"><title>N30->N37</title> | |
| <g id="a_edge31"><a xlink:title="compress/zlib.(*reader).Read ... compress/flate.(*decompressor).nextBlock (0.71s)"> | |
| <path fill="none" stroke="#b26d35" stroke-dasharray="1,5" d="M484.5,-861.812C484.5,-843.755 484.5,-817.559 484.5,-797.12"/> | |
| <polygon fill="#b26d35" stroke="#b26d35" points="488,-797.03 484.5,-787.03 481,-797.03 488,-797.03"/> | |
| </a> | |
| </g> | |
| <g id="a_edge31-label"><a xlink:title="compress/zlib.(*reader).Read ... compress/flate.(*decompressor).nextBlock (0.71s)"> | |
| <text text-anchor="middle" x="501.5" y="-826.8" font-family="Times New Roman,serif" font-size="14.00"> 0.71s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N31->N36 --> | |
| <g id="edge52" class="edge"><title>N31->N36</title> | |
| <g id="a_edge52"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).nextObjectHeader -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*bufferedSeeker).Seek (0.23s)"> | |
| <path fill="none" stroke="#b2a289" d="M205.5,-1188.52C205.5,-1175.06 205.5,-1157.49 205.5,-1142.48"/> | |
| <polygon fill="#b2a289" stroke="#b2a289" points="209,-1142.1 205.5,-1132.1 202,-1142.1 209,-1142.1"/> | |
| </a> | |
| </g> | |
| <g id="a_edge52-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).nextObjectHeader -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*bufferedSeeker).Seek (0.23s)"> | |
| <text text-anchor="middle" x="222.5" y="-1159.8" font-family="Times New Roman,serif" font-size="14.00"> 0.23s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N38 --> | |
| <g id="node38" class="node"><title>N38</title> | |
| <g id="a_node38"><a xlink:title="bufio.(*Reader).ReadByte (0.58s)"> | |
| <polygon fill="#ede6df" stroke="#b27d4c" points="145,-376.5 44,-376.5 44,-303.5 145,-303.5 145,-376.5"/> | |
| <text text-anchor="middle" x="94.5" y="-362.9" font-family="Times New Roman,serif" font-size="12.00">bufio</text> | |
| <text text-anchor="middle" x="94.5" y="-349.9" font-family="Times New Roman,serif" font-size="12.00">(*Reader)</text> | |
| <text text-anchor="middle" x="94.5" y="-336.9" font-family="Times New Roman,serif" font-size="12.00">ReadByte</text> | |
| <text text-anchor="middle" x="94.5" y="-323.9" font-family="Times New Roman,serif" font-size="12.00">0.05s (0.99%)</text> | |
| <text text-anchor="middle" x="94.5" y="-310.9" font-family="Times New Roman,serif" font-size="12.00">of 0.58s (11.46%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N31->N38 --> | |
| <g id="edge34" class="edge"><title>N31->N38</title> | |
| <g id="a_edge34"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).nextObjectHeader ... bufio.(*Reader).ReadByte (0.53s)"> | |
| <path fill="none" stroke="#b28255" stroke-dasharray="1,5" d="M161.751,-1192.72C129.602,-1176.82 91.5,-1149.8 91.5,-1111 91.5,-1111 91.5,-1111 91.5,-487.5 91.5,-453.741 92.3061,-415.616 93.0826,-386.722"/> | |
| <polygon fill="#b28255" stroke="#b28255" points="96.5869,-386.613 93.3658,-376.52 89.5896,-386.419 96.5869,-386.613"/> | |
| </a> | |
| </g> | |
| <g id="a_edge34-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).nextObjectHeader ... bufio.(*Reader).ReadByte (0.53s)"> | |
| <text text-anchor="middle" x="108.5" y="-826.8" font-family="Times New Roman,serif" font-size="14.00"> 0.53s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32 --> | |
| <g id="node32" class="node"><title>N32</title> | |
| <g id="a_node32"><a xlink:title="regexp.compile (0.30s)"> | |
| <polygon fill="#edeae6" stroke="#b29b7d" points="1126,-1911 1043,-1911 1043,-1875 1126,-1875 1126,-1911"/> | |
| <text text-anchor="middle" x="1084.5" y="-1900.1" font-family="Times New Roman,serif" font-size="8.00">regexp</text> | |
| <text text-anchor="middle" x="1084.5" y="-1891.1" font-family="Times New Roman,serif" font-size="8.00">compile</text> | |
| <text text-anchor="middle" x="1084.5" y="-1882.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.30s (5.93%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32->N19 --> | |
| <g id="edge109" class="edge"><title>N32->N19</title> | |
| <g id="a_edge109"><a xlink:title="regexp.compile ... runtime.makeslice (0.02s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M1126.16,-1889.99C1226.3,-1884.34 1476.77,-1865.12 1538.5,-1812 1673.23,-1696.06 1657.38,-1620.24 1708.5,-1450 1770.75,-1242.69 1852.75,-1119.78 1703.5,-963 1635.37,-891.432 1578.04,-946.282 1484.17,-913.491"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="1485.26,-910.162 1474.66,-909.916 1482.79,-916.714 1485.26,-910.162"/> | |
| </a> | |
| </g> | |
| <g id="a_edge109-label"><a xlink:title="regexp.compile ... runtime.makeslice (0.02s)"> | |
| <text text-anchor="middle" x="1756.5" y="-1357.8" font-family="Times New Roman,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32->N27 --> | |
| <g id="edge94" class="edge"><title>N32->N27</title> | |
| <g id="a_edge94"><a xlink:title="regexp.compile ... runtime.growslice (0.04s)"> | |
| <path fill="none" stroke="#b2b0ab" stroke-dasharray="1,5" d="M1126.09,-1891.18C1251.53,-1888.36 1620.07,-1877.36 1662.5,-1845 1687.32,-1826.07 1686.5,-1810.21 1686.5,-1779 1686.5,-1779 1686.5,-1779 1686.5,-1598.5 1686.5,-1447.03 1651.5,-1410.97 1651.5,-1259.5 1651.5,-1259.5 1651.5,-1259.5 1651.5,-1109 1651.5,-1073.98 1623.61,-1045.35 1596.85,-1025.94"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="1598.83,-1023.05 1588.62,-1020.22 1594.83,-1028.8 1598.83,-1023.05"/> | |
| </a> | |
| </g> | |
| <g id="a_edge94-label"><a xlink:title="regexp.compile ... runtime.growslice (0.04s)"> | |
| <text text-anchor="middle" x="1690.5" y="-1414.8" font-family="Times New Roman,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32->N68 --> | |
| <g id="edge133" class="edge"><title>N32->N68</title> | |
| <g id="a_edge133"><a xlink:title="regexp.compile ... sort.quickSort (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1055.93,-1911C1035.42,-1925.01 1009.38,-1946.94 997.5,-1974 985.015,-2002.44 998.946,-2035.87 1014.02,-2060.22"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1011.19,-2062.28 1019.58,-2068.75 1017.06,-2058.46 1011.19,-2062.28"/> | |
| </a> | |
| </g> | |
| <g id="a_edge133-label"><a xlink:title="regexp.compile ... sort.quickSort (0.01s)"> | |
| <text text-anchor="middle" x="1014.5" y="-1992.3" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32->N69 --> | |
| <g id="edge132" class="edge"><title>N32->N69</title> | |
| <g id="a_edge132"><a xlink:title="regexp.compile ... runtime.deferreturn (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1126.36,-1891.15C1244.73,-1888.36 1580.05,-1877.7 1684.5,-1845 1740,-1827.62 1797.5,-1837.16 1797.5,-1779 1797.5,-1779 1797.5,-1779 1797.5,-1360.5 1797.5,-1261.62 1681.09,-1015.82 1597.5,-963 1552.66,-934.666 1412.28,-950.284 1359.5,-945 1201.99,-929.229 1016.26,-904.241 928.818,-892.095"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="929.037,-888.592 918.65,-890.679 928.072,-895.525 929.037,-888.592"/> | |
| </a> | |
| </g> | |
| <g id="a_edge132-label"><a xlink:title="regexp.compile ... runtime.deferreturn (0.01s)"> | |
| <text text-anchor="middle" x="1814.5" y="-1357.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N73 --> | |
| <g id="node73" class="node"><title>N73</title> | |
| <g id="a_node73"><a xlink:title="regexp/syntax.(*compiler).inst (0.08s)"> | |
| <polygon fill="#edeceb" stroke="#b2aea4" points="1530,-1812 1439,-1812 1439,-1744 1530,-1744 1530,-1812"/> | |
| <text text-anchor="middle" x="1484.5" y="-1799.2" font-family="Times New Roman,serif" font-size="11.00">syntax</text> | |
| <text text-anchor="middle" x="1484.5" y="-1787.2" font-family="Times New Roman,serif" font-size="11.00">(*compiler)</text> | |
| <text text-anchor="middle" x="1484.5" y="-1775.2" font-family="Times New Roman,serif" font-size="11.00">inst</text> | |
| <text text-anchor="middle" x="1484.5" y="-1763.2" font-family="Times New Roman,serif" font-size="11.00">0.02s (0.4%)</text> | |
| <text text-anchor="middle" x="1484.5" y="-1751.2" font-family="Times New Roman,serif" font-size="11.00">of 0.08s (1.58%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32->N73 --> | |
| <g id="edge82" class="edge"><title>N32->N73</title> | |
| <g id="a_edge82"><a xlink:title="regexp.compile ... regexp/syntax.(*compiler).inst (0.08s)"> | |
| <path fill="none" stroke="#b2aea4" stroke-dasharray="1,5" d="M1126.07,-1888.69C1180.88,-1883.48 1279.81,-1871.13 1360.5,-1845 1384.35,-1837.28 1409.05,-1825.11 1430.06,-1813.32"/> | |
| <polygon fill="#b2aea4" stroke="#b2aea4" points="1431.89,-1816.3 1438.83,-1808.3 1428.41,-1810.23 1431.89,-1816.3"/> | |
| </a> | |
| </g> | |
| <g id="a_edge82-label"><a xlink:title="regexp.compile ... regexp/syntax.(*compiler).inst (0.08s)"> | |
| <text text-anchor="middle" x="1413.5" y="-1833.8" font-family="Times New Roman,serif" font-size="14.00"> 0.08s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N80 --> | |
| <g id="node80" class="node"><title>N80</title> | |
| <g id="a_node80"><a xlink:title="regexp/syntax.(*parser).collapse (0.05s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a9" points="1419,-1800 1336,-1800 1336,-1756 1419,-1756 1419,-1800"/> | |
| <text text-anchor="middle" x="1377.5" y="-1789.6" font-family="Times New Roman,serif" font-size="8.00">syntax</text> | |
| <text text-anchor="middle" x="1377.5" y="-1780.6" font-family="Times New Roman,serif" font-size="8.00">(*parser)</text> | |
| <text text-anchor="middle" x="1377.5" y="-1771.6" font-family="Times New Roman,serif" font-size="8.00">collapse</text> | |
| <text text-anchor="middle" x="1377.5" y="-1762.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.05s (0.99%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32->N80 --> | |
| <g id="edge88" class="edge"><title>N32->N80</title> | |
| <g id="a_edge88"><a xlink:title="regexp.compile ... regexp/syntax.(*parser).collapse (0.05s)"> | |
| <path fill="none" stroke="#b2b0a9" stroke-dasharray="1,5" d="M1126.26,-1888.75C1170.86,-1883.97 1242.66,-1872.39 1298.5,-1845 1317.59,-1835.64 1336,-1820.72 1350.23,-1807.44"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="1352.91,-1809.72 1357.69,-1800.27 1348.06,-1804.68 1352.91,-1809.72"/> | |
| </a> | |
| </g> | |
| <g id="a_edge88-label"><a xlink:title="regexp.compile ... regexp/syntax.(*parser).collapse (0.05s)"> | |
| <text text-anchor="middle" x="1339.5" y="-1833.8" font-family="Times New Roman,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N33 --> | |
| <g id="node33" class="node"><title>N33</title> | |
| <g id="a_node33"><a xlink:title="compress/flate.(*decompressor).huffSym (0.35s)"> | |
| <polygon fill="#ede9e4" stroke="#b29674" points="481,-540 346,-540 346,-437 481,-437 481,-540"/> | |
| <text text-anchor="middle" x="413.5" y="-522.4" font-family="Times New Roman,serif" font-size="17.00">flate</text> | |
| <text text-anchor="middle" x="413.5" y="-503.4" font-family="Times New Roman,serif" font-size="17.00">(*decompressor)</text> | |
| <text text-anchor="middle" x="413.5" y="-484.4" font-family="Times New Roman,serif" font-size="17.00">huffSym</text> | |
| <text text-anchor="middle" x="413.5" y="-465.4" font-family="Times New Roman,serif" font-size="17.00">0.31s (6.13%)</text> | |
| <text text-anchor="middle" x="413.5" y="-446.4" font-family="Times New Roman,serif" font-size="17.00">of 0.35s (6.92%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N33->N38 --> | |
| <g id="edge93" class="edge"><title>N33->N38</title> | |
| <g id="a_edge93"><a xlink:title="compress/flate.(*decompressor).huffSym -> bufio.(*Reader).ReadByte (0.04s)"> | |
| <path fill="none" stroke="#b2b0ab" d="M345.931,-442.118C342.774,-440.337 339.621,-438.621 336.5,-437 276.898,-406.041 204.954,-378.678 155.076,-361.167"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="156,-357.783 145.405,-357.798 153.697,-364.393 156,-357.783"/> | |
| </a> | |
| </g> | |
| <g id="a_edge93-label"><a xlink:title="compress/flate.(*decompressor).huffSym -> bufio.(*Reader).ReadByte (0.04s)"> | |
| <text text-anchor="middle" x="315.5" y="-407.8" font-family="Times New Roman,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35 --> | |
| <g id="node35" class="node"><title>N35</title> | |
| <g id="a_node35"><a xlink:title="compress/flate.(*decompressor).huffmanBlock (0.51s)"> | |
| <polygon fill="#ede7e1" stroke="#b28558" points="543.5,-674 425.5,-674 425.5,-591 543.5,-591 543.5,-674"/> | |
| <text text-anchor="middle" x="484.5" y="-658.8" font-family="Times New Roman,serif" font-size="14.00">flate</text> | |
| <text text-anchor="middle" x="484.5" y="-643.8" font-family="Times New Roman,serif" font-size="14.00">(*decompressor)</text> | |
| <text text-anchor="middle" x="484.5" y="-628.8" font-family="Times New Roman,serif" font-size="14.00">huffmanBlock</text> | |
| <text text-anchor="middle" x="484.5" y="-613.8" font-family="Times New Roman,serif" font-size="14.00">0.10s (1.98%)</text> | |
| <text text-anchor="middle" x="484.5" y="-598.8" font-family="Times New Roman,serif" font-size="14.00">of 0.51s (10.08%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35->N33 --> | |
| <g id="edge42" class="edge"><title>N35->N33</title> | |
| <g id="a_edge42"><a xlink:title="compress/flate.(*decompressor).huffmanBlock -> compress/flate.(*decompressor).huffSym (0.32s)"> | |
| <path fill="none" stroke="#b2997a" d="M464.154,-590.808C457.667,-577.833 450.348,-563.196 443.332,-549.165"/> | |
| <polygon fill="#b2997a" stroke="#b2997a" points="446.38,-547.434 438.778,-540.055 440.119,-550.565 446.38,-547.434"/> | |
| </a> | |
| </g> | |
| <g id="a_edge42-label"><a xlink:title="compress/flate.(*decompressor).huffmanBlock -> compress/flate.(*decompressor).huffSym (0.32s)"> | |
| <text text-anchor="middle" x="470.5" y="-561.8" font-family="Times New Roman,serif" font-size="14.00"> 0.32s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35->N34 --> | |
| <g id="edge107" class="edge"><title>N35->N34</title> | |
| <g id="a_edge107"><a xlink:title="compress/flate.(*decompressor).huffmanBlock ... runtime.memmove (0.02s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M503.354,-590.963C509.205,-579.886 516.085,-568.147 523.5,-558 532.591,-545.559 543.875,-533.154 554.574,-522.387"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="557.187,-524.725 561.854,-515.214 552.274,-519.739 557.187,-524.725"/> | |
| </a> | |
| </g> | |
| <g id="a_edge107-label"><a xlink:title="compress/flate.(*decompressor).huffmanBlock ... runtime.memmove (0.02s)"> | |
| <text text-anchor="middle" x="540.5" y="-561.8" font-family="Times New Roman,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36->N34 --> | |
| <g id="edge123" class="edge"><title>N36->N34</title> | |
| <g id="a_edge123"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*bufferedSeeker).Seek ... runtime.memmove (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M184.334,-1087.95C171.223,-1073.34 155.579,-1052.68 148.5,-1031 139.121,-1002.27 134.057,-989.548 148.5,-963 161.402,-939.284 175.234,-941.835 199.5,-930 221.482,-919.279 234.63,-929.707 251.5,-912 302.772,-858.186 294.42,-644.997 345.5,-591 392.158,-541.677 427.018,-566.566 489.5,-540 504.004,-533.833 519.358,-526.56 533.599,-519.483"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="535.41,-522.49 542.776,-514.874 532.269,-516.234 535.41,-522.49"/> | |
| </a> | |
| </g> | |
| <g id="a_edge123-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*bufferedSeeker).Seek ... runtime.memmove (0.01s)"> | |
| <text text-anchor="middle" x="303.5" y="-826.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N53 --> | |
| <g id="node53" class="node"><title>N53</title> | |
| <g id="a_node53"><a xlink:title="os.(*File).Seek (0.52s)"> | |
| <polygon fill="#ede6e0" stroke="#b28456" points="253.5,-1031 157.5,-1031 157.5,-963 253.5,-963 253.5,-1031"/> | |
| <text text-anchor="middle" x="205.5" y="-1018.2" font-family="Times New Roman,serif" font-size="11.00">os</text> | |
| <text text-anchor="middle" x="205.5" y="-1006.2" font-family="Times New Roman,serif" font-size="11.00">(*File)</text> | |
| <text text-anchor="middle" x="205.5" y="-994.2" font-family="Times New Roman,serif" font-size="11.00">Seek</text> | |
| <text text-anchor="middle" x="205.5" y="-982.2" font-family="Times New Roman,serif" font-size="11.00">0.02s (0.4%)</text> | |
| <text text-anchor="middle" x="205.5" y="-970.2" font-family="Times New Roman,serif" font-size="11.00">of 0.52s (10.28%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36->N53 --> | |
| <g id="edge36" class="edge"><title>N36->N53</title> | |
| <g id="a_edge36"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*bufferedSeeker).Seek -> os.(*File).Seek (0.52s)"> | |
| <path fill="none" stroke="#b28456" d="M205.5,-1087.86C205.5,-1074.75 205.5,-1057.43 205.5,-1041.5"/> | |
| <polygon fill="#b28456" stroke="#b28456" points="209,-1041.29 205.5,-1031.29 202,-1041.29 209,-1041.29"/> | |
| </a> | |
| </g> | |
| <g id="a_edge36-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*bufferedSeeker).Seek -> os.(*File).Seek (0.52s)"> | |
| <text text-anchor="middle" x="222.5" y="-1052.8" font-family="Times New Roman,serif" font-size="14.00"> 0.52s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N37->N35 --> | |
| <g id="edge37" class="edge"><title>N37->N35</title> | |
| <g id="a_edge37"><a xlink:title="compress/flate.(*decompressor).nextBlock -> compress/flate.(*decompressor).huffmanBlock (0.51s)"> | |
| <path fill="none" stroke="#b28558" d="M484.5,-742.742C484.5,-726.925 484.5,-704.653 484.5,-684.341"/> | |
| <polygon fill="#b28558" stroke="#b28558" points="488,-684.254 484.5,-674.254 481,-684.254 488,-684.254"/> | |
| </a> | |
| </g> | |
| <g id="a_edge37-label"><a xlink:title="compress/flate.(*decompressor).nextBlock -> compress/flate.(*decompressor).huffmanBlock (0.51s)"> | |
| <text text-anchor="middle" x="501.5" y="-695.8" font-family="Times New Roman,serif" font-size="14.00"> 0.51s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N47 --> | |
| <g id="node47" class="node"><title>N47</title> | |
| <g id="a_node47"><a xlink:title="compress/flate.(*decompressor).readHuffman (0.19s)"> | |
| <polygon fill="#edebe8" stroke="#b2a590" points="293,-666.5 202,-666.5 202,-598.5 293,-598.5 293,-666.5"/> | |
| <text text-anchor="middle" x="247.5" y="-653.7" font-family="Times New Roman,serif" font-size="11.00">flate</text> | |
| <text text-anchor="middle" x="247.5" y="-641.7" font-family="Times New Roman,serif" font-size="11.00">(*decompressor)</text> | |
| <text text-anchor="middle" x="247.5" y="-629.7" font-family="Times New Roman,serif" font-size="11.00">readHuffman</text> | |
| <text text-anchor="middle" x="247.5" y="-617.7" font-family="Times New Roman,serif" font-size="11.00">0.02s (0.4%)</text> | |
| <text text-anchor="middle" x="247.5" y="-605.7" font-family="Times New Roman,serif" font-size="11.00">of 0.19s (3.75%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N37->N47 --> | |
| <g id="edge61" class="edge"><title>N37->N47</title> | |
| <g id="a_edge61"><a xlink:title="compress/flate.(*decompressor).nextBlock -> compress/flate.(*decompressor).readHuffman (0.19s)"> | |
| <path fill="none" stroke="#b2a590" d="M454.536,-742.86C445.651,-736.864 435.805,-730.48 426.5,-725 385.919,-701.1 338.385,-676.972 302.503,-659.498"/> | |
| <polygon fill="#b2a590" stroke="#b2a590" points="303.701,-656.19 293.176,-654.978 300.648,-662.489 303.701,-656.19"/> | |
| </a> | |
| </g> | |
| <g id="a_edge61-label"><a xlink:title="compress/flate.(*decompressor).nextBlock -> compress/flate.(*decompressor).readHuffman (0.19s)"> | |
| <text text-anchor="middle" x="410.5" y="-695.8" font-family="Times New Roman,serif" font-size="14.00"> 0.19s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N38->N22 --> | |
| <g id="edge33" class="edge"><title>N38->N22</title> | |
| <g id="a_edge33"><a xlink:title="bufio.(*Reader).ReadByte ... syscall.Syscall6 (0.53s)"> | |
| <path fill="none" stroke="#b28255" stroke-dasharray="1,5" d="M94.5,-303.177C94.5,-280.56 94.5,-251.808 94.5,-231.092"/> | |
| <polygon fill="#b28255" stroke="#b28255" points="98.0001,-231.066 94.5,-221.066 91.0001,-231.066 98.0001,-231.066"/> | |
| </a> | |
| </g> | |
| <g id="a_edge33-label"><a xlink:title="bufio.(*Reader).ReadByte ... syscall.Syscall6 (0.53s)"> | |
| <text text-anchor="middle" x="111.5" y="-264.8" font-family="Times New Roman,serif" font-size="14.00"> 0.53s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N39->N23 --> | |
| <g id="edge32" class="edge"><title>N39->N23</title> | |
| <g id="a_edge32"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).fillRegularObjectContent -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).NextObject (0.57s)"> | |
| <path fill="none" stroke="#b27e4d" d="M814.194,-1386.72C799.245,-1375.85 781.926,-1363.88 765.5,-1354 754.996,-1347.68 743.442,-1341.45 732.303,-1335.77"/> | |
| <polygon fill="#b27e4d" stroke="#b27e4d" points="733.586,-1332.5 723.078,-1331.15 730.448,-1338.76 733.586,-1332.5"/> | |
| </a> | |
| </g> | |
| <g id="a_edge32-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).fillRegularObjectContent -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).NextObject (0.57s)"> | |
| <text text-anchor="middle" x="805.5" y="-1357.8" font-family="Times New Roman,serif" font-size="14.00"> 0.57s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N39->N46 --> | |
| <g id="edge67" class="edge"><title>N39->N46</title> | |
| <g id="a_edge67"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).fillRegularObjectContent -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).cachePut (0.13s)"> | |
| <path fill="none" stroke="#b2aa9b" d="M854.5,-1386.98C854.5,-1372.97 854.5,-1356.38 854.5,-1342.28"/> | |
| <polygon fill="#b2aa9b" stroke="#b2aa9b" points="858,-1342.07 854.5,-1332.07 851,-1342.07 858,-1342.07"/> | |
| </a> | |
| </g> | |
| <g id="a_edge67-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).fillRegularObjectContent -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).cachePut (0.13s)"> | |
| <text text-anchor="middle" x="871.5" y="-1357.8" font-family="Times New Roman,serif" font-size="14.00"> 0.13s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N40->N27 --> | |
| <g id="edge87" class="edge"><title>N40->N27</title> | |
| <g id="a_edge87"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Tree).Decode -> runtime.growslice (0.05s)"> | |
| <path fill="none" stroke="#b2b0a9" d="M897.137,-1755.94C911.616,-1746.95 928.523,-1736.19 943.5,-1726 964.007,-1712.05 971.764,-1711.3 988.5,-1693 1023.89,-1654.3 1017.05,-1633.2 1049.5,-1592 1085.08,-1546.82 1090.38,-1527.35 1141.5,-1501 1259.38,-1440.25 1338.36,-1540.28 1435.5,-1450 1466.65,-1421.05 1522.88,-1134.62 1541.96,-1033.29"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="1545.44,-1033.72 1543.85,-1023.25 1538.56,-1032.43 1545.44,-1033.72"/> | |
| </a> | |
| </g> | |
| <g id="a_edge87-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Tree).Decode -> runtime.growslice (0.05s)"> | |
| <text text-anchor="middle" x="1489.5" y="-1357.8" font-family="Times New Roman,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N40->N29 --> | |
| <g id="edge98" class="edge"><title>N40->N29</title> | |
| <g id="a_edge98"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Tree).Decode -> runtime.newobject (0.03s)"> | |
| <path fill="none" stroke="#b2b1ad" d="M859.577,-1755.95C856.345,-1723.68 855.272,-1661.83 887.5,-1625 905.554,-1604.37 927.031,-1626.3 946.5,-1607 987.527,-1566.32 969.395,-1538.48 985.5,-1483 1011.01,-1395.1 1006.43,-1369.72 1038.5,-1284 1047.35,-1260.36 1054.84,-1256.71 1063.5,-1233 1103.69,-1123.02 1131.78,-986.855 1143.86,-922.307"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="1147.35,-922.68 1145.73,-912.21 1140.47,-921.406 1147.35,-922.68"/> | |
| </a> | |
| </g> | |
| <g id="a_edge98-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Tree).Decode -> runtime.newobject (0.03s)"> | |
| <text text-anchor="middle" x="1055.5" y="-1306.3" font-family="Times New Roman,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N58 --> | |
| <g id="node58" class="node"><title>N58</title> | |
| <g id="a_node58"><a xlink:title="bufio.(*Reader).ReadString (0.20s)"> | |
| <polygon fill="#edebe8" stroke="#b2a58f" points="980,-1681 897,-1681 897,-1637 980,-1637 980,-1681"/> | |
| <text text-anchor="middle" x="938.5" y="-1670.6" font-family="Times New Roman,serif" font-size="8.00">bufio</text> | |
| <text text-anchor="middle" x="938.5" y="-1661.6" font-family="Times New Roman,serif" font-size="8.00">(*Reader)</text> | |
| <text text-anchor="middle" x="938.5" y="-1652.6" font-family="Times New Roman,serif" font-size="8.00">ReadString</text> | |
| <text text-anchor="middle" x="938.5" y="-1643.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.20s (3.95%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N40->N58 --> | |
| <g id="edge58" class="edge"><title>N40->N58</title> | |
| <g id="a_edge58"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Tree).Decode -> bufio.(*Reader).ReadString (0.20s)"> | |
| <path fill="none" stroke="#b2a58f" d="M876.263,-1755.81C888.315,-1737.26 905.95,-1710.11 919.373,-1689.45"/> | |
| <polygon fill="#b2a58f" stroke="#b2a58f" points="922.327,-1691.32 924.839,-1681.03 916.457,-1687.51 922.327,-1691.32"/> | |
| </a> | |
| </g> | |
| <g id="a_edge58-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object.(*Tree).Decode -> bufio.(*Reader).ReadString (0.20s)"> | |
| <text text-anchor="middle" x="922.5" y="-1714.8" font-family="Times New Roman,serif" font-size="14.00"> 0.20s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N63 --> | |
| <g id="node63" class="node"><title>N63</title> | |
| <g id="a_node63"><a xlink:title="runtime.arenaIndex (0.04s)"> | |
| <polygon fill="#edecec" stroke="#b2b0ab" points="1474,-79.5 1391,-79.5 1391,-32.5 1474,-32.5 1474,-79.5"/> | |
| <text text-anchor="middle" x="1432.5" y="-65.9" font-family="Times New Roman,serif" font-size="12.00">runtime</text> | |
| <text text-anchor="middle" x="1432.5" y="-52.9" font-family="Times New Roman,serif" font-size="12.00">arenaIndex</text> | |
| <text text-anchor="middle" x="1432.5" y="-39.9" font-family="Times New Roman,serif" font-size="12.00">0.04s (0.79%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N41->N63 --> | |
| <g id="edge137" class="edge"><title>N41->N63</title> | |
| <g id="a_edge137"><a xlink:title="runtime.findObject ... runtime.arenaIndex (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1529.51,-162.761C1507.62,-138.903 1480.11,-108.909 1459.98,-86.9621"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1462.53,-84.5616 1453.19,-79.558 1457.37,-89.2933 1462.53,-84.5616"/> | |
| </a> | |
| </g> | |
| <g id="a_edge137-label"><a xlink:title="runtime.findObject ... runtime.arenaIndex (0.01s)"> | |
| <text text-anchor="middle" x="1528.5" y="-133.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N42 --> | |
| <g id="node42" class="node"><title>N42</title> | |
| <g id="a_node42"><a xlink:title="syscall.Seek (0.48s)"> | |
| <polygon fill="#ede7e1" stroke="#b2885d" points="243,-902 160,-902 160,-866 243,-866 243,-902"/> | |
| <text text-anchor="middle" x="201.5" y="-891.1" font-family="Times New Roman,serif" font-size="8.00">syscall</text> | |
| <text text-anchor="middle" x="201.5" y="-882.1" font-family="Times New Roman,serif" font-size="8.00">Seek</text> | |
| <text text-anchor="middle" x="201.5" y="-873.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.48s (9.49%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N42->N22 --> | |
| <g id="edge60" class="edge"><title>N42->N22</title> | |
| <g id="a_edge60"><a xlink:title="syscall.Seek ... syscall.Syscall6 (0.20s)"> | |
| <path fill="none" stroke="#b2a58f" stroke-dasharray="1,5" d="M187.81,-865.984C176.173,-850.785 159.766,-827.507 149.5,-805 109.431,-717.152 47.3932,-481.69 34.5,-386 29.04,-345.477 22.651,-333.134 34.5,-294 41.8422,-269.75 58.1114,-246.062 71.8583,-229.08"/> | |
| <polygon fill="#b2a58f" stroke="#b2a58f" points="74.6261,-231.226 78.354,-221.309 69.2553,-226.737 74.6261,-231.226"/> | |
| </a> | |
| </g> | |
| <g id="a_edge60-label"><a xlink:title="syscall.Seek ... syscall.Syscall6 (0.20s)"> | |
| <text text-anchor="middle" x="92.5" y="-561.8" font-family="Times New Roman,serif" font-size="14.00"> 0.20s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N72 --> | |
| <g id="node72" class="node"><title>N72</title> | |
| <g id="a_node72"><a xlink:title="syscall.Syscall (0.29s)"> | |
| <polygon fill="#edeae6" stroke="#b29c7f" points="242,-783 159,-783 159,-747 242,-747 242,-783"/> | |
| <text text-anchor="middle" x="200.5" y="-772.1" font-family="Times New Roman,serif" font-size="8.00">syscall</text> | |
| <text text-anchor="middle" x="200.5" y="-763.1" font-family="Times New Roman,serif" font-size="8.00">Syscall</text> | |
| <text text-anchor="middle" x="200.5" y="-754.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.29s (5.73%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N42->N72 --> | |
| <g id="edge50" class="edge"><title>N42->N72</title> | |
| <g id="a_edge50"><a xlink:title="syscall.Seek ... syscall.Syscall (0.27s)"> | |
| <path fill="none" stroke="#b29e82" stroke-dasharray="1,5" d="M201.355,-865.987C201.192,-846.924 200.925,-815.752 200.733,-793.277"/> | |
| <polygon fill="#b29e82" stroke="#b29e82" points="204.231,-793.003 200.646,-783.033 197.231,-793.063 204.231,-793.003"/> | |
| </a> | |
| </g> | |
| <g id="a_edge50-label"><a xlink:title="syscall.Seek ... syscall.Syscall (0.27s)"> | |
| <text text-anchor="middle" x="218.5" y="-826.8" font-family="Times New Roman,serif" font-size="14.00"> 0.27s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43->N27 --> | |
| <g id="edge96" class="edge"><title>N43->N27</title> | |
| <g id="a_edge96"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.ApplyDelta ... runtime.growslice (0.03s)"> | |
| <path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M448.884,-1283.55C466.489,-1258.47 495.101,-1219.59 523.5,-1189 583.221,-1124.67 607.219,-1112.57 689.5,-1082 762.056,-1055.04 783.774,-1059.21 860.5,-1049 1097.96,-1017.4 1384.32,-1004.04 1498.24,-999.716"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="1498.53,-1003.21 1508.39,-999.337 1498.27,-996.213 1498.53,-1003.21"/> | |
| </a> | |
| </g> | |
| <g id="a_edge96-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.ApplyDelta ... runtime.growslice (0.03s)"> | |
| <text text-anchor="middle" x="573.5" y="-1159.8" font-family="Times New Roman,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43->N28 --> | |
| <g id="edge76" class="edge"><title>N43->N28</title> | |
| <g id="a_edge76"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.ApplyDelta ... bytes.(*Buffer).ReadFrom (0.10s)"> | |
| <path fill="none" stroke="#b2ada0" stroke-dasharray="1,5" d="M429.151,-1283.81C424.211,-1230.83 412.693,-1107.31 406.541,-1041.34"/> | |
| <polygon fill="#b2ada0" stroke="#b2ada0" points="410.016,-1040.9 405.602,-1031.27 403.046,-1041.55 410.016,-1040.9"/> | |
| </a> | |
| </g> | |
| <g id="a_edge76-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.ApplyDelta ... bytes.(*Buffer).ReadFrom (0.10s)"> | |
| <text text-anchor="middle" x="435.5" y="-1159.8" font-family="Times New Roman,serif" font-size="14.00"> 0.10s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43->N34 --> | |
| <g id="edge103" class="edge"><title>N43->N34</title> | |
| <g id="a_edge103"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.ApplyDelta ... runtime.memmove (0.02s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M421.178,-1283.89C402.035,-1235.82 361.689,-1127.01 347.5,-1031 325.697,-883.462 324.101,-666.964 387.5,-591 405.612,-569.298 422.568,-584.248 448.5,-573 458.064,-568.852 502.8,-542.34 539.539,-520.287"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="541.43,-523.233 548.199,-515.082 537.825,-517.234 541.43,-523.233"/> | |
| </a> | |
| </g> | |
| <g id="a_edge103-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.ApplyDelta ... runtime.memmove (0.02s)"> | |
| <text text-anchor="middle" x="355.5" y="-933.8" font-family="Times New Roman,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45 --> | |
| <g id="node45" class="node"><title>N45</title> | |
| <g id="a_node45"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/cache.(*ObjectLRU).Put (0.29s)"> | |
| <polygon fill="#edeae6" stroke="#b29c7f" points="907,-1233 824,-1233 824,-1189 907,-1189 907,-1233"/> | |
| <text text-anchor="middle" x="865.5" y="-1222.6" font-family="Times New Roman,serif" font-size="8.00">cache</text> | |
| <text text-anchor="middle" x="865.5" y="-1213.6" font-family="Times New Roman,serif" font-size="8.00">(*ObjectLRU)</text> | |
| <text text-anchor="middle" x="865.5" y="-1204.6" font-family="Times New Roman,serif" font-size="8.00">Put</text> | |
| <text text-anchor="middle" x="865.5" y="-1195.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.29s (5.73%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45->N34 --> | |
| <g id="edge120" class="edge"><title>N45->N34</title> | |
| <g id="a_edge120"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/cache.(*ObjectLRU).Put ... runtime.memmove (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M856.985,-1188.82C845.794,-1162.38 824.48,-1116.44 798.5,-1082 745.303,-1011.48 704.799,-1017.62 654.5,-945 585.772,-845.773 679.775,-964.541 608.5,-558 606.601,-547.17 603.833,-535.548 601.034,-525.008"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="604.39,-524.014 598.368,-515.297 597.64,-525.867 604.39,-524.014"/> | |
| </a> | |
| </g> | |
| <g id="a_edge120-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/cache.(*ObjectLRU).Put ... runtime.memmove (0.01s)"> | |
| <text text-anchor="middle" x="651.5" y="-880.3" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N59 --> | |
| <g id="node59" class="node"><title>N59</title> | |
| <g id="a_node59"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing.ComputeHash (0.21s)"> | |
| <polygon fill="#edebe8" stroke="#b2a48d" points="930,-1128 847,-1128 847,-1092 930,-1092 930,-1128"/> | |
| <text text-anchor="middle" x="888.5" y="-1117.1" font-family="Times New Roman,serif" font-size="8.00">plumbing</text> | |
| <text text-anchor="middle" x="888.5" y="-1108.1" font-family="Times New Roman,serif" font-size="8.00">ComputeHash</text> | |
| <text text-anchor="middle" x="888.5" y="-1099.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.21s (4.15%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45->N59 --> | |
| <g id="edge53" class="edge"><title>N45->N59</title> | |
| <g id="a_edge53"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/cache.(*ObjectLRU).Put ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing.ComputeHash (0.21s)"> | |
| <path fill="none" stroke="#b2a48d" stroke-dasharray="1,5" d="M870.491,-1188.52C873.937,-1173.68 878.547,-1153.84 882.239,-1137.95"/> | |
| <polygon fill="#b2a48d" stroke="#b2a48d" points="885.658,-1138.7 884.512,-1128.16 878.84,-1137.11 885.658,-1138.7"/> | |
| </a> | |
| </g> | |
| <g id="a_edge53-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/cache.(*ObjectLRU).Put ... code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing.ComputeHash (0.21s)"> | |
| <text text-anchor="middle" x="895.5" y="-1159.8" font-family="Times New Roman,serif" font-size="14.00"> 0.21s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45->N69 --> | |
| <g id="edge119" class="edge"><title>N45->N69</title> | |
| <g id="a_edge119"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/cache.(*ObjectLRU).Put -> runtime.deferreturn (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M896.559,-1188.86C903.498,-1183.44 910.555,-1177.34 916.5,-1171 994.267,-1088.02 1016.35,-1056.93 1036.5,-945 1037.68,-938.439 1040.52,-935.321 1036.5,-930 1023.4,-912.651 969.884,-900.008 928.725,-892.618"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="929.277,-889.161 918.826,-890.897 928.079,-896.058 929.277,-889.161"/> | |
| </a> | |
| </g> | |
| <g id="a_edge119-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/cache.(*ObjectLRU).Put -> runtime.deferreturn (0.01s)"> | |
| <text text-anchor="middle" x="1025.5" y="-1052.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45->N77 --> | |
| <g id="edge86" class="edge"><title>N45->N77</title> | |
| <g id="a_edge86"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/cache.(*ObjectLRU).Put -> runtime.mapassign (0.05s)"> | |
| <path fill="none" stroke="#b2b0a9" d="M907.078,-1194.11C912.561,-1192.26 918.138,-1190.5 923.5,-1189 1042.17,-1155.72 1185.12,-1130.63 1259.3,-1118.7"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="1259.98,-1122.14 1269.31,-1117.11 1258.88,-1115.23 1259.98,-1122.14"/> | |
| </a> | |
| </g> | |
| <g id="a_edge86-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/cache.(*ObjectLRU).Put -> runtime.mapassign (0.05s)"> | |
| <text text-anchor="middle" x="1067.5" y="-1159.8" font-family="Times New Roman,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N46->N45 --> | |
| <g id="edge47" class="edge"><title>N46->N45</title> | |
| <g id="a_edge47"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).cachePut -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/cache.(*ObjectLRU).Put (0.29s)"> | |
| <path fill="none" stroke="#b29c7f" d="M856.887,-1287.95C858.372,-1274.86 860.308,-1257.79 861.968,-1243.15"/> | |
| <polygon fill="#b29c7f" stroke="#b29c7f" points="865.469,-1243.34 863.118,-1233.01 858.513,-1242.55 865.469,-1243.34"/> | |
| </a> | |
| </g> | |
| <g id="a_edge47-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Packfile).cachePut -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/cache.(*ObjectLRU).Put (0.29s)"> | |
| <text text-anchor="middle" x="878.5" y="-1254.8" font-family="Times New Roman,serif" font-size="14.00"> 0.29s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N47->N33 --> | |
| <g id="edge99" class="edge"><title>N47->N33</title> | |
| <g id="a_edge99"><a xlink:title="compress/flate.(*decompressor).readHuffman -> compress/flate.(*decompressor).huffSym (0.03s)"> | |
| <path fill="none" stroke="#b2b1ad" d="M274.207,-598.451C285.651,-585.2 299.573,-570.211 313.5,-558 318.525,-553.594 327.213,-547.157 337.437,-539.968"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="339.713,-542.649 345.925,-534.067 335.716,-536.902 339.713,-542.649"/> | |
| </a> | |
| </g> | |
| <g id="a_edge99-label"><a xlink:title="compress/flate.(*decompressor).readHuffman -> compress/flate.(*decompressor).huffSym (0.03s)"> | |
| <text text-anchor="middle" x="330.5" y="-561.8" font-family="Times New Roman,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N49 --> | |
| <g id="node49" class="node"><title>N49</title> | |
| <g id="a_node49"><a xlink:title="compress/flate.(*huffmanDecoder).init (0.13s)"> | |
| <polygon fill="#edecea" stroke="#b2aa9b" points="327.5,-522.5 201.5,-522.5 201.5,-454.5 327.5,-454.5 327.5,-522.5"/> | |
| <text text-anchor="middle" x="264.5" y="-507.3" font-family="Times New Roman,serif" font-size="14.00">flate</text> | |
| <text text-anchor="middle" x="264.5" y="-492.3" font-family="Times New Roman,serif" font-size="14.00">(*huffmanDecoder)</text> | |
| <text text-anchor="middle" x="264.5" y="-477.3" font-family="Times New Roman,serif" font-size="14.00">init</text> | |
| <text text-anchor="middle" x="264.5" y="-462.3" font-family="Times New Roman,serif" font-size="14.00">0.13s (2.57%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N47->N49 --> | |
| <g id="edge68" class="edge"><title>N47->N49</title> | |
| <g id="a_edge68"><a xlink:title="compress/flate.(*decompressor).readHuffman -> compress/flate.(*huffmanDecoder).init (0.13s)"> | |
| <path fill="none" stroke="#b2aa9b" d="M251.486,-598.207C253.83,-578.623 256.82,-553.647 259.343,-532.574"/> | |
| <polygon fill="#b2aa9b" stroke="#b2aa9b" points="262.826,-532.929 260.539,-522.584 255.875,-532.097 262.826,-532.929"/> | |
| </a> | |
| </g> | |
| <g id="a_edge68-label"><a xlink:title="compress/flate.(*decompressor).readHuffman -> compress/flate.(*huffmanDecoder).init (0.13s)"> | |
| <text text-anchor="middle" x="273.5" y="-561.8" font-family="Times New Roman,serif" font-size="14.00"> 0.13s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N48->N21 --> | |
| <g id="edge26" class="edge"><title>N48->N21</title> | |
| <g id="a_edge26"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).copyObject ... io.copyBuffer (0.77s)"> | |
| <path fill="none" stroke="#b2652a" stroke-dasharray="1,5" d="M637.668,-1188.76C605.176,-1172.27 560.281,-1149.47 527.497,-1132.83"/> | |
| <polygon fill="#b2652a" stroke="#b2652a" points="528.668,-1129.5 518.167,-1128.09 525.499,-1135.74 528.668,-1129.5"/> | |
| </a> | |
| </g> | |
| <g id="a_edge26-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).copyObject ... io.copyBuffer (0.77s)"> | |
| <text text-anchor="middle" x="616.5" y="-1159.8" font-family="Times New Roman,serif" font-size="14.00"> 0.77s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N66 --> | |
| <g id="node66" class="node"><title>N66</title> | |
| <g id="a_node66"><a xlink:title="runtime.typedmemmove (0.04s)"> | |
| <polygon fill="#edecec" stroke="#b2b0ab" points="790,-1138 699,-1138 699,-1082 790,-1082 790,-1138"/> | |
| <text text-anchor="middle" x="744.5" y="-1125.2" font-family="Times New Roman,serif" font-size="11.00">runtime</text> | |
| <text text-anchor="middle" x="744.5" y="-1113.2" font-family="Times New Roman,serif" font-size="11.00">typedmemmove</text> | |
| <text text-anchor="middle" x="744.5" y="-1101.2" font-family="Times New Roman,serif" font-size="11.00">0.02s (0.4%)</text> | |
| <text text-anchor="middle" x="744.5" y="-1089.2" font-family="Times New Roman,serif" font-size="11.00">of 0.04s (0.79%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N48->N66 --> | |
| <g id="edge122" class="edge"><title>N48->N66</title> | |
| <g id="a_edge122"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).copyObject ... runtime.typedmemmove (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M693.604,-1188.52C701.643,-1176.27 711.922,-1160.62 721.135,-1146.59"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="724.141,-1148.39 726.704,-1138.11 718.289,-1144.54 724.141,-1148.39"/> | |
| </a> | |
| </g> | |
| <g id="a_edge122-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile.(*Scanner).copyObject ... runtime.typedmemmove (0.01s)"> | |
| <text text-anchor="middle" x="731.5" y="-1159.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N51->N4 --> | |
| <g id="edge79" class="edge"><title>N51->N4</title> | |
| <g id="a_edge79"><a xlink:title="runtime.slicebytetostring -> runtime.mallocgc (0.10s)"> | |
| <path fill="none" stroke="#b2ada0" d="M1294.69,-857.901C1315.61,-844.146 1342.17,-826.687 1366.51,-810.689"/> | |
| <polygon fill="#b2ada0" stroke="#b2ada0" points="1368.58,-813.517 1375.01,-805.1 1364.74,-807.668 1368.58,-813.517"/> | |
| </a> | |
| </g> | |
| <g id="a_edge79-label"><a xlink:title="runtime.slicebytetostring -> runtime.mallocgc (0.10s)"> | |
| <text text-anchor="middle" x="1362.5" y="-826.8" font-family="Times New Roman,serif" font-size="14.00"> 0.10s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N51->N34 --> | |
| <g id="edge145" class="edge"><title>N51->N34</title> | |
| <g id="a_edge145"><a xlink:title="runtime.slicebytetostring -> runtime.memmove (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M1214.22,-861.033C1210.93,-859.329 1207.66,-857.636 1204.5,-856 1160.54,-833.263 1147.72,-830.837 1105.5,-805 944.961,-706.748 926.509,-648.545 761.5,-558 725.264,-538.116 682.032,-520.85 648.103,-508.627"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="648.938,-505.209 638.344,-505.157 646.593,-511.805 648.938,-505.209"/> | |
| </a> | |
| </g> | |
| <g id="a_edge145-label"><a xlink:title="runtime.slicebytetostring -> runtime.memmove (0.01s)"> | |
| <text text-anchor="middle" x="984.5" y="-695.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N52 --> | |
| <g id="node52" class="node"><title>N52</title> | |
| <g id="a_node52"><a xlink:title="crypto/sha1.blockAMD64 (0.11s)"> | |
| <polygon fill="#edecea" stroke="#b2ac9f" points="996,-1023.5 901,-1023.5 901,-970.5 996,-970.5 996,-1023.5"/> | |
| <text text-anchor="middle" x="948.5" y="-1008.3" font-family="Times New Roman,serif" font-size="14.00">sha1</text> | |
| <text text-anchor="middle" x="948.5" y="-993.3" font-family="Times New Roman,serif" font-size="14.00">blockAMD64</text> | |
| <text text-anchor="middle" x="948.5" y="-978.3" font-family="Times New Roman,serif" font-size="14.00">0.11s (2.17%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N53->N42 --> | |
| <g id="edge38" class="edge"><title>N53->N42</title> | |
| <g id="a_edge38"><a xlink:title="os.(*File).Seek ... syscall.Seek (0.48s)"> | |
| <path fill="none" stroke="#b2885d" stroke-dasharray="1,5" d="M204.311,-962.997C203.733,-946.953 203.046,-927.889 202.495,-912.625"/> | |
| <polygon fill="#b2885d" stroke="#b2885d" points="205.981,-912.146 202.123,-902.279 198.985,-912.399 205.981,-912.146"/> | |
| </a> | |
| </g> | |
| <g id="a_edge38-label"><a xlink:title="os.(*File).Seek ... syscall.Seek (0.48s)"> | |
| <text text-anchor="middle" x="221.5" y="-933.8" font-family="Times New Roman,serif" font-size="14.00"> 0.48s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N53->N69 --> | |
| <g id="edge131" class="edge"><title>N53->N69</title> | |
| <g id="a_edge131"><a xlink:title="os.(*File).Seek ... runtime.deferreturn (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M253.587,-983.721C280.985,-977.002 316.027,-968.876 347.5,-963 403.54,-952.538 418.142,-953.587 474.5,-945 515.456,-938.759 525.421,-935.375 566.5,-930 647.097,-919.455 668.15,-924.282 748.5,-912 775.018,-907.947 804.291,-901.999 828.334,-896.717"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="829.294,-900.089 838.295,-894.501 827.774,-893.256 829.294,-900.089"/> | |
| </a> | |
| </g> | |
| <g id="a_edge131-label"><a xlink:title="os.(*File).Seek ... runtime.deferreturn (0.01s)"> | |
| <text text-anchor="middle" x="583.5" y="-933.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N54->N14 --> | |
| <g id="edge28" class="edge"><title>N54->N14</title> | |
| <g id="a_edge28"><a xlink:title="runtime.gcDrain -> runtime.scanobject (0.76s)"> | |
| <path fill="none" stroke="#b2662c" d="M1565.5,-460.288C1565.5,-442.358 1565.5,-418.239 1565.5,-396.381"/> | |
| <polygon fill="#b2662c" stroke="#b2662c" points="1569,-396.199 1565.5,-386.199 1562,-396.199 1569,-396.199"/> | |
| </a> | |
| </g> | |
| <g id="a_edge28-label"><a xlink:title="runtime.gcDrain -> runtime.scanobject (0.76s)"> | |
| <text text-anchor="middle" x="1582.5" y="-407.8" font-family="Times New Roman,serif" font-size="14.00"> 0.76s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N55->N19 --> | |
| <g id="edge92" class="edge"><title>N55->N19</title> | |
| <g id="a_edge92"><a xlink:title="bufio.(*Reader).ReadBytes -> runtime.makeslice (0.04s)"> | |
| <path fill="none" stroke="#b2b0ab" d="M1229.61,-1500.87C1270.69,-1451.68 1341.98,-1358.53 1377.5,-1266 1423.92,-1145.09 1432.73,-989.105 1434.26,-920.285"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="1437.77,-920.07 1434.45,-910.007 1430.77,-919.941 1437.77,-920.07"/> | |
| </a> | |
| </g> | |
| <g id="a_edge92-label"><a xlink:title="bufio.(*Reader).ReadBytes -> runtime.makeslice (0.04s)"> | |
| <text text-anchor="middle" x="1418.5" y="-1207.3" font-family="Times New Roman,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N56 --> | |
| <g id="node56" class="node"><title>N56</title> | |
| <g id="a_node56"><a xlink:title="runtime.sweepone (0.09s)"> | |
| <polygon fill="#edeceb" stroke="#b2ada2" points="1718,-793 1627,-793 1627,-737 1718,-737 1718,-793"/> | |
| <text text-anchor="middle" x="1672.5" y="-780.2" font-family="Times New Roman,serif" font-size="11.00">runtime</text> | |
| <text text-anchor="middle" x="1672.5" y="-768.2" font-family="Times New Roman,serif" font-size="11.00">sweepone</text> | |
| <text text-anchor="middle" x="1672.5" y="-756.2" font-family="Times New Roman,serif" font-size="11.00">0.03s (0.59%)</text> | |
| <text text-anchor="middle" x="1672.5" y="-744.2" font-family="Times New Roman,serif" font-size="11.00">of 0.09s (1.78%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N56->N13 --> | |
| <g id="edge95" class="edge"><title>N56->N13</title> | |
| <g id="a_edge95"><a xlink:title="runtime.sweepone ... runtime.systemstack (0.04s)"> | |
| <path fill="none" stroke="#b2b0ab" stroke-dasharray="1,5" d="M1650.33,-736.96C1633.61,-716.571 1610.59,-688.496 1592.75,-666.736"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="1595.24,-664.248 1586.19,-658.734 1589.82,-668.686 1595.24,-664.248"/> | |
| </a> | |
| </g> | |
| <g id="a_edge95-label"><a xlink:title="runtime.sweepone ... runtime.systemstack (0.04s)"> | |
| <text text-anchor="middle" x="1642.5" y="-695.8" font-family="Times New Roman,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N57->N13 --> | |
| <g id="edge90" class="edge"><title>N57->N13</title> | |
| <g id="a_edge90"><a xlink:title="runtime.(*mheap).alloc -> runtime.systemstack (0.05s)"> | |
| <path fill="none" stroke="#b2b0a9" d="M1691.48,-362.284C1673.42,-410.106 1630.53,-523.204 1622.5,-540 1615.2,-555.27 1612.33,-558.565 1603.5,-573 1598.53,-581.117 1593.03,-589.762 1587.8,-597.847"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="1584.79,-596.06 1582.26,-606.349 1590.65,-599.882 1584.79,-596.06"/> | |
| </a> | |
| </g> | |
| <g id="a_edge90-label"><a xlink:title="runtime.(*mheap).alloc -> runtime.systemstack (0.05s)"> | |
| <text text-anchor="middle" x="1679.5" y="-484.8" font-family="Times New Roman,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N57->N44 --> | |
| <g id="edge70" class="edge"><title>N57->N44</title> | |
| <g id="a_edge70"><a xlink:title="runtime.(*mheap).alloc -> runtime.memclrNoHeapPointers (0.12s)"> | |
| <path fill="none" stroke="#b2ab9d" d="M1702.94,-317.906C1706.34,-297.012 1711.62,-264.621 1715.68,-239.713"/> | |
| <polygon fill="#b2ab9d" stroke="#b2ab9d" points="1719.18,-239.984 1717.34,-229.551 1712.27,-238.858 1719.18,-239.984"/> | |
| </a> | |
| </g> | |
| <g id="a_edge70-label"><a xlink:title="runtime.(*mheap).alloc -> runtime.memclrNoHeapPointers (0.12s)"> | |
| <text text-anchor="middle" x="1729.5" y="-264.8" font-family="Times New Roman,serif" font-size="14.00"> 0.12s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N58->N51 --> | |
| <g id="edge80" class="edge"><title>N58->N51</title> | |
| <g id="a_edge80"><a xlink:title="bufio.(*Reader).ReadString -> runtime.slicebytetostring (0.09s)"> | |
| <path fill="none" stroke="#b2ada2" d="M957.108,-1636.65C964.135,-1627.87 971.801,-1617.35 977.5,-1607 1013.38,-1541.84 1010.02,-1519.89 1035.5,-1450 1053.94,-1399.41 1060.32,-1387.35 1076.5,-1336 1116.23,-1209.93 1101.7,-1170.18 1154.5,-1049 1175.46,-1000.89 1208.92,-950.305 1231.76,-918.256"/> | |
| <polygon fill="#b2ada2" stroke="#b2ada2" points="1234.61,-920.284 1237.61,-910.123 1228.93,-916.196 1234.61,-920.284"/> | |
| </a> | |
| </g> | |
| <g id="a_edge80-label"><a xlink:title="bufio.(*Reader).ReadString -> runtime.slicebytetostring (0.09s)"> | |
| <text text-anchor="middle" x="1116.5" y="-1254.8" font-family="Times New Roman,serif" font-size="14.00"> 0.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N58->N55 --> | |
| <g id="edge73" class="edge"><title>N58->N55</title> | |
| <g id="a_edge73"><a xlink:title="bufio.(*Reader).ReadString -> bufio.(*Reader).ReadBytes (0.11s)"> | |
| <path fill="none" stroke="#b2ac9f" d="M980.273,-1638.8C1023.97,-1618.72 1092.84,-1587.06 1141.5,-1564.7"/> | |
| <polygon fill="#b2ac9f" stroke="#b2ac9f" points="1143.03,-1567.85 1150.65,-1560.49 1140.1,-1561.49 1143.03,-1567.85"/> | |
| </a> | |
| </g> | |
| <g id="a_edge73-label"><a xlink:title="bufio.(*Reader).ReadString -> bufio.(*Reader).ReadBytes (0.11s)"> | |
| <text text-anchor="middle" x="1093.5" y="-1595.8" font-family="Times New Roman,serif" font-size="14.00"> 0.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N59->N52 --> | |
| <g id="edge74" class="edge"><title>N59->N52</title> | |
| <g id="a_edge74"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing.ComputeHash ... crypto/sha1.blockAMD64 (0.11s)"> | |
| <path fill="none" stroke="#b2ac9f" stroke-dasharray="1,5" d="M897.875,-1091.66C906.354,-1075.97 919.093,-1052.4 929.671,-1032.83"/> | |
| <polygon fill="#b2ac9f" stroke="#b2ac9f" points="932.832,-1034.35 934.508,-1023.88 926.674,-1031.02 932.832,-1034.35"/> | |
| </a> | |
| </g> | |
| <g id="a_edge74-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing.ComputeHash ... crypto/sha1.blockAMD64 (0.11s)"> | |
| <text text-anchor="middle" x="937.5" y="-1052.8" font-family="Times New Roman,serif" font-size="14.00"> 0.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N71 --> | |
| <g id="node71" class="node"><title>N71</title> | |
| <g id="a_node71"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing.NewHasher (0.06s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="882.5,-1023 802.5,-1023 802.5,-971 882.5,-971 882.5,-1023"/> | |
| <text text-anchor="middle" x="842.5" y="-1011" font-family="Times New Roman,serif" font-size="10.00">plumbing</text> | |
| <text text-anchor="middle" x="842.5" y="-1000" font-family="Times New Roman,serif" font-size="10.00">NewHasher</text> | |
| <text text-anchor="middle" x="842.5" y="-989" font-family="Times New Roman,serif" font-size="10.00">0.01s (0.2%)</text> | |
| <text text-anchor="middle" x="842.5" y="-978" font-family="Times New Roman,serif" font-size="10.00">of 0.06s (1.19%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N59->N71 --> | |
| <g id="edge84" class="edge"><title>N59->N71</title> | |
| <g id="a_edge84"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing.ComputeHash -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing.NewHasher (0.06s)"> | |
| <path fill="none" stroke="#b2afa7" d="M881.313,-1091.66C874.755,-1075.83 864.872,-1051.99 856.721,-1032.32"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="859.942,-1030.95 852.881,-1023.05 853.476,-1033.63 859.942,-1030.95"/> | |
| </a> | |
| </g> | |
| <g id="a_edge84-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing.ComputeHash -> code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing.NewHasher (0.06s)"> | |
| <text text-anchor="middle" x="887.5" y="-1052.8" font-family="Times New Roman,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N60->N1 --> | |
| <g id="edge10" class="edge"><title>N60->N1</title> | |
| <g id="a_edge10"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.Logger.func1 -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next (3.82s)"> | |
| <path fill="none" stroke="#b20e00" stroke-width="4" d="M1157.46,-2018.01C1137.24,-2035.76 1113.5,-2063.17 1113.5,-2094 1113.5,-2385 1113.5,-2385 1113.5,-2385 1113.5,-2418.46 1113.5,-2456.81 1113.5,-2482.94"/> | |
| <polygon fill="#b20e00" stroke="#b20e00" stroke-width="4" points="1110,-2483 1113.5,-2493 1117,-2483 1110,-2483"/> | |
| </a> | |
| </g> | |
| <g id="a_edge10-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.Logger.func1 -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next (3.82s)"> | |
| <text text-anchor="middle" x="1130.5" y="-2237.8" font-family="Times New Roman,serif" font-size="14.00"> 3.82s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N61->N65 --> | |
| <g id="edge110" class="edge"><title>N61->N65</title> | |
| <g id="a_edge110"><a xlink:title="runtime.heapBitsSetType -> runtime.heapBitsForAddr (0.02s)"> | |
| <path fill="none" stroke="#b2b1ae" d="M1227.88,-598.311C1245.31,-519.86 1288.96,-323.413 1307.24,-241.149"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="1310.69,-241.76 1309.45,-231.239 1303.86,-240.241 1310.69,-241.76"/> | |
| </a> | |
| </g> | |
| <g id="a_edge110-label"><a xlink:title="runtime.heapBitsSetType -> runtime.heapBitsForAddr (0.02s)"> | |
| <text text-anchor="middle" x="1287.5" y="-407.8" font-family="Times New Roman,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N62->N29 --> | |
| <g id="edge144" class="edge"><title>N62->N29</title> | |
| <g id="a_edge144"><a xlink:title="runtime.mapassign_faststr -> runtime.newobject (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M368.386,-1888.56C320.983,-1883.7 247.45,-1872.14 189.5,-1845 146.819,-1825.01 106.5,-1826.13 106.5,-1779 106.5,-1779 106.5,-1779 106.5,-1474.5 106.5,-1433.93 103.175,-1415.03 132.5,-1387 200.366,-1322.12 257.489,-1385.12 337.5,-1336 363.546,-1320.01 361.396,-1306.11 382.5,-1284 424.83,-1239.66 437.994,-1231.16 482.5,-1189 506.467,-1166.3 515.978,-1163.86 536.5,-1138 592.464,-1067.48 563.792,-1013.23 638.5,-963 685.809,-931.191 711.32,-962.733 765.5,-945 778.917,-940.609 780.049,-934.288 793.5,-930 800.614,-927.732 996.31,-903.742 1094.88,-891.748"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1095.46,-895.203 1104.96,-890.521 1094.61,-888.254 1095.46,-895.203"/> | |
| </a> | |
| </g> | |
| <g id="a_edge144-label"><a xlink:title="runtime.mapassign_faststr -> runtime.newobject (0.01s)"> | |
| <text text-anchor="middle" x="308.5" y="-1357.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N62->N66 --> | |
| <g id="edge111" class="edge"><title>N62->N66</title> | |
| <g id="a_edge111"><a xlink:title="runtime.mapassign_faststr ... runtime.typedmemmove (0.02s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M368.439,-1886.63C314.135,-1879.65 230.211,-1865.84 206.5,-1845 183.057,-1824.39 182.5,-1810.21 182.5,-1779 182.5,-1779 182.5,-1779 182.5,-1474.5 182.5,-1434.7 171.421,-1413.06 201.5,-1387 244.27,-1349.95 401.342,-1385.4 455.5,-1369 483.885,-1360.41 494.196,-1358.52 513.5,-1336 559.005,-1282.92 525.055,-1242.97 569.5,-1189 573.91,-1183.65 616.269,-1159.05 622.5,-1156 643.777,-1145.59 668.108,-1136.15 689.415,-1128.64"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="690.668,-1131.91 698.97,-1125.33 688.376,-1125.29 690.668,-1131.91"/> | |
| </a> | |
| </g> | |
| <g id="a_edge111-label"><a xlink:title="runtime.mapassign_faststr ... runtime.typedmemmove (0.02s)"> | |
| <text text-anchor="middle" x="199.5" y="-1471.8" font-family="Times New Roman,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N64->N63 --> | |
| <g id="edge138" class="edge"><title>N64->N63</title> | |
| <g id="a_edge138"><a xlink:title="runtime.greyobject ... runtime.arenaIndex (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1432.5,-170.894C1432.5,-146.973 1432.5,-114.011 1432.5,-89.7001"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1436,-89.5331 1432.5,-79.5332 1429,-89.5332 1436,-89.5331"/> | |
| </a> | |
| </g> | |
| <g id="a_edge138-label"><a xlink:title="runtime.greyobject ... runtime.arenaIndex (0.01s)"> | |
| <text text-anchor="middle" x="1449.5" y="-133.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N65->N63 --> | |
| <g id="edge141" class="edge"><title>N65->N63</title> | |
| <g id="a_edge141"><a xlink:title="runtime.heapBitsForAddr -> runtime.arenaIndex (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M1337.51,-174.727C1357.46,-150.002 1386.83,-113.593 1407.63,-87.8231"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1410.5,-89.8385 1414.06,-79.8582 1405.05,-85.4428 1410.5,-89.8385"/> | |
| </a> | |
| </g> | |
| <g id="a_edge141-label"><a xlink:title="runtime.heapBitsForAddr -> runtime.arenaIndex (0.01s)"> | |
| <text text-anchor="middle" x="1387.5" y="-133.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N66->N13 --> | |
| <g id="edge148" class="edge"><title>N66->N13</title> | |
| <g id="a_edge148"><a xlink:title="runtime.typedmemmove ... runtime.systemstack (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M738.003,-1081.98C728.929,-1049.63 709.499,-995.743 674.5,-963 658.77,-948.284 641.576,-962.837 629.5,-945 625.762,-939.48 625.684,-935.467 629.5,-930 642.779,-910.975 657.124,-921.018 678.5,-912 731.616,-889.591 743.231,-880.319 795.5,-856 999.138,-761.252 1050.95,-722.31 1273.5,-692 1376.85,-677.923 1409.27,-709.097 1507.5,-674 1514.34,-671.557 1521.11,-668.082 1527.48,-664.182"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1529.46,-667.072 1535.9,-658.658 1525.62,-661.221 1529.46,-667.072"/> | |
| </a> | |
| </g> | |
| <g id="a_edge148-label"><a xlink:title="runtime.typedmemmove ... runtime.systemstack (0.01s)"> | |
| <text text-anchor="middle" x="812.5" y="-880.3" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N66->N34 --> | |
| <g id="edge147" class="edge"><title>N66->N34</title> | |
| <g id="a_edge147"><a xlink:title="runtime.typedmemmove -> runtime.memmove (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M698.896,-1086.53C651.051,-1060.1 578.567,-1011.29 547.5,-945 544.671,-938.963 546.795,-936.629 547.5,-930 558.227,-829.188 584.773,-807.812 595.5,-707 596.205,-700.371 595.55,-698.666 595.5,-692 595.056,-632.439 595.248,-617.537 593.5,-558 593.188,-547.38 592.729,-535.84 592.264,-525.311"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="595.754,-525.021 591.801,-515.191 588.761,-525.34 595.754,-525.021"/> | |
| </a> | |
| </g> | |
| <g id="a_edge147-label"><a xlink:title="runtime.typedmemmove -> runtime.memmove (0.01s)"> | |
| <text text-anchor="middle" x="587.5" y="-826.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N74 --> | |
| <g id="node74" class="node"><title>N74</title> | |
| <g id="a_node74"><a xlink:title="cmpbody (0.06s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="294,-1436.5 211,-1436.5 211,-1400.5 294,-1400.5 294,-1436.5"/> | |
| <text text-anchor="middle" x="252.5" y="-1421.9" font-family="Times New Roman,serif" font-size="12.00">cmpbody</text> | |
| <text text-anchor="middle" x="252.5" y="-1408.9" font-family="Times New Roman,serif" font-size="12.00">0.06s (1.19%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N67->N74 --> | |
| <g id="edge85" class="edge"><title>N67->N74</title> | |
| <g id="a_edge85"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/idxfile.(*MemoryIndex).findHashIndex ... cmpbody (0.06s)"> | |
| <path fill="none" stroke="#b2afa7" stroke-dasharray="1,5" d="M407.873,-1532.25C369.974,-1526.61 317.643,-1513.49 282.5,-1483 271.527,-1473.48 264.27,-1459.07 259.646,-1446.38"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="262.916,-1445.11 256.482,-1436.69 256.262,-1447.29 262.916,-1445.11"/> | |
| </a> | |
| </g> | |
| <g id="a_edge85-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/format/idxfile.(*MemoryIndex).findHashIndex ... cmpbody (0.06s)"> | |
| <text text-anchor="middle" x="299.5" y="-1471.8" font-family="Times New Roman,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N79 --> | |
| <g id="node79" class="node"><title>N79</title> | |
| <g id="a_node79"><a xlink:title="code.gitea.io/gitea/vendor/github.com/mcuadros/go-version.versionSlice.Less (0.33s)"> | |
| <polygon fill="#ede9e5" stroke="#b29878" points="1124,-2018 1041,-2018 1041,-1974 1124,-1974 1124,-2018"/> | |
| <text text-anchor="middle" x="1082.5" y="-2007.6" font-family="Times New Roman,serif" font-size="8.00">go-version</text> | |
| <text text-anchor="middle" x="1082.5" y="-1998.6" font-family="Times New Roman,serif" font-size="8.00">versionSlice</text> | |
| <text text-anchor="middle" x="1082.5" y="-1989.6" font-family="Times New Roman,serif" font-size="8.00">Less</text> | |
| <text text-anchor="middle" x="1082.5" y="-1980.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.33s (6.52%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N68->N79 --> | |
| <g id="edge41" class="edge"><title>N68->N79</title> | |
| <g id="a_edge41"><a xlink:title="sort.quickSort ... code.gitea.io/gitea/vendor/github.com/mcuadros/go-version.versionSlice.Less (0.33s)"> | |
| <path fill="none" stroke="#b29878" stroke-dasharray="1,5" d="M1050.69,-2068.77C1056.29,-2056.12 1063.13,-2040.71 1069.02,-2027.41"/> | |
| <polygon fill="#b29878" stroke="#b29878" points="1072.26,-2028.73 1073.11,-2018.17 1065.86,-2025.89 1072.26,-2028.73"/> | |
| </a> | |
| </g> | |
| <g id="a_edge41-label"><a xlink:title="sort.quickSort ... code.gitea.io/gitea/vendor/github.com/mcuadros/go-version.versionSlice.Less (0.33s)"> | |
| <text text-anchor="middle" x="1082.5" y="-2039.8" font-family="Times New Roman,serif" font-size="14.00"> 0.33s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N69->N75 --> | |
| <g id="edge136" class="edge"><title>N69->N75</title> | |
| <g id="a_edge136"><a xlink:title="runtime.deferreturn -> runtime.gcWriteBarrier (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M918.627,-866.112C968.273,-845.218 1052.81,-809.639 1106.59,-787.004"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1108.07,-790.178 1115.93,-783.073 1105.36,-783.726 1108.07,-790.178"/> | |
| </a> | |
| </g> | |
| <g id="a_edge136-label"><a xlink:title="runtime.deferreturn -> runtime.gcWriteBarrier (0.01s)"> | |
| <text text-anchor="middle" x="1034.5" y="-826.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N78 --> | |
| <g id="node78" class="node"><title>N78</title> | |
| <g id="a_node78"><a xlink:title="runtime.(*mcentral).grow (0.20s)"> | |
| <polygon fill="#edebe8" stroke="#b2a58f" points="1382,-510.5 1299,-510.5 1299,-466.5 1382,-466.5 1382,-510.5"/> | |
| <text text-anchor="middle" x="1340.5" y="-500.1" font-family="Times New Roman,serif" font-size="8.00">runtime</text> | |
| <text text-anchor="middle" x="1340.5" y="-491.1" font-family="Times New Roman,serif" font-size="8.00">(*mcentral)</text> | |
| <text text-anchor="middle" x="1340.5" y="-482.1" font-family="Times New Roman,serif" font-size="8.00">grow</text> | |
| <text text-anchor="middle" x="1340.5" y="-473.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.20s (3.95%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N70->N78 --> | |
| <g id="edge59" class="edge"><title>N70->N78</title> | |
| <g id="a_edge59"><a xlink:title="runtime.(*mcache).refill ... runtime.(*mcentral).grow (0.20s)"> | |
| <path fill="none" stroke="#b2a58f" stroke-dasharray="1,5" d="M1340.5,-598.207C1340.5,-574.854 1340.5,-543.834 1340.5,-520.909"/> | |
| <polygon fill="#b2a58f" stroke="#b2a58f" points="1344,-520.688 1340.5,-510.688 1337,-520.688 1344,-520.688"/> | |
| </a> | |
| </g> | |
| <g id="a_edge59-label"><a xlink:title="runtime.(*mcache).refill ... runtime.(*mcentral).grow (0.20s)"> | |
| <text text-anchor="middle" x="1357.5" y="-561.8" font-family="Times New Roman,serif" font-size="14.00"> 0.20s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N71->N29 --> | |
| <g id="edge102" class="edge"><title>N71->N29</title> | |
| <g id="a_edge102"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing.NewHasher ... runtime.newobject (0.02s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M853.824,-970.851C861.553,-956.606 873.176,-939.738 888.5,-930 921.869,-908.794 1027.93,-895.817 1094.43,-889.552"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="1095.11,-893.005 1104.75,-888.604 1094.47,-886.034 1095.11,-893.005"/> | |
| </a> | |
| </g> | |
| <g id="a_edge102-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing.NewHasher ... runtime.newobject (0.02s)"> | |
| <text text-anchor="middle" x="905.5" y="-933.8" font-family="Times New Roman,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N71->N34 --> | |
| <g id="edge117" class="edge"><title>N71->N34</title> | |
| <g id="a_edge117"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing.NewHasher ... runtime.memmove (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M836.02,-970.754C817.24,-900.686 757.908,-699.65 661.5,-558 652.73,-545.115 641.224,-532.735 630.034,-522.129"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="632.106,-519.278 622.376,-515.085 627.367,-524.431 632.106,-519.278"/> | |
| </a> | |
| </g> | |
| <g id="a_edge117-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing.NewHasher ... runtime.memmove (0.01s)"> | |
| <text text-anchor="middle" x="800.5" y="-761.3" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N71->N51 --> | |
| <g id="edge118" class="edge"><title>N71->N51</title> | |
| <g id="a_edge118"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing.NewHasher ... runtime.slicebytetostring (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M875.714,-970.919C880.812,-967.884 886.16,-965.115 891.5,-963 924.26,-950.025 1171.05,-923.091 1204.5,-912 1204.6,-911.966 1204.71,-911.932 1204.81,-911.897"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1206.31,-915.07 1214.41,-908.242 1203.82,-908.527 1206.31,-915.07"/> | |
| </a> | |
| </g> | |
| <g id="a_edge118-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing.NewHasher ... runtime.slicebytetostring (0.01s)"> | |
| <text text-anchor="middle" x="1106.5" y="-933.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N72->N10 --> | |
| <g id="edge49" class="edge"><title>N72->N10</title> | |
| <g id="a_edge49"><a xlink:title="syscall.Syscall -> runtime.cgocall (0.29s)"> | |
| <path fill="none" stroke="#b29c7f" d="M194.641,-746.923C186.7,-722.215 173.5,-674.914 173.5,-633.5 173.5,-633.5 173.5,-633.5 173.5,-202 173.5,-173.277 161.398,-144.825 146.668,-120.833"/> | |
| <polygon fill="#b29c7f" stroke="#b29c7f" points="149.481,-118.736 141.14,-112.204 143.587,-122.512 149.481,-118.736"/> | |
| </a> | |
| </g> | |
| <g id="a_edge49-label"><a xlink:title="syscall.Syscall -> runtime.cgocall (0.29s)"> | |
| <text text-anchor="middle" x="190.5" y="-407.8" font-family="Times New Roman,serif" font-size="14.00"> 0.29s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N73->N27 --> | |
| <g id="edge89" class="edge"><title>N73->N27</title> | |
| <g id="a_edge89"><a xlink:title="regexp/syntax.(*compiler).inst -> runtime.growslice (0.05s)"> | |
| <path fill="none" stroke="#b2b0a9" d="M1496.49,-1743.88C1515.71,-1689.86 1553.66,-1579.13 1577.5,-1483 1585.49,-1450.8 1613.5,-1308.92 1613.5,-1259.5 1613.5,-1259.5 1613.5,-1259.5 1613.5,-1109 1613.5,-1080.02 1596.8,-1051.9 1580.32,-1031.21"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="1582.9,-1028.83 1573.82,-1023.38 1577.52,-1033.31 1582.9,-1028.83"/> | |
| </a> | |
| </g> | |
| <g id="a_edge89-label"><a xlink:title="regexp/syntax.(*compiler).inst -> runtime.growslice (0.05s)"> | |
| <text text-anchor="middle" x="1619.5" y="-1357.8" font-family="Times New Roman,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N73->N66 --> | |
| <g id="edge134" class="edge"><title>N73->N66</title> | |
| <g id="a_edge134"><a xlink:title="regexp/syntax.(*compiler).inst -> runtime.typedmemmove (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M1480,-1743.72C1466,-1652.5 1415,-1395.69 1269.5,-1251 1205.08,-1186.94 1175.88,-1180.89 1088.5,-1156 980.936,-1125.36 947.593,-1157.7 837.5,-1138 825.225,-1135.8 812.256,-1132.61 800.025,-1129.19"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="800.981,-1125.82 790.403,-1126.41 799.037,-1132.55 800.981,-1125.82"/> | |
| </a> | |
| </g> | |
| <g id="a_edge134-label"><a xlink:title="regexp/syntax.(*compiler).inst -> runtime.typedmemmove (0.01s)"> | |
| <text text-anchor="middle" x="1414.5" y="-1414.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N75->N13 --> | |
| <g id="edge91" class="edge"><title>N75->N13</title> | |
| <g id="a_edge91"><a xlink:title="runtime.gcWriteBarrier ... runtime.systemstack (0.05s)"> | |
| <path fill="none" stroke="#b2b0a9" stroke-dasharray="1,5" d="M1198.19,-755.348C1242.19,-745.674 1313.26,-728.502 1372.5,-707 1387.26,-701.641 1389.52,-696.727 1404.5,-692 1448.82,-678.015 1464.54,-691.723 1507.5,-674 1513.83,-671.388 1520.16,-667.992 1526.18,-664.278"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="1528.3,-667.071 1534.75,-658.663 1524.46,-661.216 1528.3,-667.071"/> | |
| </a> | |
| </g> | |
| <g id="a_edge91-label"><a xlink:title="runtime.gcWriteBarrier ... runtime.systemstack (0.05s)"> | |
| <text text-anchor="middle" x="1421.5" y="-695.8" font-family="Times New Roman,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N76->N29 --> | |
| <g id="edge106" class="edge"><title>N76->N29</title> | |
| <g id="a_edge106"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit.(*DotGit).objectPackPath -> runtime.newobject (0.02s)"> | |
| <path fill="none" stroke="#b2b1ae" d="M878.941,-1515.31C891.639,-1498.29 909.083,-1473.46 921.5,-1450 1007.76,-1287.05 1006.93,-1235.94 1073.5,-1064 1096.51,-1004.58 1097.14,-987.55 1124.5,-930 1125.89,-927.066 1127.41,-924.068 1128.99,-921.081"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="1132.1,-922.683 1133.84,-912.231 1125.96,-919.32 1132.1,-922.683"/> | |
| </a> | |
| </g> | |
| <g id="a_edge106-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit.(*DotGit).objectPackPath -> runtime.newobject (0.02s)"> | |
| <text text-anchor="middle" x="1046.5" y="-1207.3" font-family="Times New Roman,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N77->N4 --> | |
| <g id="edge143" class="edge"><title>N77->N4</title> | |
| <g id="a_edge143"><a xlink:title="runtime.mapassign ... runtime.mallocgc (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1326.65,-1083.54C1330.29,-1077.34 1333.84,-1070.59 1336.5,-1064 1372.07,-975.938 1351.28,-944.596 1385.5,-856 1390.92,-841.977 1398.1,-827.405 1405.28,-814.175"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1408.44,-815.695 1410.24,-805.254 1402.32,-812.296 1408.44,-815.695"/> | |
| </a> | |
| </g> | |
| <g id="a_edge143-label"><a xlink:title="runtime.mapassign ... runtime.mallocgc (0.01s)"> | |
| <text text-anchor="middle" x="1382.5" y="-933.8" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N78->N57 --> | |
| <g id="edge64" class="edge"><title>N78->N57</title> | |
| <g id="a_edge64"><a xlink:title="runtime.(*mcentral).grow -> runtime.(*mheap).alloc (0.16s)"> | |
| <path fill="none" stroke="#b2a896" d="M1379.44,-466.341C1416.46,-447.141 1474.25,-419.532 1527.5,-404 1579.69,-388.775 1599.2,-408.928 1648.5,-386 1657.31,-381.904 1665.72,-375.795 1673.08,-369.389"/> | |
| <polygon fill="#b2a896" stroke="#b2a896" points="1675.67,-371.765 1680.63,-362.403 1670.91,-366.629 1675.67,-371.765"/> | |
| </a> | |
| </g> | |
| <g id="a_edge64-label"><a xlink:title="runtime.(*mcentral).grow -> runtime.(*mheap).alloc (0.16s)"> | |
| <text text-anchor="middle" x="1544.5" y="-407.8" font-family="Times New Roman,serif" font-size="14.00"> 0.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N78->N65 --> | |
| <g id="edge135" class="edge"><title>N78->N65</title> | |
| <g id="a_edge135"><a xlink:title="runtime.(*mcentral).grow -> runtime.heapBitsForAddr (0.01s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M1338.62,-466.191C1334.4,-418.329 1324.12,-301.784 1318.81,-241.499"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1322.27,-240.929 1317.91,-231.276 1315.3,-241.544 1322.27,-240.929"/> | |
| </a> | |
| </g> | |
| <g id="a_edge135-label"><a xlink:title="runtime.(*mcentral).grow -> runtime.heapBitsForAddr (0.01s)"> | |
| <text text-anchor="middle" x="1348.5" y="-336.3" font-family="Times New Roman,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N79->N32 --> | |
| <g id="edge45" class="edge"><title>N79->N32</title> | |
| <g id="a_edge45"><a xlink:title="code.gitea.io/gitea/vendor/github.com/mcuadros/go-version.versionSlice.Less ... regexp.compile (0.30s)"> | |
| <path fill="none" stroke="#b29b7d" stroke-dasharray="1,5" d="M1082.92,-1973.58C1083.23,-1958.29 1083.64,-1937.59 1083.96,-1921.14"/> | |
| <polygon fill="#b29b7d" stroke="#b29b7d" points="1087.46,-1921.11 1084.16,-1911.04 1080.47,-1920.97 1087.46,-1921.11"/> | |
| </a> | |
| </g> | |
| <g id="a_edge45-label"><a xlink:title="code.gitea.io/gitea/vendor/github.com/mcuadros/go-version.versionSlice.Less ... regexp.compile (0.30s)"> | |
| <text text-anchor="middle" x="1101.5" y="-1944.8" font-family="Times New Roman,serif" font-size="14.00"> 0.30s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N80->N29 --> | |
| <g id="edge100" class="edge"><title>N80->N29</title> | |
| <g id="a_edge100"><a xlink:title="regexp/syntax.(*parser).collapse ... runtime.newobject (0.03s)"> | |
| <path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M1410.36,-1755.99C1478.48,-1710.24 1633.55,-1594.03 1691.5,-1450 1701.95,-1424.02 1691.63,-1415 1691.5,-1387 1691.06,-1288.11 1689.5,-1263.39 1689.5,-1164.5 1689.5,-1164.5 1689.5,-1164.5 1689.5,-996 1689.5,-952.56 1639.52,-974.018 1597.5,-963 1512.9,-940.816 1490.23,-941.301 1403.5,-930 1318.96,-918.984 1292.43,-934.688 1205.93,-911.637"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="1206.8,-908.246 1196.23,-908.959 1204.94,-914.994 1206.8,-908.246"/> | |
| </a> | |
| </g> | |
| <g id="a_edge100-label"><a xlink:title="regexp/syntax.(*parser).collapse ... runtime.newobject (0.03s)"> | |
| <text text-anchor="middle" x="1708.5" y="-1306.3" font-family="Times New Roman,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| </g> | |
| </g></svg> | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment