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 2024)"> | |
| <title>unnamed</title> | |
| <polygon fill="white" stroke="none" points="-4,4 -4,-2024 1164.5,-2024 1164.5,4 -4,4"/> | |
| <g id="clust1" class="cluster"><title>cluster_L</title> | |
| <polygon fill="none" stroke="black" points="594,-1862 594,-2012 1016,-2012 1016,-1862 594,-1862"/> | |
| </g> | |
| <!-- Type: cpu --> | |
| <g id="node1" class="node"><title>Type: cpu</title> | |
| <polygon fill="#f8f8f8" stroke="black" points="1008,-2004 602,-2004 602,-1870 1008,-1870 1008,-2004"/> | |
| <text text-anchor="start" x="610" y="-1987.2" font-family="Times New Roman,serif" font-size="16.00">Type: cpu</text> | |
| <text text-anchor="start" x="610" y="-1969.2" font-family="Times New Roman,serif" font-size="16.00">Time: Apr 19, 2019 at 7:01pm (CEST)</text> | |
| <text text-anchor="start" x="610" y="-1951.2" font-family="Times New Roman,serif" font-size="16.00">Duration: 30.10s, Total samples = 11.27s (37.44%)</text> | |
| <text text-anchor="start" x="610" y="-1933.2" font-family="Times New Roman,serif" font-size="16.00">Showing nodes accounting for 11.06s, 98.14% of 11.27s total</text> | |
| <text text-anchor="start" x="610" y="-1915.2" font-family="Times New Roman,serif" font-size="16.00">Dropped 119 nodes (cum <= 0.06s)</text> | |
| <text text-anchor="start" x="610" y="-1897.2" font-family="Times New Roman,serif" font-size="16.00">Dropped 5 edges (freq <= 0.01s)</text> | |
| <text text-anchor="start" x="610" y="-1879.2" font-family="Times New Roman,serif" font-size="16.00">Showing top 80 nodes out of 99</text> | |
| </g> | |
| <!-- N1 --> | |
| <g id="node1" class="node"><title>N1</title> | |
| <g id="a_node1"><a xlink:title="runtime.cgocall (11.04s)"> | |
| <polygon fill="#edd5d5" stroke="#b20100" points="558,-86 382,-86 382,-0 558,-0 558,-86"/> | |
| <text text-anchor="middle" x="470" y="-62.8" font-family="Times New Roman,serif" font-size="24.00">runtime</text> | |
| <text text-anchor="middle" x="470" y="-36.8" font-family="Times New Roman,serif" font-size="24.00">cgocall</text> | |
| <text text-anchor="middle" x="470" y="-10.8" font-family="Times New Roman,serif" font-size="24.00">11.04s (97.96%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2 --> | |
| <g id="node2" class="node"><title>N2</title> | |
| <g id="a_node2"><a xlink:title="os/exec.(*Cmd).Start.func1 (6.97s)"> | |
| <polygon fill="#edd8d5" stroke="#b21700" points="513.5,-951 426.5,-951 426.5,-898 513.5,-898 513.5,-951"/> | |
| <text text-anchor="middle" x="470" y="-940.6" font-family="Times New Roman,serif" font-size="8.00">exec</text> | |
| <text text-anchor="middle" x="470" y="-931.6" font-family="Times New Roman,serif" font-size="8.00">(*Cmd)</text> | |
| <text text-anchor="middle" x="470" y="-922.6" font-family="Times New Roman,serif" font-size="8.00">Start</text> | |
| <text text-anchor="middle" x="470" y="-913.6" font-family="Times New Roman,serif" font-size="8.00">func1</text> | |
| <text text-anchor="middle" x="470" y="-904.6" font-family="Times New Roman,serif" font-size="8.00">0 of 6.97s (61.85%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N28 --> | |
| <g id="node28" class="node"><title>N28</title> | |
| <g id="a_node28"><a xlink:title="os/exec.(*Cmd).writerDescriptor.func1 (6.97s)"> | |
| <polygon fill="#edd8d5" stroke="#b21700" points="513.5,-847 426.5,-847 426.5,-794 513.5,-794 513.5,-847"/> | |
| <text text-anchor="middle" x="470" y="-836.6" font-family="Times New Roman,serif" font-size="8.00">exec</text> | |
| <text text-anchor="middle" x="470" y="-827.6" font-family="Times New Roman,serif" font-size="8.00">(*Cmd)</text> | |
| <text text-anchor="middle" x="470" y="-818.6" font-family="Times New Roman,serif" font-size="8.00">writerDescriptor</text> | |
| <text text-anchor="middle" x="470" y="-809.6" font-family="Times New Roman,serif" font-size="8.00">func1</text> | |
| <text text-anchor="middle" x="470" y="-800.6" font-family="Times New Roman,serif" font-size="8.00">0 of 6.97s (61.85%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N28 --> | |
| <g id="edge5" class="edge"><title>N2->N28</title> | |
| <g id="a_edge5"><a xlink:title="os/exec.(*Cmd).Start.func1 -> os/exec.(*Cmd).writerDescriptor.func1 (6.97s)"> | |
| <path fill="none" stroke="#b21700" stroke-width="4" d="M470,-897.761C470,-885.56 470,-870.779 470,-857.49"/> | |
| <polygon fill="#b21700" stroke="#b21700" stroke-width="4" points="473.5,-857.231 470,-847.231 466.5,-857.231 473.5,-857.231"/> | |
| </a> | |
| </g> | |
| <g id="a_edge5-label"><a xlink:title="os/exec.(*Cmd).Start.func1 -> os/exec.(*Cmd).writerDescriptor.func1 (6.97s)"> | |
| <text text-anchor="middle" x="487" y="-868.8" font-family="Times New Roman,serif" font-size="14.00"> 6.97s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N3 --> | |
| <g id="node3" class="node"><title>N3</title> | |
| <g id="a_node3"><a xlink:title="code.gitea.io/gitea/modules/git.targetedSearch (2.69s)"> | |
| <polygon fill="#edddd5" stroke="#b23e00" points="172.5,-942.5 85.5,-942.5 85.5,-906.5 172.5,-906.5 172.5,-942.5"/> | |
| <text text-anchor="middle" x="129" y="-931.6" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="129" y="-922.6" font-family="Times New Roman,serif" font-size="8.00">targetedSearch</text> | |
| <text text-anchor="middle" x="129" y="-913.6" font-family="Times New Roman,serif" font-size="8.00">0 of 2.69s (23.87%)</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.(*Repository).getCommit (2.52s)"> | |
| <polygon fill="#edded5" stroke="#b24000" points="172.5,-842.5 85.5,-842.5 85.5,-798.5 172.5,-798.5 172.5,-842.5"/> | |
| <text text-anchor="middle" x="129" y="-832.1" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="129" y="-823.1" font-family="Times New Roman,serif" font-size="8.00">(*Repository)</text> | |
| <text text-anchor="middle" x="129" y="-814.1" font-family="Times New Roman,serif" font-size="8.00">getCommit</text> | |
| <text text-anchor="middle" x="129" y="-805.1" font-family="Times New Roman,serif" font-size="8.00">0 of 2.52s (22.36%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N3->N8 --> | |
| <g id="edge18" class="edge"><title>N3->N8</title> | |
| <g id="a_edge18"><a xlink:title="code.gitea.io/gitea/modules/git.targetedSearch -> code.gitea.io/gitea/modules/git.(*Repository).getCommit (2.08s)"> | |
| <path fill="none" stroke="#b24f0d" d="M129,-906.197C129,-891.7 129,-870.627 129,-853.128"/> | |
| <polygon fill="#b24f0d" stroke="#b24f0d" points="132.5,-852.785 129,-842.786 125.5,-852.786 132.5,-852.785"/> | |
| </a> | |
| </g> | |
| <g id="a_edge18-label"><a xlink:title="code.gitea.io/gitea/modules/git.targetedSearch -> code.gitea.io/gitea/modules/git.(*Repository).getCommit (2.08s)"> | |
| <text text-anchor="middle" x="146" y="-868.8" font-family="Times New Roman,serif" font-size="14.00"> 2.08s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N14 --> | |
| <g id="node14" class="node"><title>N14</title> | |
| <g id="a_node14"><a xlink:title="code.gitea.io/gitea/modules/git.(*Command).RunInDir (0.82s)"> | |
| <polygon fill="#ede9e4" stroke="#b29471" points="287.5,-842.5 204.5,-842.5 204.5,-798.5 287.5,-798.5 287.5,-842.5"/> | |
| <text text-anchor="middle" x="246" y="-832.1" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="246" y="-823.1" font-family="Times New Roman,serif" font-size="8.00">(*Command)</text> | |
| <text text-anchor="middle" x="246" y="-814.1" font-family="Times New Roman,serif" font-size="8.00">RunInDir</text> | |
| <text text-anchor="middle" x="246" y="-805.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.82s (7.28%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N3->N14 --> | |
| <g id="edge45" class="edge"><title>N3->N14</title> | |
| <g id="a_edge45"><a xlink:title="code.gitea.io/gitea/modules/git.targetedSearch -> code.gitea.io/gitea/modules/git.(*Command).RunInDir (0.61s)"> | |
| <path fill="none" stroke="#b29e82" d="M144.601,-906.414C155.923,-894.358 171.848,-878.089 187,-865 193.437,-859.439 200.535,-853.816 207.51,-848.543"/> | |
| <polygon fill="#b29e82" stroke="#b29e82" points="209.654,-851.311 215.595,-842.538 205.48,-845.692 209.654,-851.311"/> | |
| </a> | |
| </g> | |
| <g id="a_edge45-label"><a xlink:title="code.gitea.io/gitea/modules/git.targetedSearch -> code.gitea.io/gitea/modules/git.(*Command).RunInDir (0.61s)"> | |
| <text text-anchor="middle" x="204" y="-868.8" font-family="Times New Roman,serif" font-size="14.00"> 0.61s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4 --> | |
| <g id="node4" class="node"><title>N4</title> | |
| <g id="a_node4"><a xlink:title="reflect.Value.call (1.37s)"> | |
| <polygon fill="#ede5de" stroke="#b27846" points="694.5,-1530 607.5,-1530 607.5,-1494 694.5,-1494 694.5,-1530"/> | |
| <text text-anchor="middle" x="651" y="-1519.1" font-family="Times New Roman,serif" font-size="8.00">Value</text> | |
| <text text-anchor="middle" x="651" y="-1510.1" font-family="Times New Roman,serif" font-size="8.00">call</text> | |
| <text text-anchor="middle" x="651" y="-1501.1" font-family="Times New Roman,serif" font-size="8.00">0 of 1.37s (12.16%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N24 --> | |
| <g id="node24" class="node"><title>N24</title> | |
| <g id="a_node24"><a xlink:title="code.gitea.io/gitea/modules/context.RepoAssignment.func1 (0.12s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a8" points="458.5,-1437 375.5,-1437 375.5,-1393 458.5,-1393 458.5,-1437"/> | |
| <text text-anchor="middle" x="417" y="-1426.6" font-family="Times New Roman,serif" font-size="8.00">context</text> | |
| <text text-anchor="middle" x="417" y="-1417.6" font-family="Times New Roman,serif" font-size="8.00">RepoAssignment</text> | |
| <text text-anchor="middle" x="417" y="-1408.6" font-family="Times New Roman,serif" font-size="8.00">func1</text> | |
| <text text-anchor="middle" x="417" y="-1399.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.12s (1.06%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N24 --> | |
| <g id="edge70" class="edge"><title>N4->N24</title> | |
| <g id="a_edge70"><a xlink:title="reflect.Value.call -> code.gitea.io/gitea/modules/context.RepoAssignment.func1 (0.12s)"> | |
| <path fill="none" stroke="#b2b0a8" d="M607.316,-1505.45C573.955,-1500.04 527.492,-1489.93 490,-1472 474.751,-1464.71 459.635,-1453.88 447.148,-1443.68"/> | |
| <polygon fill="#b2b0a8" stroke="#b2b0a8" points="449.251,-1440.87 439.347,-1437.11 444.743,-1446.23 449.251,-1440.87"/> | |
| </a> | |
| </g> | |
| <g id="a_edge70-label"><a xlink:title="reflect.Value.call -> code.gitea.io/gitea/modules/context.RepoAssignment.func1 (0.12s)"> | |
| <text text-anchor="middle" x="507" y="-1460.8" font-family="Times New Roman,serif" font-size="14.00"> 0.12s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N30 --> | |
| <g id="node30" class="node"><title>N30</title> | |
| <g id="a_node30"><a xlink:title="code.gitea.io/gitea/modules/context.RepoRefByType.func1 (0.09s)"> | |
| <polygon fill="#edecec" stroke="#b2b0ab" points="494,-1335.5 416,-1335.5 416,-1291.5 494,-1291.5 494,-1335.5"/> | |
| <text text-anchor="middle" x="455" y="-1325.1" font-family="Times New Roman,serif" font-size="8.00">context</text> | |
| <text text-anchor="middle" x="455" y="-1316.1" font-family="Times New Roman,serif" font-size="8.00">RepoRefByType</text> | |
| <text text-anchor="middle" x="455" y="-1307.1" font-family="Times New Roman,serif" font-size="8.00">func1</text> | |
| <text text-anchor="middle" x="455" y="-1298.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.09s (0.8%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N30 --> | |
| <g id="edge79" class="edge"><title>N4->N30</title> | |
| <g id="a_edge79"><a xlink:title="reflect.Value.call -> code.gitea.io/gitea/modules/context.RepoRefByType.func1 (0.09s)"> | |
| <path fill="none" stroke="#b2b0ab" d="M633.949,-1493.91C600.193,-1460.06 524.555,-1384.23 483.246,-1342.82"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="485.49,-1340.11 475.95,-1335.5 480.534,-1345.06 485.49,-1340.11"/> | |
| </a> | |
| </g> | |
| <g id="a_edge79-label"><a xlink:title="reflect.Value.call -> code.gitea.io/gitea/modules/context.RepoRefByType.func1 (0.09s)"> | |
| <text text-anchor="middle" x="596" y="-1411.3" font-family="Times New Roman,serif" font-size="14.00"> 0.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N37 --> | |
| <g id="node37" class="node"><title>N37</title> | |
| <g id="a_node37"><a xlink:title="code.gitea.io/gitea/modules/context.Recovery.func1 (1.37s)"> | |
| <polygon fill="#ede5de" stroke="#b27846" points="878.5,-1437 791.5,-1437 791.5,-1393 878.5,-1393 878.5,-1437"/> | |
| <text text-anchor="middle" x="835" y="-1426.6" font-family="Times New Roman,serif" font-size="8.00">context</text> | |
| <text text-anchor="middle" x="835" y="-1417.6" font-family="Times New Roman,serif" font-size="8.00">Recovery</text> | |
| <text text-anchor="middle" x="835" y="-1408.6" font-family="Times New Roman,serif" font-size="8.00">func1</text> | |
| <text text-anchor="middle" x="835" y="-1399.6" font-family="Times New Roman,serif" font-size="8.00">0 of 1.37s (12.16%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N37 --> | |
| <g id="edge25" class="edge"><title>N4->N37</title> | |
| <g id="a_edge25"><a xlink:title="reflect.Value.call -> code.gitea.io/gitea/modules/context.Recovery.func1 (1.37s)"> | |
| <path fill="none" stroke="#b27846" d="M685.642,-1493.89C699.199,-1487.13 714.862,-1479.27 729,-1472 747.837,-1462.32 768.447,-1451.48 786.445,-1441.94"/> | |
| <polygon fill="#b27846" stroke="#b27846" points="788.403,-1444.87 795.595,-1437.09 785.121,-1438.68 788.403,-1444.87"/> | |
| </a> | |
| </g> | |
| <g id="a_edge25-label"><a xlink:title="reflect.Value.call -> code.gitea.io/gitea/modules/context.Recovery.func1 (1.37s)"> | |
| <text text-anchor="middle" x="773" y="-1460.8" font-family="Times New Roman,serif" font-size="14.00"> 1.37s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N39 --> | |
| <g id="node39" class="node"><title>N39</title> | |
| <g id="a_node39"><a xlink:title="code.gitea.io/gitea/modules/git.(*TreeEntry).GetSubJumpablePathName (0.48s)"> | |
| <polygon fill="#edebe8" stroke="#b2a38c" points="118,-1437 10,-1437 10,-1393 118,-1393 118,-1437"/> | |
| <text text-anchor="middle" x="64" y="-1426.6" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="64" y="-1417.6" font-family="Times New Roman,serif" font-size="8.00">(*TreeEntry)</text> | |
| <text text-anchor="middle" x="64" y="-1408.6" font-family="Times New Roman,serif" font-size="8.00">GetSubJumpablePathName</text> | |
| <text text-anchor="middle" x="64" y="-1399.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.48s (4.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N39 --> | |
| <g id="edge59" class="edge"><title>N4->N39</title> | |
| <g id="a_edge59"><a xlink:title="reflect.Value.call -> code.gitea.io/gitea/modules/git.(*TreeEntry).GetSubJumpablePathName (0.48s)"> | |
| <path fill="none" stroke="#b2a38c" d="M607.343,-1509.22C517.94,-1504.67 307.97,-1489.4 127.78,-1439.05"/> | |
| <polygon fill="#b2a38c" stroke="#b2a38c" points="128.713,-1435.67 118.137,-1436.31 126.801,-1442.41 128.713,-1435.67"/> | |
| </a> | |
| </g> | |
| <g id="a_edge59-label"><a xlink:title="reflect.Value.call -> code.gitea.io/gitea/modules/git.(*TreeEntry).GetSubJumpablePathName (0.48s)"> | |
| <text text-anchor="middle" x="286" y="-1460.8" font-family="Times New Roman,serif" font-size="14.00"> 0.48s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N46 --> | |
| <g id="node46" class="node"><title>N46</title> | |
| <g id="a_node46"><a xlink:title="code.gitea.io/gitea/routers/repo.Home (0.66s)"> | |
| <polygon fill="#edeae6" stroke="#b29c7e" points="762.5,-1433 679.5,-1433 679.5,-1397 762.5,-1397 762.5,-1433"/> | |
| <text text-anchor="middle" x="721" y="-1422.1" font-family="Times New Roman,serif" font-size="8.00">repo</text> | |
| <text text-anchor="middle" x="721" y="-1413.1" font-family="Times New Roman,serif" font-size="8.00">Home</text> | |
| <text text-anchor="middle" x="721" y="-1404.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.66s (5.86%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N46 --> | |
| <g id="edge44" class="edge"><title>N4->N46</title> | |
| <g id="a_edge44"><a xlink:title="reflect.Value.call -> code.gitea.io/gitea/routers/repo.Home (0.66s)"> | |
| <path fill="none" stroke="#b29c7e" d="M663.839,-1493.58C674.595,-1478.98 690.093,-1457.95 702.239,-1441.46"/> | |
| <polygon fill="#b29c7e" stroke="#b29c7e" points="705.128,-1443.44 708.242,-1433.31 699.493,-1439.29 705.128,-1443.44"/> | |
| </a> | |
| </g> | |
| <g id="a_edge44-label"><a xlink:title="reflect.Value.call -> code.gitea.io/gitea/routers/repo.Home (0.66s)"> | |
| <text text-anchor="middle" x="708" y="-1460.8" font-family="Times New Roman,serif" font-size="14.00"> 0.66s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N47 --> | |
| <g id="node47" class="node"><title>N47</title> | |
| <g id="a_node47"><a xlink:title="code.gitea.io/gitea/routers/repo.SetEditorconfigIfExists (0.50s)"> | |
| <polygon fill="#edebe7" stroke="#b2a28a" points="234,-1433 136,-1433 136,-1397 234,-1397 234,-1433"/> | |
| <text text-anchor="middle" x="185" y="-1422.1" font-family="Times New Roman,serif" font-size="8.00">repo</text> | |
| <text text-anchor="middle" x="185" y="-1413.1" font-family="Times New Roman,serif" font-size="8.00">SetEditorconfigIfExists</text> | |
| <text text-anchor="middle" x="185" y="-1404.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.50s (4.44%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N47 --> | |
| <g id="edge48" class="edge"><title>N4->N47</title> | |
| <g id="a_edge48"><a xlink:title="reflect.Value.call -> code.gitea.io/gitea/routers/repo.SetEditorconfigIfExists (0.50s)"> | |
| <path fill="none" stroke="#b2a28a" d="M607.467,-1506.27C532.145,-1497.45 373.086,-1475.92 243,-1439 240.216,-1438.21 237.381,-1437.33 234.536,-1436.4"/> | |
| <polygon fill="#b2a28a" stroke="#b2a28a" points="235.482,-1433.02 224.887,-1433.03 233.175,-1439.63 235.482,-1433.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge48-label"><a xlink:title="reflect.Value.call -> code.gitea.io/gitea/routers/repo.SetEditorconfigIfExists (0.50s)"> | |
| <text text-anchor="middle" x="393" y="-1460.8" font-family="Times New Roman,serif" font-size="14.00"> 0.50s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5 --> | |
| <g id="node5" class="node"><title>N5</title> | |
| <g id="a_node5"><a xlink:title="code.gitea.io/gitea/modules/git.(*Command).RunInDirTimeout (3.86s)"> | |
| <polygon fill="#eddbd5" stroke="#b23100" points="289.5,-648 202.5,-648 202.5,-604 289.5,-604 289.5,-648"/> | |
| <text text-anchor="middle" x="246" y="-637.6" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="246" y="-628.6" font-family="Times New Roman,serif" font-size="8.00">(*Command)</text> | |
| <text text-anchor="middle" x="246" y="-619.6" font-family="Times New Roman,serif" font-size="8.00">RunInDirTimeout</text> | |
| <text text-anchor="middle" x="246" y="-610.6" font-family="Times New Roman,serif" font-size="8.00">0 of 3.86s (34.25%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11 --> | |
| <g id="node11" class="node"><title>N11</title> | |
| <g id="a_node11"><a xlink:title="code.gitea.io/gitea/modules/git.(*Command).RunInDirTimeoutPipeline (3.86s)"> | |
| <polygon fill="#eddbd5" stroke="#b23100" points="305.5,-553 198.5,-553 198.5,-509 305.5,-509 305.5,-553"/> | |
| <text text-anchor="middle" x="252" y="-542.6" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="252" y="-533.6" font-family="Times New Roman,serif" font-size="8.00">(*Command)</text> | |
| <text text-anchor="middle" x="252" y="-524.6" font-family="Times New Roman,serif" font-size="8.00">RunInDirTimeoutPipeline</text> | |
| <text text-anchor="middle" x="252" y="-515.6" font-family="Times New Roman,serif" font-size="8.00">0 of 3.86s (34.25%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5->N11 --> | |
| <g id="edge10" class="edge"><title>N5->N11</title> | |
| <g id="a_edge10"><a xlink:title="code.gitea.io/gitea/modules/git.(*Command).RunInDirTimeout -> code.gitea.io/gitea/modules/git.(*Command).RunInDirTimeoutPipeline (3.86s)"> | |
| <path fill="none" stroke="#b23100" stroke-width="2" d="M247.361,-603.897C248.136,-591.887 249.121,-576.617 249.984,-563.242"/> | |
| <polygon fill="#b23100" stroke="#b23100" stroke-width="2" points="253.493,-563.224 250.644,-553.02 246.507,-562.774 253.493,-563.224"/> | |
| </a> | |
| </g> | |
| <g id="a_edge10-label"><a xlink:title="code.gitea.io/gitea/modules/git.(*Command).RunInDirTimeout -> code.gitea.io/gitea/modules/git.(*Command).RunInDirTimeoutPipeline (3.86s)"> | |
| <text text-anchor="middle" x="267" y="-574.8" font-family="Times New Roman,serif" font-size="14.00"> 3.86s</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/gopkg.in/macaron%2ev1.(*Context).Next (1.45s)"> | |
| <polygon fill="#ede4dd" stroke="#b2743f" points="907.5,-1335.5 820.5,-1335.5 820.5,-1291.5 907.5,-1291.5 907.5,-1335.5"/> | |
| <text text-anchor="middle" x="864" y="-1325.1" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="864" y="-1316.1" font-family="Times New Roman,serif" font-size="8.00">(*Context)</text> | |
| <text text-anchor="middle" x="864" y="-1307.1" font-family="Times New Roman,serif" font-size="8.00">Next</text> | |
| <text text-anchor="middle" x="864" y="-1298.1" font-family="Times New Roman,serif" font-size="8.00">0 of 1.45s (12.87%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10 --> | |
| <g id="node10" class="node"><title>N10</title> | |
| <g id="a_node10"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).run (1.45s)"> | |
| <polygon fill="#ede4dd" stroke="#b2743f" points="907.5,-1236 820.5,-1236 820.5,-1192 907.5,-1192 907.5,-1236"/> | |
| <text text-anchor="middle" x="864" y="-1225.6" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="864" y="-1216.6" font-family="Times New Roman,serif" font-size="8.00">(*Context)</text> | |
| <text text-anchor="middle" x="864" y="-1207.6" font-family="Times New Roman,serif" font-size="8.00">run</text> | |
| <text text-anchor="middle" x="864" y="-1198.6" font-family="Times New Roman,serif" font-size="8.00">0 of 1.45s (12.87%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6->N10 --> | |
| <g id="edge19" class="edge"><title>N6->N10</title> | |
| <g id="a_edge19"><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 (1.45s)"> | |
| <path fill="none" stroke="#b2743f" d="M864,-1291.34C864,-1278.18 864,-1261.02 864,-1246.31"/> | |
| <polygon fill="#b2743f" stroke="#b2743f" points="867.5,-1246.11 864,-1236.11 860.5,-1246.11 867.5,-1246.11"/> | |
| </a> | |
| </g> | |
| <g id="a_edge19-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 (1.45s)"> | |
| <text text-anchor="middle" x="881" y="-1257.8" font-family="Times New Roman,serif" font-size="14.00"> 1.45s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7 --> | |
| <g id="node7" class="node"><title>N7</title> | |
| <g id="a_node7"><a xlink:title="code.gitea.io/gitea/modules/git.(*Command).RunInDirBytes (3.04s)"> | |
| <polygon fill="#edddd5" stroke="#b23a00" points="172.5,-743 85.5,-743 85.5,-699 172.5,-699 172.5,-743"/> | |
| <text text-anchor="middle" x="129" y="-732.6" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="129" y="-723.6" font-family="Times New Roman,serif" font-size="8.00">(*Command)</text> | |
| <text text-anchor="middle" x="129" y="-714.6" font-family="Times New Roman,serif" font-size="8.00">RunInDirBytes</text> | |
| <text text-anchor="middle" x="129" y="-705.6" font-family="Times New Roman,serif" font-size="8.00">0 of 3.04s (26.97%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N5 --> | |
| <g id="edge16" class="edge"><title>N7->N5</title> | |
| <g id="a_edge16"><a xlink:title="code.gitea.io/gitea/modules/git.(*Command).RunInDirBytes -> code.gitea.io/gitea/modules/git.(*Command).RunInDirTimeout (3.04s)"> | |
| <path fill="none" stroke="#b23a00" stroke-width="2" d="M155.549,-698.897C172.154,-685.698 193.713,-668.562 211.617,-654.33"/> | |
| <polygon fill="#b23a00" stroke="#b23a00" stroke-width="2" points="213.906,-656.982 219.556,-648.02 209.55,-651.502 213.906,-656.982"/> | |
| </a> | |
| </g> | |
| <g id="a_edge16-label"><a xlink:title="code.gitea.io/gitea/modules/git.(*Command).RunInDirBytes -> code.gitea.io/gitea/modules/git.(*Command).RunInDirTimeout (3.04s)"> | |
| <text text-anchor="middle" x="212" y="-669.8" font-family="Times New Roman,serif" font-size="14.00"> 3.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8->N7 --> | |
| <g id="edge17" class="edge"><title>N8->N7</title> | |
| <g id="a_edge17"><a xlink:title="code.gitea.io/gitea/modules/git.(*Repository).getCommit -> code.gitea.io/gitea/modules/git.(*Command).RunInDirBytes (2.52s)"> | |
| <path fill="none" stroke="#b24000" stroke-width="2" d="M129,-798.344C129,-785.184 129,-768.024 129,-753.307"/> | |
| <polygon fill="#b24000" stroke="#b24000" stroke-width="2" points="132.5,-753.115 129,-743.115 125.5,-753.115 132.5,-753.115"/> | |
| </a> | |
| </g> | |
| <g id="a_edge17-label"><a xlink:title="code.gitea.io/gitea/modules/git.(*Repository).getCommit -> code.gitea.io/gitea/modules/git.(*Command).RunInDirBytes (2.52s)"> | |
| <text text-anchor="middle" x="146" y="-764.8" font-family="Times New Roman,serif" font-size="14.00"> 2.52s</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/github.com/go-macaron/inject.(*injector).Invoke (1.45s)"> | |
| <polygon fill="#ede4dd" stroke="#b2743f" points="907.5,-1141 820.5,-1141 820.5,-1097 907.5,-1097 907.5,-1141"/> | |
| <text text-anchor="middle" x="864" y="-1130.6" font-family="Times New Roman,serif" font-size="8.00">inject</text> | |
| <text text-anchor="middle" x="864" y="-1121.6" font-family="Times New Roman,serif" font-size="8.00">(*injector)</text> | |
| <text text-anchor="middle" x="864" y="-1112.6" font-family="Times New Roman,serif" font-size="8.00">Invoke</text> | |
| <text text-anchor="middle" x="864" y="-1103.6" font-family="Times New Roman,serif" font-size="8.00">0 of 1.45s (12.87%)</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/github.com/go-macaron/inject.(*injector).fastInvoke (0.98s)"> | |
| <polygon fill="#ede8e2" stroke="#b28d64" points="905.5,-1046 822.5,-1046 822.5,-1002 905.5,-1002 905.5,-1046"/> | |
| <text text-anchor="middle" x="864" y="-1035.6" font-family="Times New Roman,serif" font-size="8.00">inject</text> | |
| <text text-anchor="middle" x="864" y="-1026.6" font-family="Times New Roman,serif" font-size="8.00">(*injector)</text> | |
| <text text-anchor="middle" x="864" y="-1017.6" font-family="Times New Roman,serif" font-size="8.00">fastInvoke</text> | |
| <text text-anchor="middle" x="864" y="-1008.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.98s (8.70%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N9->N16 --> | |
| <g id="edge27" class="edge"><title>N9->N16</title> | |
| <g id="a_edge27"><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 (0.98s)"> | |
| <path fill="none" stroke="#b28d64" d="M864,-1096.9C864,-1084.89 864,-1069.62 864,-1056.24"/> | |
| <polygon fill="#b28d64" stroke="#b28d64" points="867.5,-1056.02 864,-1046.02 860.5,-1056.02 867.5,-1056.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge27-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 (0.98s)"> | |
| <text text-anchor="middle" x="881" y="-1067.8" font-family="Times New Roman,serif" font-size="14.00"> 0.98s</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/github.com/go-macaron/inject.(*injector).callInvoke (1.37s)"> | |
| <polygon fill="#ede5de" stroke="#b27846" points="766.5,-458 679.5,-458 679.5,-414 766.5,-414 766.5,-458"/> | |
| <text text-anchor="middle" x="723" y="-447.6" font-family="Times New Roman,serif" font-size="8.00">inject</text> | |
| <text text-anchor="middle" x="723" y="-438.6" font-family="Times New Roman,serif" font-size="8.00">(*injector)</text> | |
| <text text-anchor="middle" x="723" y="-429.6" font-family="Times New Roman,serif" font-size="8.00">callInvoke</text> | |
| <text text-anchor="middle" x="723" y="-420.6" font-family="Times New Roman,serif" font-size="8.00">0 of 1.37s (12.16%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N9->N48 --> | |
| <g id="edge22" class="edge"><title>N9->N48</title> | |
| <g id="a_edge22"><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).callInvoke (1.37s)"> | |
| <path fill="none" stroke="#b27846" d="M835.528,-1096.88C816.148,-1079.89 794,-1054.1 794,-1025 794,-1025 794,-1025 794,-530 794,-504.405 776.8,-481.476 759.332,-464.789"/> | |
| <polygon fill="#b27846" stroke="#b27846" points="761.637,-462.155 751.878,-458.03 756.935,-467.34 761.637,-462.155"/> | |
| </a> | |
| </g> | |
| <g id="a_edge22-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).callInvoke (1.37s)"> | |
| <text text-anchor="middle" x="811" y="-764.8" font-family="Times New Roman,serif" font-size="14.00"> 1.37s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10->N9 --> | |
| <g id="edge20" class="edge"><title>N10->N9</title> | |
| <g id="a_edge20"><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 (1.45s)"> | |
| <path fill="none" stroke="#b2743f" d="M864,-1191.9C864,-1179.89 864,-1164.62 864,-1151.24"/> | |
| <polygon fill="#b2743f" stroke="#b2743f" points="867.5,-1151.02 864,-1141.02 860.5,-1151.02 867.5,-1151.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge20-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 (1.45s)"> | |
| <text text-anchor="middle" x="881" y="-1162.8" font-family="Times New Roman,serif" font-size="14.00"> 1.45s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N77 --> | |
| <g id="node77" class="node"><title>N77</title> | |
| <g id="a_node77"><a xlink:title="os/exec.(*Cmd).Start (0.21s)"> | |
| <polygon fill="#edecea" stroke="#b2ada1" points="406.5,-458 323.5,-458 323.5,-414 406.5,-414 406.5,-458"/> | |
| <text text-anchor="middle" x="365" y="-447.6" font-family="Times New Roman,serif" font-size="8.00">exec</text> | |
| <text text-anchor="middle" x="365" y="-438.6" font-family="Times New Roman,serif" font-size="8.00">(*Cmd)</text> | |
| <text text-anchor="middle" x="365" y="-429.6" font-family="Times New Roman,serif" font-size="8.00">Start</text> | |
| <text text-anchor="middle" x="365" y="-420.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.21s (1.86%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11->N77 --> | |
| <g id="edge64" class="edge"><title>N11->N77</title> | |
| <g id="a_edge64"><a xlink:title="code.gitea.io/gitea/modules/git.(*Command).RunInDirTimeoutPipeline -> os/exec.(*Cmd).Start (0.21s)"> | |
| <path fill="none" stroke="#b2ada1" d="M277.641,-508.897C293.534,-495.817 314.125,-478.87 331.325,-464.715"/> | |
| <polygon fill="#b2ada1" stroke="#b2ada1" points="333.963,-467.077 339.46,-458.02 329.515,-461.672 333.963,-467.077"/> | |
| </a> | |
| </g> | |
| <g id="a_edge64-label"><a xlink:title="code.gitea.io/gitea/modules/git.(*Command).RunInDirTimeoutPipeline -> os/exec.(*Cmd).Start (0.21s)"> | |
| <text text-anchor="middle" x="333" y="-479.8" font-family="Times New Roman,serif" font-size="14.00"> 0.21s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N78 --> | |
| <g id="node78" class="node"><title>N78</title> | |
| <g id="a_node78"><a xlink:title="os/exec.(*Cmd).Wait (3.65s)"> | |
| <polygon fill="#eddcd5" stroke="#b23300" points="304.5,-458 217.5,-458 217.5,-414 304.5,-414 304.5,-458"/> | |
| <text text-anchor="middle" x="261" y="-447.6" font-family="Times New Roman,serif" font-size="8.00">exec</text> | |
| <text text-anchor="middle" x="261" y="-438.6" font-family="Times New Roman,serif" font-size="8.00">(*Cmd)</text> | |
| <text text-anchor="middle" x="261" y="-429.6" font-family="Times New Roman,serif" font-size="8.00">Wait</text> | |
| <text text-anchor="middle" x="261" y="-420.6" font-family="Times New Roman,serif" font-size="8.00">0 of 3.65s (32.39%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11->N78 --> | |
| <g id="edge12" class="edge"><title>N11->N78</title> | |
| <g id="a_edge12"><a xlink:title="code.gitea.io/gitea/modules/git.(*Command).RunInDirTimeoutPipeline -> os/exec.(*Cmd).Wait (3.65s)"> | |
| <path fill="none" stroke="#b23300" stroke-width="2" d="M254.042,-508.897C255.204,-496.887 256.682,-481.617 257.977,-468.242"/> | |
| <polygon fill="#b23300" stroke="#b23300" stroke-width="2" points="261.486,-468.31 258.966,-458.02 254.519,-467.636 261.486,-468.31"/> | |
| </a> | |
| </g> | |
| <g id="a_edge12-label"><a xlink:title="code.gitea.io/gitea/modules/git.(*Command).RunInDirTimeoutPipeline -> os/exec.(*Cmd).Wait (3.65s)"> | |
| <text text-anchor="middle" x="275" y="-479.8" font-family="Times New Roman,serif" font-size="14.00"> 3.65s</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/macaron%2ev1.LoggerInvoker.Invoke (0.97s)"> | |
| <polygon fill="#ede8e2" stroke="#b28d65" points="905.5,-946.5 822.5,-946.5 822.5,-902.5 905.5,-902.5 905.5,-946.5"/> | |
| <text text-anchor="middle" x="864" y="-936.1" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="864" y="-927.1" font-family="Times New Roman,serif" font-size="8.00">LoggerInvoker</text> | |
| <text text-anchor="middle" x="864" y="-918.1" font-family="Times New Roman,serif" font-size="8.00">Invoke</text> | |
| <text text-anchor="middle" x="864" y="-909.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.97s (8.61%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45 --> | |
| <g id="node45" class="node"><title>N45</title> | |
| <g id="a_node45"><a xlink:title="code.gitea.io/gitea/modules/public.(*Options).staticHandler.func1 (0.07s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ac" points="905.5,-847 822.5,-847 822.5,-794 905.5,-794 905.5,-847"/> | |
| <text text-anchor="middle" x="864" y="-836.6" font-family="Times New Roman,serif" font-size="8.00">public</text> | |
| <text text-anchor="middle" x="864" y="-827.6" font-family="Times New Roman,serif" font-size="8.00">(*Options)</text> | |
| <text text-anchor="middle" x="864" y="-818.6" font-family="Times New Roman,serif" font-size="8.00">staticHandler</text> | |
| <text text-anchor="middle" x="864" y="-809.6" font-family="Times New Roman,serif" font-size="8.00">func1</text> | |
| <text text-anchor="middle" x="864" y="-800.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.07s (0.62%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12->N45 --> | |
| <g id="edge82" class="edge"><title>N12->N45</title> | |
| <g id="a_edge82"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.LoggerInvoker.Invoke -> code.gitea.io/gitea/modules/public.(*Options).staticHandler.func1 (0.07s)"> | |
| <path fill="none" stroke="#b2b1ac" d="M864,-902.366C864,-889.375 864,-872.392 864,-857.346"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="867.5,-857.311 864,-847.311 860.5,-857.311 867.5,-857.311"/> | |
| </a> | |
| </g> | |
| <g id="a_edge82-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.LoggerInvoker.Invoke -> code.gitea.io/gitea/modules/public.(*Options).staticHandler.func1 (0.07s)"> | |
| <text text-anchor="middle" x="881" y="-868.8" font-family="Times New Roman,serif" font-size="14.00"> 0.07s</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 (0.97s)"> | |
| <polygon fill="#ede8e2" stroke="#b28d65" points="764.5,-842.5 681.5,-842.5 681.5,-798.5 764.5,-798.5 764.5,-842.5"/> | |
| <text text-anchor="middle" x="723" y="-832.1" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="723" y="-823.1" font-family="Times New Roman,serif" font-size="8.00">Logger</text> | |
| <text text-anchor="middle" x="723" y="-814.1" font-family="Times New Roman,serif" font-size="8.00">func1</text> | |
| <text text-anchor="middle" x="723" y="-805.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.97s (8.61%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12->N60 --> | |
| <g id="edge34" class="edge"><title>N12->N60</title> | |
| <g id="a_edge34"><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 (0.97s)"> | |
| <path fill="none" stroke="#b28d65" d="M834.785,-902.366C813.232,-886.775 783.732,-865.434 760.449,-848.59"/> | |
| <polygon fill="#b28d65" stroke="#b28d65" points="762.332,-845.633 752.178,-842.607 758.229,-851.304 762.332,-845.633"/> | |
| </a> | |
| </g> | |
| <g id="a_edge34-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 (0.97s)"> | |
| <text text-anchor="middle" x="819" y="-868.8" font-family="Times New Roman,serif" font-size="14.00"> 0.97s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N61 --> | |
| <g id="node61" class="node"><title>N61</title> | |
| <g id="a_node61"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.Recovery.func1 (0.97s)"> | |
| <polygon fill="#ede8e2" stroke="#b28d65" points="1031.5,-842.5 948.5,-842.5 948.5,-798.5 1031.5,-798.5 1031.5,-842.5"/> | |
| <text text-anchor="middle" x="990" y="-832.1" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="990" y="-823.1" font-family="Times New Roman,serif" font-size="8.00">Recovery</text> | |
| <text text-anchor="middle" x="990" y="-814.1" font-family="Times New Roman,serif" font-size="8.00">func1</text> | |
| <text text-anchor="middle" x="990" y="-805.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.97s (8.61%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12->N61 --> | |
| <g id="edge35" class="edge"><title>N12->N61</title> | |
| <g id="a_edge35"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.LoggerInvoker.Invoke -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.Recovery.func1 (0.97s)"> | |
| <path fill="none" stroke="#b28d65" d="M890.107,-902.366C909.198,-886.911 935.267,-865.808 955.987,-849.035"/> | |
| <polygon fill="#b28d65" stroke="#b28d65" points="958.356,-851.62 963.926,-842.607 953.951,-846.179 958.356,-851.62"/> | |
| </a> | |
| </g> | |
| <g id="a_edge35-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.LoggerInvoker.Invoke -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.Recovery.func1 (0.97s)"> | |
| <text text-anchor="middle" x="952" y="-868.8" font-family="Times New Roman,serif" font-size="14.00"> 0.97s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13 --> | |
| <g id="node13" class="node"><title>N13</title> | |
| <g id="a_node13"><a xlink:title="reflect.Value.Call (1.37s)"> | |
| <polygon fill="#ede5de" stroke="#b27846" points="694.5,-363 607.5,-363 607.5,-319 694.5,-319 694.5,-363"/> | |
| <text text-anchor="middle" x="651" y="-352.6" font-family="Times New Roman,serif" font-size="8.00">reflect</text> | |
| <text text-anchor="middle" x="651" y="-343.6" font-family="Times New Roman,serif" font-size="8.00">Value</text> | |
| <text text-anchor="middle" x="651" y="-334.6" font-family="Times New Roman,serif" font-size="8.00">Call</text> | |
| <text text-anchor="middle" x="651" y="-325.6" font-family="Times New Roman,serif" font-size="8.00">0 of 1.37s (12.16%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13->N4 --> | |
| <g id="edge24" class="edge"><title>N13->N4</title> | |
| <g id="a_edge24"><a xlink:title="reflect.Value.Call -> reflect.Value.call (1.37s)"> | |
| <path fill="none" stroke="#b27846" d="M651,-363.053C651,-381.903 651,-410.297 651,-435 651,-1416 651,-1416 651,-1416 651,-1438.86 651,-1464.8 651,-1483.8"/> | |
| <polygon fill="#b27846" stroke="#b27846" points="647.5,-1483.84 651,-1493.84 654.5,-1483.84 647.5,-1483.84"/> | |
| </a> | |
| </g> | |
| <g id="a_edge24-label"><a xlink:title="reflect.Value.Call -> reflect.Value.call (1.37s)"> | |
| <text text-anchor="middle" x="668" y="-920.8" font-family="Times New Roman,serif" font-size="14.00"> 1.37s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N14->N5 --> | |
| <g id="edge42" class="edge"><title>N14->N5</title> | |
| <g id="a_edge42"><a xlink:title="code.gitea.io/gitea/modules/git.(*Command).RunInDir -> code.gitea.io/gitea/modules/git.(*Command).RunInDirTimeout (0.82s)"> | |
| <path fill="none" stroke="#b29471" d="M246,-798.164C246,-764.179 246,-697.586 246,-658.23"/> | |
| <polygon fill="#b29471" stroke="#b29471" points="249.5,-658.139 246,-648.139 242.5,-658.139 249.5,-658.139"/> | |
| </a> | |
| </g> | |
| <g id="a_edge42-label"><a xlink:title="code.gitea.io/gitea/modules/git.(*Command).RunInDir -> code.gitea.io/gitea/modules/git.(*Command).RunInDirTimeout (0.82s)"> | |
| <text text-anchor="middle" x="263" y="-717.3" font-family="Times New Roman,serif" font-size="14.00"> 0.82s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15 --> | |
| <g id="node15" class="node"><title>N15</title> | |
| <g id="a_node15"><a xlink:title="os.(*File).Read (7.09s)"> | |
| <polygon fill="#edd8d5" stroke="#b21700" points="513.5,-458 426.5,-458 426.5,-414 513.5,-414 513.5,-458"/> | |
| <text text-anchor="middle" x="470" y="-447.6" font-family="Times New Roman,serif" font-size="8.00">os</text> | |
| <text text-anchor="middle" x="470" y="-438.6" font-family="Times New Roman,serif" font-size="8.00">(*File)</text> | |
| <text text-anchor="middle" x="470" y="-429.6" font-family="Times New Roman,serif" font-size="8.00">Read</text> | |
| <text text-anchor="middle" x="470" y="-420.6" font-family="Times New Roman,serif" font-size="8.00">0 of 7.09s (62.91%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N72 --> | |
| <g id="node72" class="node"><title>N72</title> | |
| <g id="a_node72"><a xlink:title="os.(*File).read (7.09s)"> | |
| <polygon fill="#edd8d5" stroke="#b21700" points="513.5,-363 426.5,-363 426.5,-319 513.5,-319 513.5,-363"/> | |
| <text text-anchor="middle" x="470" y="-352.6" font-family="Times New Roman,serif" font-size="8.00">os</text> | |
| <text text-anchor="middle" x="470" y="-343.6" font-family="Times New Roman,serif" font-size="8.00">(*File)</text> | |
| <text text-anchor="middle" x="470" y="-334.6" font-family="Times New Roman,serif" font-size="8.00">read</text> | |
| <text text-anchor="middle" x="470" y="-325.6" font-family="Times New Roman,serif" font-size="8.00">0 of 7.09s (62.91%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15->N72 --> | |
| <g id="edge3" class="edge"><title>N15->N72</title> | |
| <g id="a_edge3"><a xlink:title="os.(*File).Read -> os.(*File).read (7.09s)"> | |
| <path fill="none" stroke="#b21700" stroke-width="4" d="M470,-413.897C470,-401.887 470,-386.617 470,-373.242"/> | |
| <polygon fill="#b21700" stroke="#b21700" stroke-width="4" points="473.5,-373.02 470,-363.02 466.5,-373.02 473.5,-373.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge3-label"><a xlink:title="os.(*File).Read -> os.(*File).read (7.09s)"> | |
| <text text-anchor="middle" x="487" y="-384.8" font-family="Times New Roman,serif" font-size="14.00"> 7.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16->N12 --> | |
| <g id="edge28" class="edge"><title>N16->N12</title> | |
| <g id="a_edge28"><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 (0.97s)"> | |
| <path fill="none" stroke="#b28d65" d="M864,-1001.84C864,-988.684 864,-971.524 864,-956.807"/> | |
| <polygon fill="#b28d65" stroke="#b28d65" points="867.5,-956.615 864,-946.615 860.5,-956.615 867.5,-956.615"/> | |
| </a> | |
| </g> | |
| <g id="a_edge28-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 (0.97s)"> | |
| <text text-anchor="middle" x="881" y="-972.8" font-family="Times New Roman,serif" font-size="14.00"> 0.97s</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/macaron%2ev1.ContextInvoker.Invoke (0.91s)"> | |
| <polygon fill="#ede8e3" stroke="#b2906a" points="1006.5,-946.5 923.5,-946.5 923.5,-902.5 1006.5,-902.5 1006.5,-946.5"/> | |
| <text text-anchor="middle" x="965" y="-936.1" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="965" y="-927.1" font-family="Times New Roman,serif" font-size="8.00">ContextInvoker</text> | |
| <text text-anchor="middle" x="965" y="-918.1" font-family="Times New Roman,serif" font-size="8.00">Invoke</text> | |
| <text text-anchor="middle" x="965" y="-909.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.91s (8.07%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16->N59 --> | |
| <g id="edge40" class="edge"><title>N16->N59</title> | |
| <g id="a_edge40"><a xlink:title="code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).fastInvoke -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.ContextInvoker.Invoke (0.91s)"> | |
| <path fill="none" stroke="#b2906a" d="M885.915,-1001.84C900.474,-987.79 919.759,-969.173 935.64,-953.842"/> | |
| <polygon fill="#b2906a" stroke="#b2906a" points="938.363,-956.078 943.127,-946.615 933.502,-951.042 938.363,-956.078"/> | |
| </a> | |
| </g> | |
| <g id="a_edge40-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.ContextInvoker.Invoke (0.91s)"> | |
| <text text-anchor="middle" x="935" y="-972.8" font-family="Times New Roman,serif" font-size="14.00"> 0.91s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17 --> | |
| <g id="node17" class="node"><title>N17</title> | |
| <g id="a_node17"><a xlink:title="net/http.(*conn).serve (0.97s)"> | |
| <polygon fill="#ede8e2" stroke="#b28d65" points="1109.5,-1959 1026.5,-1959 1026.5,-1915 1109.5,-1915 1109.5,-1959"/> | |
| <text text-anchor="middle" x="1068" y="-1948.6" font-family="Times New Roman,serif" font-size="8.00">http</text> | |
| <text text-anchor="middle" x="1068" y="-1939.6" font-family="Times New Roman,serif" font-size="8.00">(*conn)</text> | |
| <text text-anchor="middle" x="1068" y="-1930.6" font-family="Times New Roman,serif" font-size="8.00">serve</text> | |
| <text text-anchor="middle" x="1068" y="-1921.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.97s (8.61%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N71 --> | |
| <g id="node71" class="node"><title>N71</title> | |
| <g id="a_node71"><a xlink:title="net/http.serverHandler.ServeHTTP (0.97s)"> | |
| <polygon fill="#ede8e2" stroke="#b28d65" points="1109.5,-1819 1026.5,-1819 1026.5,-1775 1109.5,-1775 1109.5,-1819"/> | |
| <text text-anchor="middle" x="1068" y="-1808.6" font-family="Times New Roman,serif" font-size="8.00">http</text> | |
| <text text-anchor="middle" x="1068" y="-1799.6" font-family="Times New Roman,serif" font-size="8.00">serverHandler</text> | |
| <text text-anchor="middle" x="1068" y="-1790.6" font-family="Times New Roman,serif" font-size="8.00">ServeHTTP</text> | |
| <text text-anchor="middle" x="1068" y="-1781.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.97s (8.61%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17->N71 --> | |
| <g id="edge37" class="edge"><title>N17->N71</title> | |
| <g id="a_edge37"><a xlink:title="net/http.(*conn).serve -> net/http.serverHandler.ServeHTTP (0.97s)"> | |
| <path fill="none" stroke="#b28d65" d="M1068,-1914.74C1068,-1891.88 1068,-1855.31 1068,-1829.19"/> | |
| <polygon fill="#b28d65" stroke="#b28d65" points="1071.5,-1829.06 1068,-1819.06 1064.5,-1829.06 1071.5,-1829.06"/> | |
| </a> | |
| </g> | |
| <g id="a_edge37-label"><a xlink:title="net/http.(*conn).serve -> net/http.serverHandler.ServeHTTP (0.97s)"> | |
| <text text-anchor="middle" x="1085" y="-1840.8" font-family="Times New Roman,serif" font-size="14.00"> 0.97s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18 --> | |
| <g id="node18" class="node"><title>N18</title> | |
| <g id="a_node18"><a xlink:title="code.gitea.io/gitea/routers/repo.renderCode (0.66s)"> | |
| <polygon fill="#edeae6" stroke="#b29c7e" points="622.5,-1331.5 539.5,-1331.5 539.5,-1295.5 622.5,-1295.5 622.5,-1331.5"/> | |
| <text text-anchor="middle" x="581" y="-1320.6" font-family="Times New Roman,serif" font-size="8.00">repo</text> | |
| <text text-anchor="middle" x="581" y="-1311.6" font-family="Times New Roman,serif" font-size="8.00">renderCode</text> | |
| <text text-anchor="middle" x="581" y="-1302.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.66s (5.86%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N22 --> | |
| <g id="node22" class="node"><title>N22</title> | |
| <g id="a_node22"><a xlink:title="code.gitea.io/gitea/routers/repo.renderDirectory (0.18s)"> | |
| <polygon fill="#edeceb" stroke="#b2aea4" points="408.5,-942.5 325.5,-942.5 325.5,-906.5 408.5,-906.5 408.5,-942.5"/> | |
| <text text-anchor="middle" x="367" y="-931.6" font-family="Times New Roman,serif" font-size="8.00">repo</text> | |
| <text text-anchor="middle" x="367" y="-922.6" font-family="Times New Roman,serif" font-size="8.00">renderDirectory</text> | |
| <text text-anchor="middle" x="367" y="-913.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.18s (1.60%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18->N22 --> | |
| <g id="edge69" class="edge"><title>N18->N22</title> | |
| <g id="a_edge69"><a xlink:title="code.gitea.io/gitea/routers/repo.renderCode -> code.gitea.io/gitea/routers/repo.renderDirectory (0.18s)"> | |
| <path fill="none" stroke="#b2aea4" d="M547.859,-1295.48C520.796,-1278.96 487,-1251.09 487,-1215 487,-1215 487,-1215 487,-1023 487,-1001.72 440.964,-969.395 405.919,-947.873"/> | |
| <polygon fill="#b2aea4" stroke="#b2aea4" points="407.649,-944.829 397.281,-942.647 404.025,-950.818 407.649,-944.829"/> | |
| </a> | |
| </g> | |
| <g id="a_edge69-label"><a xlink:title="code.gitea.io/gitea/routers/repo.renderCode -> code.gitea.io/gitea/routers/repo.renderDirectory (0.18s)"> | |
| <text text-anchor="middle" x="504" y="-1115.3" font-family="Times New Roman,serif" font-size="14.00"> 0.18s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36 --> | |
| <g id="node36" class="node"><title>N36</title> | |
| <g id="a_node36"><a xlink:title="code.gitea.io/gitea/modules/context.(*Context).HTML (0.48s)"> | |
| <polygon fill="#edebe8" stroke="#b2a38c" points="622.5,-1236 539.5,-1236 539.5,-1192 622.5,-1192 622.5,-1236"/> | |
| <text text-anchor="middle" x="581" y="-1225.6" font-family="Times New Roman,serif" font-size="8.00">context</text> | |
| <text text-anchor="middle" x="581" y="-1216.6" font-family="Times New Roman,serif" font-size="8.00">(*Context)</text> | |
| <text text-anchor="middle" x="581" y="-1207.6" font-family="Times New Roman,serif" font-size="8.00">HTML</text> | |
| <text text-anchor="middle" x="581" y="-1198.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.48s (4.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18->N36 --> | |
| <g id="edge51" class="edge"><title>N18->N36</title> | |
| <g id="a_edge51"><a xlink:title="code.gitea.io/gitea/routers/repo.renderCode -> code.gitea.io/gitea/modules/context.(*Context).HTML (0.48s)"> | |
| <path fill="none" stroke="#b2a38c" d="M581,-1295.07C581,-1281.5 581,-1262.32 581,-1246.13"/> | |
| <polygon fill="#b2a38c" stroke="#b2a38c" points="584.5,-1246.01 581,-1236.01 577.5,-1246.01 584.5,-1246.01"/> | |
| </a> | |
| </g> | |
| <g id="a_edge51-label"><a xlink:title="code.gitea.io/gitea/routers/repo.renderCode -> code.gitea.io/gitea/modules/context.(*Context).HTML (0.48s)"> | |
| <text text-anchor="middle" x="598" y="-1257.8" font-family="Times New Roman,serif" font-size="14.00"> 0.48s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19 --> | |
| <g id="node19" class="node"><title>N19</title> | |
| <g id="a_node19"><a xlink:title="syscall.Syscall (3.68s)"> | |
| <polygon fill="#eddcd5" stroke="#b23200" points="307.5,-173 220.5,-173 220.5,-137 307.5,-137 307.5,-173"/> | |
| <text text-anchor="middle" x="264" y="-162.1" font-family="Times New Roman,serif" font-size="8.00">syscall</text> | |
| <text text-anchor="middle" x="264" y="-153.1" font-family="Times New Roman,serif" font-size="8.00">Syscall</text> | |
| <text text-anchor="middle" x="264" y="-144.1" font-family="Times New Roman,serif" font-size="8.00">0 of 3.68s (32.65%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19->N1 --> | |
| <g id="edge11" class="edge"><title>N19->N1</title> | |
| <g id="a_edge11"><a xlink:title="syscall.Syscall -> runtime.cgocall (3.68s)"> | |
| <path fill="none" stroke="#b23200" stroke-width="2" d="M296.188,-136.813C319.258,-124.493 351.515,-107.269 381.984,-90.9989"/> | |
| <polygon fill="#b23200" stroke="#b23200" stroke-width="2" points="383.772,-94.0121 390.944,-86.2143 380.474,-87.8372 383.772,-94.0121"/> | |
| </a> | |
| </g> | |
| <g id="a_edge11-label"><a xlink:title="syscall.Syscall -> runtime.cgocall (3.68s)"> | |
| <text text-anchor="middle" x="372" y="-107.8" font-family="Times New Roman,serif" font-size="14.00"> 3.68s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20 --> | |
| <g id="node20" class="node"><title>N20</title> | |
| <g id="a_node20"><a xlink:title="code.gitea.io/gitea/modules/git.(*Repository).GetBranchCommit (0.49s)"> | |
| <polygon fill="#edebe7" stroke="#b2a38b" points="226.5,-1236 143.5,-1236 143.5,-1192 226.5,-1192 226.5,-1236"/> | |
| <text text-anchor="middle" x="185" y="-1225.6" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="185" y="-1216.6" font-family="Times New Roman,serif" font-size="8.00">(*Repository)</text> | |
| <text text-anchor="middle" x="185" y="-1207.6" font-family="Times New Roman,serif" font-size="8.00">GetBranchCommit</text> | |
| <text text-anchor="middle" x="185" y="-1198.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.49s (4.35%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20->N14 --> | |
| <g id="edge88" class="edge"><title>N20->N14</title> | |
| <g id="a_edge88"><a xlink:title="code.gitea.io/gitea/modules/git.(*Repository).GetBranchCommit ... code.gitea.io/gitea/modules/git.(*Command).RunInDir (0.05s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M190.776,-1191.75C195.359,-1173.02 201,-1144.9 201,-1120 201,-1120 201,-1120 201,-975.5 201,-951.465 221.451,-889.849 234.779,-852.245"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="238.091,-853.377 238.162,-842.783 231.499,-851.021 238.091,-853.377"/> | |
| </a> | |
| </g> | |
| <g id="a_edge88-label"><a xlink:title="code.gitea.io/gitea/modules/git.(*Repository).GetBranchCommit ... code.gitea.io/gitea/modules/git.(*Command).RunInDir (0.05s)"> | |
| <text text-anchor="middle" x="218" y="-1020.3" font-family="Times New Roman,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N38 --> | |
| <g id="node38" class="node"><title>N38</title> | |
| <g id="a_node38"><a xlink:title="code.gitea.io/gitea/modules/git.(*Repository).GetCommit (0.44s)"> | |
| <polygon fill="#edebe8" stroke="#b2a58f" points="131.5,-1141 48.5,-1141 48.5,-1097 131.5,-1097 131.5,-1141"/> | |
| <text text-anchor="middle" x="90" y="-1130.6" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="90" y="-1121.6" font-family="Times New Roman,serif" font-size="8.00">(*Repository)</text> | |
| <text text-anchor="middle" x="90" y="-1112.6" font-family="Times New Roman,serif" font-size="8.00">GetCommit</text> | |
| <text text-anchor="middle" x="90" y="-1103.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.44s (3.90%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20->N38 --> | |
| <g id="edge62" class="edge"><title>N20->N38</title> | |
| <g id="a_edge62"><a xlink:title="code.gitea.io/gitea/modules/git.(*Repository).GetBranchCommit -> code.gitea.io/gitea/modules/git.(*Repository).GetCommit (0.44s)"> | |
| <path fill="none" stroke="#b2a58f" d="M163.443,-1191.9C150.204,-1178.94 133.085,-1162.18 118.706,-1148.1"/> | |
| <polygon fill="#b2a58f" stroke="#b2a58f" points="121.066,-1145.51 111.472,-1141.02 116.169,-1150.52 121.066,-1145.51"/> | |
| </a> | |
| </g> | |
| <g id="a_edge62-label"><a xlink:title="code.gitea.io/gitea/modules/git.(*Repository).GetBranchCommit -> code.gitea.io/gitea/modules/git.(*Repository).GetCommit (0.44s)"> | |
| <text text-anchor="middle" x="161" y="-1162.8" font-family="Times New Roman,serif" font-size="14.00"> 0.44s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21 --> | |
| <g id="node21" class="node"><title>N21</title> | |
| <g id="a_node21"><a xlink:title="syscall.Syscall6 (7.13s)"> | |
| <polygon fill="#edd8d5" stroke="#b21600" points="513.5,-173 426.5,-173 426.5,-137 513.5,-137 513.5,-173"/> | |
| <text text-anchor="middle" x="470" y="-162.1" font-family="Times New Roman,serif" font-size="8.00">syscall</text> | |
| <text text-anchor="middle" x="470" y="-153.1" font-family="Times New Roman,serif" font-size="8.00">Syscall6</text> | |
| <text text-anchor="middle" x="470" y="-144.1" font-family="Times New Roman,serif" font-size="8.00">0 of 7.13s (63.27%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21->N1 --> | |
| <g id="edge1" class="edge"><title>N21->N1</title> | |
| <g id="a_edge1"><a xlink:title="syscall.Syscall6 -> runtime.cgocall (7.13s)"> | |
| <path fill="none" stroke="#b21600" stroke-width="4" d="M470,-136.813C470,-125.815 470,-110.909 470,-96.2617"/> | |
| <polygon fill="#b21600" stroke="#b21600" stroke-width="4" points="473.5,-96.2142 470,-86.2143 466.5,-96.2143 473.5,-96.2142"/> | |
| </a> | |
| </g> | |
| <g id="a_edge1-label"><a xlink:title="syscall.Syscall6 -> runtime.cgocall (7.13s)"> | |
| <text text-anchor="middle" x="487" y="-107.8" font-family="Times New Roman,serif" font-size="14.00"> 7.13s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N22->N14 --> | |
| <g id="edge94" class="edge"><title>N22->N14</title> | |
| <g id="a_edge94"><a xlink:title="code.gitea.io/gitea/routers/repo.renderDirectory ... code.gitea.io/gitea/modules/git.(*Command).RunInDir (0.03s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M346.747,-906.427C328.173,-890.769 300.335,-867.303 278.625,-849.002"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="280.834,-846.287 270.933,-842.518 276.323,-851.639 280.834,-846.287"/> | |
| </a> | |
| </g> | |
| <g id="a_edge94-label"><a xlink:title="code.gitea.io/gitea/routers/repo.renderDirectory ... code.gitea.io/gitea/modules/git.(*Command).RunInDir (0.03s)"> | |
| <text text-anchor="middle" x="331" y="-868.8" font-family="Times New Roman,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N41 --> | |
| <g id="node41" class="node"><title>N41</title> | |
| <g id="a_node41"><a xlink:title="code.gitea.io/gitea/modules/git.Entries.GetCommitsInfo (0.11s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a9" points="404.5,-842.5 321.5,-842.5 321.5,-798.5 404.5,-798.5 404.5,-842.5"/> | |
| <text text-anchor="middle" x="363" y="-832.1" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="363" y="-823.1" font-family="Times New Roman,serif" font-size="8.00">Entries</text> | |
| <text text-anchor="middle" x="363" y="-814.1" font-family="Times New Roman,serif" font-size="8.00">GetCommitsInfo</text> | |
| <text text-anchor="middle" x="363" y="-805.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.11s (0.98%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N22->N41 --> | |
| <g id="edge72" class="edge"><title>N22->N41</title> | |
| <g id="a_edge72"><a xlink:title="code.gitea.io/gitea/routers/repo.renderDirectory -> code.gitea.io/gitea/modules/git.Entries.GetCommitsInfo (0.11s)"> | |
| <path fill="none" stroke="#b2b0a9" d="M366.321,-906.197C365.753,-891.7 364.927,-870.627 364.24,-853.128"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="367.724,-852.641 363.835,-842.786 360.729,-852.915 367.724,-852.641"/> | |
| </a> | |
| </g> | |
| <g id="a_edge72-label"><a xlink:title="code.gitea.io/gitea/routers/repo.renderDirectory -> code.gitea.io/gitea/modules/git.Entries.GetCommitsInfo (0.11s)"> | |
| <text text-anchor="middle" x="383" y="-868.8" font-family="Times New Roman,serif" font-size="14.00"> 0.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N23 --> | |
| <g id="node23" class="node"><title>N23</title> | |
| <g id="a_node23"><a xlink:title="runtime.systemstack (0.13s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa8" points="327.5,-1331.5 244.5,-1331.5 244.5,-1295.5 327.5,-1295.5 327.5,-1331.5"/> | |
| <text text-anchor="middle" x="286" y="-1320.6" font-family="Times New Roman,serif" font-size="8.00">runtime</text> | |
| <text text-anchor="middle" x="286" y="-1311.6" font-family="Times New Roman,serif" font-size="8.00">systemstack</text> | |
| <text text-anchor="middle" x="286" y="-1302.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.13s (1.15%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N24->N23 --> | |
| <g id="edge95" class="edge"><title>N24->N23</title> | |
| <g id="a_edge95"><a xlink:title="code.gitea.io/gitea/modules/context.RepoAssignment.func1 ... runtime.systemstack (0.02s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M375.211,-1399.2C360.027,-1392.61 343.339,-1383.86 330,-1373 318.801,-1363.88 308.875,-1351.34 301.298,-1340.2"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="304.132,-1338.14 295.747,-1331.66 298.264,-1341.95 304.132,-1338.14"/> | |
| </a> | |
| </g> | |
| <g id="a_edge95-label"><a xlink:title="code.gitea.io/gitea/modules/context.RepoAssignment.func1 ... runtime.systemstack (0.02s)"> | |
| <text text-anchor="middle" x="347" y="-1361.8" font-family="Times New Roman,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N31 --> | |
| <g id="node31" class="node"><title>N31</title> | |
| <g id="a_node31"><a xlink:title="code.gitea.io/gitea/modules/git.(*Repository).IsBranchExist (0.09s)"> | |
| <polygon fill="#edecec" stroke="#b2b0ab" points="387,-1236 309,-1236 309,-1192 387,-1192 387,-1236"/> | |
| <text text-anchor="middle" x="348" y="-1225.6" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="348" y="-1216.6" font-family="Times New Roman,serif" font-size="8.00">(*Repository)</text> | |
| <text text-anchor="middle" x="348" y="-1207.6" font-family="Times New Roman,serif" font-size="8.00">IsBranchExist</text> | |
| <text text-anchor="middle" x="348" y="-1198.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.09s (0.8%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N24->N31 --> | |
| <g id="edge92" class="edge"><title>N24->N31</title> | |
| <g id="a_edge92"><a xlink:title="code.gitea.io/gitea/modules/context.RepoAssignment.func1 -> code.gitea.io/gitea/modules/git.(*Repository).IsBranchExist (0.03s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M401.867,-1392.97C392.254,-1378.67 380.292,-1358.97 373,-1340 361.207,-1309.32 354.683,-1272.16 351.283,-1246.37"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="354.752,-1245.9 350.051,-1236.4 347.805,-1246.76 354.752,-1245.9"/> | |
| </a> | |
| </g> | |
| <g id="a_edge92-label"><a xlink:title="code.gitea.io/gitea/modules/context.RepoAssignment.func1 -> code.gitea.io/gitea/modules/git.(*Repository).IsBranchExist (0.03s)"> | |
| <text text-anchor="middle" x="390" y="-1309.8" font-family="Times New Roman,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25 --> | |
| <g id="node25" class="node"><title>N25</title> | |
| <g id="a_node25"><a xlink:title="code.gitea.io/gitea/modules/git.(*Tree).ListEntries (0.52s)"> | |
| <polygon fill="#edeae7" stroke="#b2a289" points="105.5,-1236 22.5,-1236 22.5,-1192 105.5,-1192 105.5,-1236"/> | |
| <text text-anchor="middle" x="64" y="-1225.6" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="64" y="-1216.6" font-family="Times New Roman,serif" font-size="8.00">(*Tree)</text> | |
| <text text-anchor="middle" x="64" y="-1207.6" font-family="Times New Roman,serif" font-size="8.00">ListEntries</text> | |
| <text text-anchor="middle" x="64" y="-1198.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.52s (4.61%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25->N7 --> | |
| <g id="edge46" class="edge"><title>N25->N7</title> | |
| <g id="a_edge46"><a xlink:title="code.gitea.io/gitea/modules/git.(*Tree).ListEntries -> code.gitea.io/gitea/modules/git.(*Command).RunInDirBytes (0.52s)"> | |
| <path fill="none" stroke="#b2a289" d="M38.3375,-1191.74C20.5322,-1174.48 0,-1148.42 0,-1120 0,-1120 0,-1120 0,-819.5 0,-779.298 40.3659,-753.564 75.9374,-738.691"/> | |
| <polygon fill="#b2a289" stroke="#b2a289" points="77.3249,-741.906 85.3265,-734.962 74.7407,-735.401 77.3249,-741.906"/> | |
| </a> | |
| </g> | |
| <g id="a_edge46-label"><a xlink:title="code.gitea.io/gitea/modules/git.(*Tree).ListEntries -> code.gitea.io/gitea/modules/git.(*Command).RunInDirBytes (0.52s)"> | |
| <text text-anchor="middle" x="17" y="-972.8" font-family="Times New Roman,serif" font-size="14.00"> 0.52s</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/context.(*Repository).GetEditorconfig (0.50s)"> | |
| <polygon fill="#edebe7" stroke="#b2a28a" points="226.5,-1335.5 143.5,-1335.5 143.5,-1291.5 226.5,-1291.5 226.5,-1335.5"/> | |
| <text text-anchor="middle" x="185" y="-1325.1" font-family="Times New Roman,serif" font-size="8.00">context</text> | |
| <text text-anchor="middle" x="185" y="-1316.1" font-family="Times New Roman,serif" font-size="8.00">(*Repository)</text> | |
| <text text-anchor="middle" x="185" y="-1307.1" font-family="Times New Roman,serif" font-size="8.00">GetEditorconfig</text> | |
| <text text-anchor="middle" x="185" y="-1298.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.50s (4.44%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26->N20 --> | |
| <g id="edge61" class="edge"><title>N26->N20</title> | |
| <g id="a_edge61"><a xlink:title="code.gitea.io/gitea/modules/context.(*Repository).GetEditorconfig -> code.gitea.io/gitea/modules/git.(*Repository).GetBranchCommit (0.46s)"> | |
| <path fill="none" stroke="#b2a48e" d="M185,-1291.34C185,-1278.18 185,-1261.02 185,-1246.31"/> | |
| <polygon fill="#b2a48e" stroke="#b2a48e" points="188.5,-1246.11 185,-1236.11 181.5,-1246.11 188.5,-1246.11"/> | |
| </a> | |
| </g> | |
| <g id="a_edge61-label"><a xlink:title="code.gitea.io/gitea/modules/context.(*Repository).GetEditorconfig -> code.gitea.io/gitea/modules/git.(*Repository).GetBranchCommit (0.46s)"> | |
| <text text-anchor="middle" x="202" y="-1257.8" font-family="Times New Roman,serif" font-size="14.00"> 0.46s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26->N25 --> | |
| <g id="edge90" class="edge"><title>N26->N25</title> | |
| <g id="a_edge90"><a xlink:title="code.gitea.io/gitea/modules/context.(*Repository).GetEditorconfig ... code.gitea.io/gitea/modules/git.(*Tree).ListEntries (0.04s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M158.745,-1291.34C140.986,-1277.03 117.358,-1257.99 98.14,-1242.51"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="100.187,-1239.66 90.204,-1236.11 95.7946,-1245.11 100.187,-1239.66"/> | |
| </a> | |
| </g> | |
| <g id="a_edge90-label"><a xlink:title="code.gitea.io/gitea/modules/context.(*Repository).GetEditorconfig ... code.gitea.io/gitea/modules/git.(*Tree).ListEntries (0.04s)"> | |
| <text text-anchor="middle" x="146" y="-1257.8" font-family="Times New Roman,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27 --> | |
| <g id="node27" class="node"><title>N27</title> | |
| <g id="a_node27"><a xlink:title="runtime.timerproc (0.08s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ac" points="329.5,-1439 252.5,-1439 252.5,-1391 329.5,-1391 329.5,-1439"/> | |
| <text text-anchor="middle" x="291" y="-1427.8" font-family="Times New Roman,serif" font-size="9.00">runtime</text> | |
| <text text-anchor="middle" x="291" y="-1417.8" font-family="Times New Roman,serif" font-size="9.00">timerproc</text> | |
| <text text-anchor="middle" x="291" y="-1407.8" font-family="Times New Roman,serif" font-size="9.00">0.02s (0.18%)</text> | |
| <text text-anchor="middle" x="291" y="-1397.8" font-family="Times New Roman,serif" font-size="9.00">of 0.08s (0.71%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27->N23 --> | |
| <g id="edge89" class="edge"><title>N27->N23</title> | |
| <g id="a_edge89"><a xlink:title="runtime.timerproc ... runtime.systemstack (0.05s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M278.801,-1390.71C276.403,-1385.06 274.245,-1378.93 273,-1373 270.827,-1362.65 272.432,-1351.29 275.155,-1341.36"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="278.555,-1342.22 278.287,-1331.63 271.891,-1340.07 278.555,-1342.22"/> | |
| </a> | |
| </g> | |
| <g id="a_edge89-label"><a xlink:title="runtime.timerproc ... runtime.systemstack (0.05s)"> | |
| <text text-anchor="middle" x="290" y="-1361.8" font-family="Times New Roman,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N64 --> | |
| <g id="node64" class="node"><title>N64</title> | |
| <g id="a_node64"><a xlink:title="io.Copy (6.96s)"> | |
| <polygon fill="#edd8d5" stroke="#b21800" points="513.5,-739 426.5,-739 426.5,-703 513.5,-703 513.5,-739"/> | |
| <text text-anchor="middle" x="470" y="-728.1" font-family="Times New Roman,serif" font-size="8.00">io</text> | |
| <text text-anchor="middle" x="470" y="-719.1" font-family="Times New Roman,serif" font-size="8.00">Copy</text> | |
| <text text-anchor="middle" x="470" y="-710.1" font-family="Times New Roman,serif" font-size="8.00">0 of 6.96s (61.76%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N28->N64 --> | |
| <g id="edge9" class="edge"><title>N28->N64</title> | |
| <g id="a_edge9"><a xlink:title="os/exec.(*Cmd).writerDescriptor.func1 -> io.Copy (6.96s)"> | |
| <path fill="none" stroke="#b21800" stroke-width="4" d="M470,-793.883C470,-780.125 470,-763.167 470,-749.178"/> | |
| <polygon fill="#b21800" stroke="#b21800" stroke-width="4" points="473.5,-749.161 470,-739.161 466.5,-749.161 473.5,-749.161"/> | |
| </a> | |
| </g> | |
| <g id="a_edge9-label"><a xlink:title="os/exec.(*Cmd).writerDescriptor.func1 -> io.Copy (6.96s)"> | |
| <text text-anchor="middle" x="487" y="-764.8" font-family="Times New Roman,serif" font-size="14.00"> 6.96s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N29 --> | |
| <g id="node29" class="node"><title>N29</title> | |
| <g id="a_node29"><a xlink:title="code.gitea.io/gitea/vendor/github.com/go-macaron/session.Sessioner.func1 (1.33s)"> | |
| <polygon fill="#ede5df" stroke="#b27b49" points="1160.5,-842.5 1073.5,-842.5 1073.5,-798.5 1160.5,-798.5 1160.5,-842.5"/> | |
| <text text-anchor="middle" x="1117" y="-832.1" font-family="Times New Roman,serif" font-size="8.00">session</text> | |
| <text text-anchor="middle" x="1117" y="-823.1" font-family="Times New Roman,serif" font-size="8.00">Sessioner</text> | |
| <text text-anchor="middle" x="1117" y="-814.1" font-family="Times New Roman,serif" font-size="8.00">func1</text> | |
| <text text-anchor="middle" x="1117" y="-805.1" font-family="Times New Roman,serif" font-size="8.00">0 of 1.33s (11.80%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N29->N6 --> | |
| <g id="edge26" class="edge"><title>N29->N6</title> | |
| <g id="a_edge26"><a xlink:title="code.gitea.io/gitea/vendor/github.com/go-macaron/session.Sessioner.func1 -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next (1.32s)"> | |
| <path fill="none" stroke="#b27b49" d="M1117,-842.598C1117,-863.225 1117,-895.521 1117,-923.5 1117,-1215 1117,-1215 1117,-1215 1117,-1257.32 992.208,-1288.29 917.911,-1302.97"/> | |
| <polygon fill="#b27b49" stroke="#b27b49" points="916.931,-1299.6 907.78,-1304.94 918.264,-1306.47 916.931,-1299.6"/> | |
| </a> | |
| </g> | |
| <g id="a_edge26-label"><a xlink:title="code.gitea.io/gitea/vendor/github.com/go-macaron/session.Sessioner.func1 -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next (1.32s)"> | |
| <text text-anchor="middle" x="1134" y="-1067.8" font-family="Times New Roman,serif" font-size="14.00"> 1.32s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N30->N20 --> | |
| <g id="edge93" class="edge"><title>N30->N20</title> | |
| <g id="a_edge93"><a xlink:title="code.gitea.io/gitea/modules/context.RepoRefByType.func1 -> code.gitea.io/gitea/modules/git.(*Repository).GetBranchCommit (0.03s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M415.89,-1292.99C411.247,-1290.88 406.544,-1288.84 402,-1287 346.41,-1264.51 280.859,-1243.49 236.464,-1230.04"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="237.352,-1226.65 226.767,-1227.12 235.333,-1233.35 237.352,-1226.65"/> | |
| </a> | |
| </g> | |
| <g id="a_edge93-label"><a xlink:title="code.gitea.io/gitea/modules/context.RepoRefByType.func1 -> code.gitea.io/gitea/modules/git.(*Repository).GetBranchCommit (0.03s)"> | |
| <text text-anchor="middle" x="367" y="-1257.8" font-family="Times New Roman,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N30->N31 --> | |
| <g id="edge87" class="edge"><title>N30->N31</title> | |
| <g id="a_edge87"><a xlink:title="code.gitea.io/gitea/modules/context.RepoRefByType.func1 ... code.gitea.io/gitea/modules/git.(*Repository).IsBranchExist (0.06s)"> | |
| <path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M444.06,-1291.25C437.163,-1279.3 427.413,-1264.67 416,-1254 410.058,-1248.45 403.185,-1243.36 396.138,-1238.82"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="397.541,-1235.58 387.177,-1233.38 393.908,-1241.56 397.541,-1235.58"/> | |
| </a> | |
| </g> | |
| <g id="a_edge87-label"><a xlink:title="code.gitea.io/gitea/modules/context.RepoRefByType.func1 ... code.gitea.io/gitea/modules/git.(*Repository).IsBranchExist (0.06s)"> | |
| <text text-anchor="middle" x="446" y="-1257.8" font-family="Times New Roman,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N42 --> | |
| <g id="node42" class="node"><title>N42</title> | |
| <g id="a_node42"><a xlink:title="code.gitea.io/gitea/modules/git.IsBranchExist (0.09s)"> | |
| <polygon fill="#edecec" stroke="#b2b0ab" points="345,-1042 267,-1042 267,-1006 345,-1006 345,-1042"/> | |
| <text text-anchor="middle" x="306" y="-1031.1" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="306" y="-1022.1" font-family="Times New Roman,serif" font-size="8.00">IsBranchExist</text> | |
| <text text-anchor="middle" x="306" y="-1013.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.09s (0.8%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N31->N42 --> | |
| <g id="edge76" class="edge"><title>N31->N42</title> | |
| <g id="a_edge76"><a xlink:title="code.gitea.io/gitea/modules/git.(*Repository).IsBranchExist -> code.gitea.io/gitea/modules/git.IsBranchExist (0.09s)"> | |
| <path fill="none" stroke="#b2b0ab" d="M343.264,-1191.8C335.596,-1157.48 320.476,-1089.8 312.044,-1052.05"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="315.451,-1051.25 309.854,-1042.25 308.619,-1052.78 315.451,-1051.25"/> | |
| </a> | |
| </g> | |
| <g id="a_edge76-label"><a xlink:title="code.gitea.io/gitea/modules/git.(*Repository).IsBranchExist -> code.gitea.io/gitea/modules/git.IsBranchExist (0.09s)"> | |
| <text text-anchor="middle" x="349" y="-1115.3" font-family="Times New Roman,serif" font-size="14.00"> 0.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32 --> | |
| <g id="node32" class="node"><title>N32</title> | |
| <g id="a_node32"><a xlink:title="mime.initMimeWindows (0.07s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ac" points="661.5,-264 578.5,-264 578.5,-228 661.5,-228 661.5,-264"/> | |
| <text text-anchor="middle" x="620" y="-253.1" font-family="Times New Roman,serif" font-size="8.00">mime</text> | |
| <text text-anchor="middle" x="620" y="-244.1" font-family="Times New Roman,serif" font-size="8.00">initMimeWindows</text> | |
| <text text-anchor="middle" x="620" y="-235.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.07s (0.62%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32->N21 --> | |
| <g id="edge91" class="edge"><title>N32->N21</title> | |
| <g id="a_edge91"><a xlink:title="mime.initMimeWindows ... syscall.Syscall6 (0.04s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M591.078,-227.84C567.318,-213.742 533.485,-193.667 507.62,-178.321"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="509.219,-175.2 498.833,-173.107 505.647,-181.22 509.219,-175.2"/> | |
| </a> | |
| </g> | |
| <g id="a_edge91-label"><a xlink:title="mime.initMimeWindows ... syscall.Syscall6 (0.04s)"> | |
| <text text-anchor="middle" x="571" y="-194.8" font-family="Times New Roman,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N33 --> | |
| <g id="node33" class="node"><title>N33</title> | |
| <g id="a_node33"><a xlink:title="code.gitea.io/gitea/modules/git.getCommitsInfo (0.11s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a9" points="401.5,-739 318.5,-739 318.5,-703 401.5,-703 401.5,-739"/> | |
| <text text-anchor="middle" x="360" y="-728.1" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="360" y="-719.1" font-family="Times New Roman,serif" font-size="8.00">getCommitsInfo</text> | |
| <text text-anchor="middle" x="360" y="-710.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.11s (0.98%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N40 --> | |
| <g id="node40" class="node"><title>N40</title> | |
| <g id="a_node40"><a xlink:title="code.gitea.io/gitea/modules/git.(*getCommitsInfoState).processGitLogOutput (0.10s)"> | |
| <polygon fill="#edecec" stroke="#b2b0aa" points="408.5,-648 307.5,-648 307.5,-604 408.5,-604 408.5,-648"/> | |
| <text text-anchor="middle" x="358" y="-637.6" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="358" y="-628.6" font-family="Times New Roman,serif" font-size="8.00">(*getCommitsInfoState)</text> | |
| <text text-anchor="middle" x="358" y="-619.6" font-family="Times New Roman,serif" font-size="8.00">processGitLogOutput</text> | |
| <text text-anchor="middle" x="358" y="-610.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.10s (0.89%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N33->N40 --> | |
| <g id="edge75" class="edge"><title>N33->N40</title> | |
| <g id="a_edge75"><a xlink:title="code.gitea.io/gitea/modules/git.getCommitsInfo -> code.gitea.io/gitea/modules/git.(*getCommitsInfoState).processGitLogOutput (0.10s)"> | |
| <path fill="none" stroke="#b2b0aa" d="M359.633,-702.942C359.366,-690.537 358.997,-673.381 358.678,-658.514"/> | |
| <polygon fill="#b2b0aa" stroke="#b2b0aa" points="362.17,-658.116 358.456,-648.194 355.172,-658.267 362.17,-658.116"/> | |
| </a> | |
| </g> | |
| <g id="a_edge75-label"><a xlink:title="code.gitea.io/gitea/modules/git.getCommitsInfo -> code.gitea.io/gitea/modules/git.(*getCommitsInfoState).processGitLogOutput (0.10s)"> | |
| <text text-anchor="middle" x="377" y="-669.8" font-family="Times New Roman,serif" font-size="14.00"> 0.10s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N34 --> | |
| <g id="node34" class="node"><title>N34</title> | |
| <g id="a_node34"><a xlink:title="bufio.(*Scanner).Scan (0.10s)"> | |
| <polygon fill="#edecec" stroke="#b2b0aa" points="406.5,-553 323.5,-553 323.5,-509 406.5,-509 406.5,-553"/> | |
| <text text-anchor="middle" x="365" y="-542.6" font-family="Times New Roman,serif" font-size="8.00">bufio</text> | |
| <text text-anchor="middle" x="365" y="-533.6" font-family="Times New Roman,serif" font-size="8.00">(*Scanner)</text> | |
| <text text-anchor="middle" x="365" y="-524.6" font-family="Times New Roman,serif" font-size="8.00">Scan</text> | |
| <text text-anchor="middle" x="365" y="-515.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.10s (0.89%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N34->N15 --> | |
| <g id="edge73" class="edge"><title>N34->N15</title> | |
| <g id="a_edge73"><a xlink:title="bufio.(*Scanner).Scan -> os.(*File).Read (0.10s)"> | |
| <path fill="none" stroke="#b2b0aa" d="M388.826,-508.897C403.594,-495.817 422.727,-478.87 438.709,-464.715"/> | |
| <polygon fill="#b2b0aa" stroke="#b2b0aa" points="441.103,-467.27 446.268,-458.02 436.462,-462.03 441.103,-467.27"/> | |
| </a> | |
| </g> | |
| <g id="a_edge73-label"><a xlink:title="bufio.(*Scanner).Scan -> os.(*File).Read (0.10s)"> | |
| <text text-anchor="middle" x="441" y="-479.8" font-family="Times New Roman,serif" font-size="14.00"> 0.10s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35 --> | |
| <g id="node35" class="node"><title>N35</title> | |
| <g id="a_node35"><a xlink:title="bytes.(*Buffer).ReadFrom (6.96s)"> | |
| <polygon fill="#edd8d5" stroke="#b21800" points="513.5,-553 426.5,-553 426.5,-509 513.5,-509 513.5,-553"/> | |
| <text text-anchor="middle" x="470" y="-542.6" font-family="Times New Roman,serif" font-size="8.00">bytes</text> | |
| <text text-anchor="middle" x="470" y="-533.6" font-family="Times New Roman,serif" font-size="8.00">(*Buffer)</text> | |
| <text text-anchor="middle" x="470" y="-524.6" font-family="Times New Roman,serif" font-size="8.00">ReadFrom</text> | |
| <text text-anchor="middle" x="470" y="-515.6" font-family="Times New Roman,serif" font-size="8.00">0 of 6.96s (61.76%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35->N15 --> | |
| <g id="edge6" class="edge"><title>N35->N15</title> | |
| <g id="a_edge6"><a xlink:title="bytes.(*Buffer).ReadFrom -> os.(*File).Read (6.96s)"> | |
| <path fill="none" stroke="#b21800" stroke-width="4" d="M470,-508.897C470,-496.887 470,-481.617 470,-468.242"/> | |
| <polygon fill="#b21800" stroke="#b21800" stroke-width="4" points="473.5,-468.02 470,-458.02 466.5,-468.02 473.5,-468.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge6-label"><a xlink:title="bytes.(*Buffer).ReadFrom -> os.(*File).Read (6.96s)"> | |
| <text text-anchor="middle" x="487" y="-479.8" font-family="Times New Roman,serif" font-size="14.00"> 6.96s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N50 --> | |
| <g id="node50" class="node"><title>N50</title> | |
| <g id="a_node50"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).HTML (0.48s)"> | |
| <polygon fill="#edebe8" stroke="#b2a38c" points="622.5,-1141 539.5,-1141 539.5,-1097 622.5,-1097 622.5,-1141"/> | |
| <text text-anchor="middle" x="581" y="-1130.6" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="581" y="-1121.6" font-family="Times New Roman,serif" font-size="8.00">(*Context)</text> | |
| <text text-anchor="middle" x="581" y="-1112.6" font-family="Times New Roman,serif" font-size="8.00">HTML</text> | |
| <text text-anchor="middle" x="581" y="-1103.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.48s (4.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36->N50 --> | |
| <g id="edge49" class="edge"><title>N36->N50</title> | |
| <g id="a_edge49"><a xlink:title="code.gitea.io/gitea/modules/context.(*Context).HTML -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).HTML (0.48s)"> | |
| <path fill="none" stroke="#b2a38c" d="M581,-1191.9C581,-1179.89 581,-1164.62 581,-1151.24"/> | |
| <polygon fill="#b2a38c" stroke="#b2a38c" points="584.5,-1151.02 581,-1141.02 577.5,-1151.02 584.5,-1151.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge49-label"><a xlink:title="code.gitea.io/gitea/modules/context.(*Context).HTML -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).HTML (0.48s)"> | |
| <text text-anchor="middle" x="598" y="-1162.8" font-family="Times New Roman,serif" font-size="14.00"> 0.48s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N37->N6 --> | |
| <g id="edge21" class="edge"><title>N37->N6</title> | |
| <g id="a_edge21"><a xlink:title="code.gitea.io/gitea/modules/context.Recovery.func1 -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next (1.37s)"> | |
| <path fill="none" stroke="#b27846" d="M841.15,-1392.9C845.187,-1379.05 850.534,-1360.7 855.041,-1345.24"/> | |
| <polygon fill="#b27846" stroke="#b27846" points="858.421,-1346.15 857.859,-1335.57 851.7,-1344.19 858.421,-1346.15"/> | |
| </a> | |
| </g> | |
| <g id="a_edge21-label"><a xlink:title="code.gitea.io/gitea/modules/context.Recovery.func1 -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next (1.37s)"> | |
| <text text-anchor="middle" x="869" y="-1361.8" font-family="Times New Roman,serif" font-size="14.00"> 1.37s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N38->N8 --> | |
| <g id="edge63" class="edge"><title>N38->N8</title> | |
| <g id="a_edge63"><a xlink:title="code.gitea.io/gitea/modules/git.(*Repository).GetCommit -> code.gitea.io/gitea/modules/git.(*Repository).getCommit (0.44s)"> | |
| <path fill="none" stroke="#b2a58f" d="M83.7022,-1096.78C72.9141,-1056.82 54.0782,-968.136 76,-898 81.3888,-880.759 92.1787,-863.987 102.625,-850.563"/> | |
| <polygon fill="#b2a58f" stroke="#b2a58f" points="105.452,-852.633 109.033,-842.662 100.015,-848.224 105.452,-852.633"/> | |
| </a> | |
| </g> | |
| <g id="a_edge63-label"><a xlink:title="code.gitea.io/gitea/modules/git.(*Repository).GetCommit -> code.gitea.io/gitea/modules/git.(*Repository).getCommit (0.44s)"> | |
| <text text-anchor="middle" x="83" y="-972.8" font-family="Times New Roman,serif" font-size="14.00"> 0.44s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N39->N25 --> | |
| <g id="edge50" class="edge"><title>N39->N25</title> | |
| <g id="a_edge50"><a xlink:title="code.gitea.io/gitea/modules/git.(*TreeEntry).GetSubJumpablePathName -> code.gitea.io/gitea/modules/git.(*Tree).ListEntries (0.48s)"> | |
| <path fill="none" stroke="#b2a38c" d="M64,-1392.7C64,-1357.54 64,-1287.19 64,-1246.34"/> | |
| <polygon fill="#b2a38c" stroke="#b2a38c" points="67.5001,-1246.14 64,-1236.14 60.5001,-1246.14 67.5001,-1246.14"/> | |
| </a> | |
| </g> | |
| <g id="a_edge50-label"><a xlink:title="code.gitea.io/gitea/modules/git.(*TreeEntry).GetSubJumpablePathName -> code.gitea.io/gitea/modules/git.(*Tree).ListEntries (0.48s)"> | |
| <text text-anchor="middle" x="81" y="-1309.8" font-family="Times New Roman,serif" font-size="14.00"> 0.48s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N40->N34 --> | |
| <g id="edge74" class="edge"><title>N40->N34</title> | |
| <g id="a_edge74"><a xlink:title="code.gitea.io/gitea/modules/git.(*getCommitsInfoState).processGitLogOutput -> bufio.(*Scanner).Scan (0.10s)"> | |
| <path fill="none" stroke="#b2b0aa" d="M359.588,-603.897C360.492,-591.887 361.642,-576.617 362.648,-563.242"/> | |
| <polygon fill="#b2b0aa" stroke="#b2b0aa" points="366.157,-563.254 363.418,-553.02 359.177,-562.729 366.157,-563.254"/> | |
| </a> | |
| </g> | |
| <g id="a_edge74-label"><a xlink:title="code.gitea.io/gitea/modules/git.(*getCommitsInfoState).processGitLogOutput -> bufio.(*Scanner).Scan (0.10s)"> | |
| <text text-anchor="middle" x="379" y="-574.8" font-family="Times New Roman,serif" font-size="14.00"> 0.10s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N41->N33 --> | |
| <g id="edge71" class="edge"><title>N41->N33</title> | |
| <g id="a_edge71"><a xlink:title="code.gitea.io/gitea/modules/git.Entries.GetCommitsInfo -> code.gitea.io/gitea/modules/git.getCommitsInfo (0.11s)"> | |
| <path fill="none" stroke="#b2b0a9" d="M362.349,-798.344C361.907,-783.964 361.317,-764.808 360.839,-749.282"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="364.336,-749.105 360.53,-739.217 357.339,-749.32 364.336,-749.105"/> | |
| </a> | |
| </g> | |
| <g id="a_edge71-label"><a xlink:title="code.gitea.io/gitea/modules/git.Entries.GetCommitsInfo -> code.gitea.io/gitea/modules/git.getCommitsInfo (0.11s)"> | |
| <text text-anchor="middle" x="379" y="-764.8" font-family="Times New Roman,serif" font-size="14.00"> 0.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43 --> | |
| <g id="node43" class="node"><title>N43</title> | |
| <g id="a_node43"><a xlink:title="code.gitea.io/gitea/modules/git.IsReferenceExist (0.09s)"> | |
| <polygon fill="#edecec" stroke="#b2b0ab" points="307,-942.5 229,-942.5 229,-906.5 307,-906.5 307,-942.5"/> | |
| <text text-anchor="middle" x="268" y="-931.6" font-family="Times New Roman,serif" font-size="8.00">git</text> | |
| <text text-anchor="middle" x="268" y="-922.6" font-family="Times New Roman,serif" font-size="8.00">IsReferenceExist</text> | |
| <text text-anchor="middle" x="268" y="-913.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.09s (0.8%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N42->N43 --> | |
| <g id="edge77" class="edge"><title>N42->N43</title> | |
| <g id="a_edge77"><a xlink:title="code.gitea.io/gitea/modules/git.IsBranchExist -> code.gitea.io/gitea/modules/git.IsReferenceExist (0.09s)"> | |
| <path fill="none" stroke="#b2b0ab" d="M299.206,-1005.57C293.424,-990.734 285.027,-969.188 278.399,-952.183"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="281.627,-950.826 274.735,-942.78 275.105,-953.369 281.627,-950.826"/> | |
| </a> | |
| </g> | |
| <g id="a_edge77-label"><a xlink:title="code.gitea.io/gitea/modules/git.IsBranchExist -> code.gitea.io/gitea/modules/git.IsReferenceExist (0.09s)"> | |
| <text text-anchor="middle" x="308" y="-972.8" font-family="Times New Roman,serif" font-size="14.00"> 0.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43->N14 --> | |
| <g id="edge78" class="edge"><title>N43->N14</title> | |
| <g id="a_edge78"><a xlink:title="code.gitea.io/gitea/modules/git.IsReferenceExist -> code.gitea.io/gitea/modules/git.(*Command).RunInDir (0.09s)"> | |
| <path fill="none" stroke="#b2b0ab" d="M264.268,-906.197C261.112,-891.563 256.51,-870.229 252.715,-852.634"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="256.121,-851.823 250.591,-842.786 249.278,-853.299 256.121,-851.823"/> | |
| </a> | |
| </g> | |
| <g id="a_edge78-label"><a xlink:title="code.gitea.io/gitea/modules/git.IsReferenceExist -> code.gitea.io/gitea/modules/git.(*Command).RunInDir (0.09s)"> | |
| <text text-anchor="middle" x="276" y="-868.8" font-family="Times New Roman,serif" font-size="14.00"> 0.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44 --> | |
| <g id="node44" class="node"><title>N44</title> | |
| <g id="a_node44"><a xlink:title="code.gitea.io/gitea/modules/public.(*Options).handle (0.07s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ac" points="905.5,-743 822.5,-743 822.5,-699 905.5,-699 905.5,-743"/> | |
| <text text-anchor="middle" x="864" y="-732.6" font-family="Times New Roman,serif" font-size="8.00">public</text> | |
| <text text-anchor="middle" x="864" y="-723.6" font-family="Times New Roman,serif" font-size="8.00">(*Options)</text> | |
| <text text-anchor="middle" x="864" y="-714.6" font-family="Times New Roman,serif" font-size="8.00">handle</text> | |
| <text text-anchor="middle" x="864" y="-705.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.07s (0.62%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N69 --> | |
| <g id="node69" class="node"><title>N69</title> | |
| <g id="a_node69"><a xlink:title="net/http.ServeContent (0.07s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ac" points="905.5,-644 822.5,-644 822.5,-608 905.5,-608 905.5,-644"/> | |
| <text text-anchor="middle" x="864" y="-633.1" font-family="Times New Roman,serif" font-size="8.00">http</text> | |
| <text text-anchor="middle" x="864" y="-624.1" font-family="Times New Roman,serif" font-size="8.00">ServeContent</text> | |
| <text text-anchor="middle" x="864" y="-615.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.07s (0.62%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44->N69 --> | |
| <g id="edge80" class="edge"><title>N44->N69</title> | |
| <g id="a_edge80"><a xlink:title="code.gitea.io/gitea/modules/public.(*Options).handle -> net/http.ServeContent (0.07s)"> | |
| <path fill="none" stroke="#b2b1ac" d="M864,-698.897C864,-685.743 864,-668.679 864,-654.476"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="867.5,-654.285 864,-644.285 860.5,-654.285 867.5,-654.285"/> | |
| </a> | |
| </g> | |
| <g id="a_edge80-label"><a xlink:title="code.gitea.io/gitea/modules/public.(*Options).handle -> net/http.ServeContent (0.07s)"> | |
| <text text-anchor="middle" x="881" y="-669.8" font-family="Times New Roman,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45->N44 --> | |
| <g id="edge81" class="edge"><title>N45->N44</title> | |
| <g id="a_edge81"><a xlink:title="code.gitea.io/gitea/modules/public.(*Options).staticHandler.func1 -> code.gitea.io/gitea/modules/public.(*Options).handle (0.07s)"> | |
| <path fill="none" stroke="#b2b1ac" d="M864,-793.883C864,-781.418 864,-766.325 864,-753.194"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="867.5,-753.171 864,-743.171 860.5,-753.171 867.5,-753.171"/> | |
| </a> | |
| </g> | |
| <g id="a_edge81-label"><a xlink:title="code.gitea.io/gitea/modules/public.(*Options).staticHandler.func1 -> code.gitea.io/gitea/modules/public.(*Options).handle (0.07s)"> | |
| <text text-anchor="middle" x="881" y="-764.8" font-family="Times New Roman,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N46->N18 --> | |
| <g id="edge43" class="edge"><title>N46->N18</title> | |
| <g id="a_edge43"><a xlink:title="code.gitea.io/gitea/routers/repo.Home -> code.gitea.io/gitea/routers/repo.renderCode (0.66s)"> | |
| <path fill="none" stroke="#b29c7e" d="M696.933,-1396.9C673.895,-1380.52 638.971,-1355.7 613.475,-1337.58"/> | |
| <polygon fill="#b29c7e" stroke="#b29c7e" points="615.4,-1334.65 605.221,-1331.71 611.345,-1340.36 615.4,-1334.65"/> | |
| </a> | |
| </g> | |
| <g id="a_edge43-label"><a xlink:title="code.gitea.io/gitea/routers/repo.Home -> code.gitea.io/gitea/routers/repo.renderCode (0.66s)"> | |
| <text text-anchor="middle" x="677" y="-1361.8" font-family="Times New Roman,serif" font-size="14.00"> 0.66s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N47->N26 --> | |
| <g id="edge47" class="edge"><title>N47->N26</title> | |
| <g id="a_edge47"><a xlink:title="code.gitea.io/gitea/routers/repo.SetEditorconfigIfExists -> code.gitea.io/gitea/modules/context.(*Repository).GetEditorconfig (0.50s)"> | |
| <path fill="none" stroke="#b2a28a" d="M185,-1396.67C185,-1382.78 185,-1362.93 185,-1346.22"/> | |
| <polygon fill="#b2a28a" stroke="#b2a28a" points="188.5,-1345.78 185,-1335.78 181.5,-1345.78 188.5,-1345.78"/> | |
| </a> | |
| </g> | |
| <g id="a_edge47-label"><a xlink:title="code.gitea.io/gitea/routers/repo.SetEditorconfigIfExists -> code.gitea.io/gitea/modules/context.(*Repository).GetEditorconfig (0.50s)"> | |
| <text text-anchor="middle" x="202" y="-1361.8" font-family="Times New Roman,serif" font-size="14.00"> 0.50s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N48->N13 --> | |
| <g id="edge23" class="edge"><title>N48->N13</title> | |
| <g id="a_edge23"><a xlink:title="code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).callInvoke -> reflect.Value.Call (1.37s)"> | |
| <path fill="none" stroke="#b27846" d="M706.662,-413.897C696.904,-401.293 684.366,-385.098 673.661,-371.27"/> | |
| <polygon fill="#b27846" stroke="#b27846" points="676.163,-368.784 667.273,-363.02 670.627,-373.07 676.163,-368.784"/> | |
| </a> | |
| </g> | |
| <g id="a_edge23-label"><a xlink:title="code.gitea.io/gitea/vendor/github.com/go-macaron/inject.(*injector).callInvoke -> reflect.Value.Call (1.37s)"> | |
| <text text-anchor="middle" x="709" y="-384.8" font-family="Times New Roman,serif" font-size="14.00"> 1.37s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N49 --> | |
| <g id="node49" class="node"><title>N49</title> | |
| <g id="a_node49"><a xlink:title="code.gitea.io/gitea/vendor/github.com/gorilla/context.ClearHandler.func1 (0.97s)"> | |
| <polygon fill="#ede8e2" stroke="#b28d65" points="1109.5,-1629 1026.5,-1629 1026.5,-1585 1109.5,-1585 1109.5,-1629"/> | |
| <text text-anchor="middle" x="1068" y="-1618.6" font-family="Times New Roman,serif" font-size="8.00">context</text> | |
| <text text-anchor="middle" x="1068" y="-1609.6" font-family="Times New Roman,serif" font-size="8.00">ClearHandler</text> | |
| <text text-anchor="middle" x="1068" y="-1600.6" font-family="Times New Roman,serif" font-size="8.00">func1</text> | |
| <text text-anchor="middle" x="1068" y="-1591.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.97s (8.61%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N52 --> | |
| <g id="node52" class="node"><title>N52</title> | |
| <g id="a_node52"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Macaron).ServeHTTP (0.97s)"> | |
| <polygon fill="#ede8e2" stroke="#b28d65" points="1109.5,-1534 1026.5,-1534 1026.5,-1490 1109.5,-1490 1109.5,-1534"/> | |
| <text text-anchor="middle" x="1068" y="-1523.6" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="1068" y="-1514.6" font-family="Times New Roman,serif" font-size="8.00">(*Macaron)</text> | |
| <text text-anchor="middle" x="1068" y="-1505.6" font-family="Times New Roman,serif" font-size="8.00">ServeHTTP</text> | |
| <text text-anchor="middle" x="1068" y="-1496.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.97s (8.61%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N49->N52 --> | |
| <g id="edge29" class="edge"><title>N49->N52</title> | |
| <g id="a_edge29"><a xlink:title="code.gitea.io/gitea/vendor/github.com/gorilla/context.ClearHandler.func1 -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Macaron).ServeHTTP (0.97s)"> | |
| <path fill="none" stroke="#b28d65" d="M1068,-1584.9C1068,-1572.89 1068,-1557.62 1068,-1544.24"/> | |
| <polygon fill="#b28d65" stroke="#b28d65" points="1071.5,-1544.02 1068,-1534.02 1064.5,-1544.02 1071.5,-1544.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge29-label"><a xlink:title="code.gitea.io/gitea/vendor/github.com/gorilla/context.ClearHandler.func1 -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Macaron).ServeHTTP (0.97s)"> | |
| <text text-anchor="middle" x="1085" y="-1555.8" font-family="Times New Roman,serif" font-size="14.00"> 0.97s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N51 --> | |
| <g id="node51" class="node"><title>N51</title> | |
| <g id="a_node51"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).renderHTML (0.48s)"> | |
| <polygon fill="#edebe8" stroke="#b2a38c" points="616.5,-1046 533.5,-1046 533.5,-1002 616.5,-1002 616.5,-1046"/> | |
| <text text-anchor="middle" x="575" y="-1035.6" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="575" y="-1026.6" font-family="Times New Roman,serif" font-size="8.00">(*Context)</text> | |
| <text text-anchor="middle" x="575" y="-1017.6" font-family="Times New Roman,serif" font-size="8.00">renderHTML</text> | |
| <text text-anchor="middle" x="575" y="-1008.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.48s (4.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N50->N51 --> | |
| <g id="edge52" class="edge"><title>N50->N51</title> | |
| <g id="a_edge52"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).HTML -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).renderHTML (0.48s)"> | |
| <path fill="none" stroke="#b2a38c" d="M579.639,-1096.9C578.864,-1084.89 577.879,-1069.62 577.016,-1056.24"/> | |
| <polygon fill="#b2a38c" stroke="#b2a38c" points="580.493,-1055.77 576.356,-1046.02 573.507,-1056.22 580.493,-1055.77"/> | |
| </a> | |
| </g> | |
| <g id="a_edge52-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).HTML -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).renderHTML (0.48s)"> | |
| <text text-anchor="middle" x="596" y="-1067.8" font-family="Times New Roman,serif" font-size="14.00"> 0.48s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N55 --> | |
| <g id="node55" class="node"><title>N55</title> | |
| <g id="a_node55"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).HTMLSet (0.48s)"> | |
| <polygon fill="#edebe8" stroke="#b2a38c" points="614.5,-946.5 531.5,-946.5 531.5,-902.5 614.5,-902.5 614.5,-946.5"/> | |
| <text text-anchor="middle" x="573" y="-936.1" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="573" y="-927.1" font-family="Times New Roman,serif" font-size="8.00">(*TplRender)</text> | |
| <text text-anchor="middle" x="573" y="-918.1" font-family="Times New Roman,serif" font-size="8.00">HTMLSet</text> | |
| <text text-anchor="middle" x="573" y="-909.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.48s (4.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N51->N55 --> | |
| <g id="edge53" class="edge"><title>N51->N55</title> | |
| <g id="a_edge53"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).renderHTML -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).HTMLSet (0.48s)"> | |
| <path fill="none" stroke="#b2a38c" d="M574.566,-1001.84C574.296,-988.684 573.944,-971.524 573.642,-956.807"/> | |
| <polygon fill="#b2a38c" stroke="#b2a38c" points="577.138,-956.541 573.433,-946.615 570.139,-956.684 577.138,-956.541"/> | |
| </a> | |
| </g> | |
| <g id="a_edge53-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).renderHTML -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).HTMLSet (0.48s)"> | |
| <text text-anchor="middle" x="592" y="-972.8" font-family="Times New Roman,serif" font-size="14.00"> 0.48s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N54 --> | |
| <g id="node54" class="node"><title>N54</title> | |
| <g id="a_node54"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Router).ServeHTTP (0.97s)"> | |
| <polygon fill="#ede8e2" stroke="#b28d65" points="1109.5,-1437 1026.5,-1437 1026.5,-1393 1109.5,-1393 1109.5,-1437"/> | |
| <text text-anchor="middle" x="1068" y="-1426.6" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="1068" y="-1417.6" font-family="Times New Roman,serif" font-size="8.00">(*Router)</text> | |
| <text text-anchor="middle" x="1068" y="-1408.6" font-family="Times New Roman,serif" font-size="8.00">ServeHTTP</text> | |
| <text text-anchor="middle" x="1068" y="-1399.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.97s (8.61%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N52->N54 --> | |
| <g id="edge30" class="edge"><title>N52->N54</title> | |
| <g id="a_edge30"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Macaron).ServeHTTP -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Router).ServeHTTP (0.97s)"> | |
| <path fill="none" stroke="#b28d65" d="M1068,-1489.92C1068,-1477.37 1068,-1461.22 1068,-1447.22"/> | |
| <polygon fill="#b28d65" stroke="#b28d65" points="1071.5,-1447.02 1068,-1437.02 1064.5,-1447.02 1071.5,-1447.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge30-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Macaron).ServeHTTP -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Router).ServeHTTP (0.97s)"> | |
| <text text-anchor="middle" x="1085" y="-1460.8" font-family="Times New Roman,serif" font-size="14.00"> 0.97s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N53 --> | |
| <g id="node53" class="node"><title>N53</title> | |
| <g id="a_node53"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Router).Handle.func1 (0.97s)"> | |
| <polygon fill="#ede8e2" stroke="#b28d65" points="1109.5,-1340 1026.5,-1340 1026.5,-1287 1109.5,-1287 1109.5,-1340"/> | |
| <text text-anchor="middle" x="1068" y="-1329.6" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="1068" y="-1320.6" font-family="Times New Roman,serif" font-size="8.00">(*Router)</text> | |
| <text text-anchor="middle" x="1068" y="-1311.6" font-family="Times New Roman,serif" font-size="8.00">Handle</text> | |
| <text text-anchor="middle" x="1068" y="-1302.6" font-family="Times New Roman,serif" font-size="8.00">func1</text> | |
| <text text-anchor="middle" x="1068" y="-1293.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.97s (8.61%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N53->N10 --> | |
| <g id="edge31" class="edge"><title>N53->N10</title> | |
| <g id="a_edge31"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Router).Handle.func1 -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).run (0.97s)"> | |
| <path fill="none" stroke="#b28d65" d="M1026.23,-1292.53C994.686,-1277.46 951.179,-1256.67 917.159,-1240.41"/> | |
| <polygon fill="#b28d65" stroke="#b28d65" points="918.365,-1237.1 907.834,-1235.95 915.347,-1243.42 918.365,-1237.1"/> | |
| </a> | |
| </g> | |
| <g id="a_edge31-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Router).Handle.func1 -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).run (0.97s)"> | |
| <text text-anchor="middle" x="990" y="-1257.8" font-family="Times New Roman,serif" font-size="14.00"> 0.97s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N54->N53 --> | |
| <g id="edge32" class="edge"><title>N54->N53</title> | |
| <g id="a_edge32"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Router).ServeHTTP -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Router).Handle.func1 (0.97s)"> | |
| <path fill="none" stroke="#b28d65" d="M1068,-1392.9C1068,-1380.5 1068,-1364.51 1068,-1350.21"/> | |
| <polygon fill="#b28d65" stroke="#b28d65" points="1071.5,-1350.16 1068,-1340.16 1064.5,-1350.16 1071.5,-1350.16"/> | |
| </a> | |
| </g> | |
| <g id="a_edge32-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Router).ServeHTTP -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Router).Handle.func1 (0.97s)"> | |
| <text text-anchor="middle" x="1085" y="-1361.8" font-family="Times New Roman,serif" font-size="14.00"> 0.97s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N58 --> | |
| <g id="node58" class="node"><title>N58</title> | |
| <g id="a_node58"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).renderHTML (0.48s)"> | |
| <polygon fill="#edebe8" stroke="#b2a38c" points="619.5,-842.5 536.5,-842.5 536.5,-798.5 619.5,-798.5 619.5,-842.5"/> | |
| <text text-anchor="middle" x="578" y="-832.1" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="578" y="-823.1" font-family="Times New Roman,serif" font-size="8.00">(*TplRender)</text> | |
| <text text-anchor="middle" x="578" y="-814.1" font-family="Times New Roman,serif" font-size="8.00">renderHTML</text> | |
| <text text-anchor="middle" x="578" y="-805.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.48s (4.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N55->N58 --> | |
| <g id="edge54" class="edge"><title>N55->N58</title> | |
| <g id="a_edge54"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).HTMLSet -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).renderHTML (0.48s)"> | |
| <path fill="none" stroke="#b2a38c" d="M574.036,-902.366C574.74,-888.005 575.683,-868.768 576.473,-852.659"/> | |
| <polygon fill="#b2a38c" stroke="#b2a38c" points="579.971,-852.767 576.965,-842.607 572.98,-852.424 579.971,-852.767"/> | |
| </a> | |
| </g> | |
| <g id="a_edge54-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).HTMLSet -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).renderHTML (0.48s)"> | |
| <text text-anchor="middle" x="593" y="-868.8" font-family="Times New Roman,serif" font-size="14.00"> 0.48s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N56 --> | |
| <g id="node56" class="node"><title>N56</title> | |
| <g id="a_node56"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).execute (0.48s)"> | |
| <polygon fill="#edebe8" stroke="#b2a38c" points="622.5,-648 539.5,-648 539.5,-604 622.5,-604 622.5,-648"/> | |
| <text text-anchor="middle" x="581" y="-637.6" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="581" y="-628.6" font-family="Times New Roman,serif" font-size="8.00">(*TplRender)</text> | |
| <text text-anchor="middle" x="581" y="-619.6" font-family="Times New Roman,serif" font-size="8.00">execute</text> | |
| <text text-anchor="middle" x="581" y="-610.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.48s (4.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N62 --> | |
| <g id="node62" class="node"><title>N62</title> | |
| <g id="a_node62"><a xlink:title="html/template.(*Template).ExecuteTemplate (0.48s)"> | |
| <polygon fill="#edebe8" stroke="#b2a38c" points="622.5,-553 539.5,-553 539.5,-509 622.5,-509 622.5,-553"/> | |
| <text text-anchor="middle" x="581" y="-542.6" font-family="Times New Roman,serif" font-size="8.00">template</text> | |
| <text text-anchor="middle" x="581" y="-533.6" font-family="Times New Roman,serif" font-size="8.00">(*Template)</text> | |
| <text text-anchor="middle" x="581" y="-524.6" font-family="Times New Roman,serif" font-size="8.00">ExecuteTemplate</text> | |
| <text text-anchor="middle" x="581" y="-515.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.48s (4.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N56->N62 --> | |
| <g id="edge55" class="edge"><title>N56->N62</title> | |
| <g id="a_edge55"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).execute -> html/template.(*Template).ExecuteTemplate (0.48s)"> | |
| <path fill="none" stroke="#b2a38c" d="M581,-603.897C581,-591.887 581,-576.617 581,-563.242"/> | |
| <polygon fill="#b2a38c" stroke="#b2a38c" points="584.5,-563.02 581,-553.02 577.5,-563.02 584.5,-563.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge55-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).execute -> html/template.(*Template).ExecuteTemplate (0.48s)"> | |
| <text text-anchor="middle" x="598" y="-574.8" font-family="Times New Roman,serif" font-size="14.00"> 0.48s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N57 --> | |
| <g id="node57" class="node"><title>N57</title> | |
| <g id="a_node57"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).renderBytes (0.48s)"> | |
| <polygon fill="#edebe8" stroke="#b2a38c" points="622.5,-743 539.5,-743 539.5,-699 622.5,-699 622.5,-743"/> | |
| <text text-anchor="middle" x="581" y="-732.6" font-family="Times New Roman,serif" font-size="8.00">macaron%2ev1</text> | |
| <text text-anchor="middle" x="581" y="-723.6" font-family="Times New Roman,serif" font-size="8.00">(*TplRender)</text> | |
| <text text-anchor="middle" x="581" y="-714.6" font-family="Times New Roman,serif" font-size="8.00">renderBytes</text> | |
| <text text-anchor="middle" x="581" y="-705.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.48s (4.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N57->N56 --> | |
| <g id="edge56" class="edge"><title>N57->N56</title> | |
| <g id="a_edge56"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).renderBytes -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).execute (0.48s)"> | |
| <path fill="none" stroke="#b2a38c" d="M581,-698.897C581,-686.887 581,-671.617 581,-658.242"/> | |
| <polygon fill="#b2a38c" stroke="#b2a38c" points="584.5,-658.02 581,-648.02 577.5,-658.02 584.5,-658.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge56-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).renderBytes -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).execute (0.48s)"> | |
| <text text-anchor="middle" x="598" y="-669.8" font-family="Times New Roman,serif" font-size="14.00"> 0.48s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N58->N57 --> | |
| <g id="edge57" class="edge"><title>N58->N57</title> | |
| <g id="a_edge57"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).renderHTML -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).renderBytes (0.48s)"> | |
| <path fill="none" stroke="#b2a38c" d="M578.651,-798.344C579.056,-785.184 579.584,-768.024 580.037,-753.307"/> | |
| <polygon fill="#b2a38c" stroke="#b2a38c" points="583.541,-753.218 580.35,-743.115 576.544,-753.002 583.541,-753.218"/> | |
| </a> | |
| </g> | |
| <g id="a_edge57-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).renderHTML -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*TplRender).renderBytes (0.48s)"> | |
| <text text-anchor="middle" x="597" y="-764.8" font-family="Times New Roman,serif" font-size="14.00"> 0.48s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N59->N29 --> | |
| <g id="edge41" class="edge"><title>N59->N29</title> | |
| <g id="a_edge41"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.ContextInvoker.Invoke -> code.gitea.io/gitea/vendor/github.com/go-macaron/session.Sessioner.func1 (0.91s)"> | |
| <path fill="none" stroke="#b2906a" d="M996.494,-902.366C1019.83,-886.706 1051.81,-865.247 1076.96,-848.369"/> | |
| <polygon fill="#b2906a" stroke="#b2906a" points="1079.19,-851.086 1085.55,-842.607 1075.29,-845.273 1079.19,-851.086"/> | |
| </a> | |
| </g> | |
| <g id="a_edge41-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.ContextInvoker.Invoke -> code.gitea.io/gitea/vendor/github.com/go-macaron/session.Sessioner.func1 (0.91s)"> | |
| <text text-anchor="middle" x="1068" y="-868.8" font-family="Times New Roman,serif" font-size="14.00"> 0.91s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N60->N6 --> | |
| <g id="edge33" class="edge"><title>N60->N6</title> | |
| <g id="a_edge33"><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 (0.97s)"> | |
| <path fill="none" stroke="#b28d65" d="M720.756,-842.646C717.807,-872.299 713,-927.943 713,-975.5 713,-1215 713,-1215 713,-1215 713,-1262.87 767.217,-1288.38 810.677,-1301.14"/> | |
| <polygon fill="#b28d65" stroke="#b28d65" points="809.753,-1304.51 820.325,-1303.82 811.626,-1297.77 809.753,-1304.51"/> | |
| </a> | |
| </g> | |
| <g id="a_edge33-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 (0.97s)"> | |
| <text text-anchor="middle" x="730" y="-1067.8" font-family="Times New Roman,serif" font-size="14.00"> 0.97s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N61->N6 --> | |
| <g id="edge36" class="edge"><title>N61->N6</title> | |
| <g id="a_edge36"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.Recovery.func1 -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next (0.97s)"> | |
| <path fill="none" stroke="#b28d65" d="M1005.49,-842.593C1018.5,-862.435 1035,-893.5 1035,-923.5 1035,-1215 1035,-1215 1035,-1215 1035,-1269.83 967.83,-1294.23 917.687,-1304.81"/> | |
| <polygon fill="#b28d65" stroke="#b28d65" points="916.725,-1301.43 907.593,-1306.8 918.082,-1308.3 916.725,-1301.43"/> | |
| </a> | |
| </g> | |
| <g id="a_edge36-label"><a xlink:title="code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.Recovery.func1 -> code.gitea.io/gitea/vendor/gopkg.in/macaron%2ev1.(*Context).Next (0.97s)"> | |
| <text text-anchor="middle" x="1052" y="-1067.8" font-family="Times New Roman,serif" font-size="14.00"> 0.97s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N80 --> | |
| <g id="node80" class="node"><title>N80</title> | |
| <g id="a_node80"><a xlink:title="text/template.(*state).walk (0.48s)"> | |
| <polygon fill="#edebe8" stroke="#b2a38c" points="622.5,-458 539.5,-458 539.5,-414 622.5,-414 622.5,-458"/> | |
| <text text-anchor="middle" x="581" y="-447.6" font-family="Times New Roman,serif" font-size="8.00">template</text> | |
| <text text-anchor="middle" x="581" y="-438.6" font-family="Times New Roman,serif" font-size="8.00">(*state)</text> | |
| <text text-anchor="middle" x="581" y="-429.6" font-family="Times New Roman,serif" font-size="8.00">walk</text> | |
| <text text-anchor="middle" x="581" y="-420.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.48s (4.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N62->N80 --> | |
| <g id="edge58" class="edge"><title>N62->N80</title> | |
| <g id="a_edge58"><a xlink:title="html/template.(*Template).ExecuteTemplate ... text/template.(*state).walk (0.48s)"> | |
| <path fill="none" stroke="#b2a38c" stroke-dasharray="1,5" d="M581,-508.897C581,-496.887 581,-481.617 581,-468.242"/> | |
| <polygon fill="#b2a38c" stroke="#b2a38c" points="584.5,-468.02 581,-458.02 577.5,-468.02 584.5,-468.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge58-label"><a xlink:title="html/template.(*Template).ExecuteTemplate ... text/template.(*state).walk (0.48s)"> | |
| <text text-anchor="middle" x="598" y="-479.8" font-family="Times New Roman,serif" font-size="14.00"> 0.48s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N63 --> | |
| <g id="node63" class="node"><title>N63</title> | |
| <g id="a_node63"><a xlink:title="internal/poll.(*FD).Read (7.09s)"> | |
| <polygon fill="#edd8d5" stroke="#b21700" points="513.5,-268 426.5,-268 426.5,-224 513.5,-224 513.5,-268"/> | |
| <text text-anchor="middle" x="470" y="-257.6" font-family="Times New Roman,serif" font-size="8.00">poll</text> | |
| <text text-anchor="middle" x="470" y="-248.6" font-family="Times New Roman,serif" font-size="8.00">(*FD)</text> | |
| <text text-anchor="middle" x="470" y="-239.6" font-family="Times New Roman,serif" font-size="8.00">Read</text> | |
| <text text-anchor="middle" x="470" y="-230.6" font-family="Times New Roman,serif" font-size="8.00">0 of 7.09s (62.91%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N63->N21 --> | |
| <g id="edge2" class="edge"><title>N63->N21</title> | |
| <g id="a_edge2"><a xlink:title="internal/poll.(*FD).Read ... syscall.Syscall6 (7.09s)"> | |
| <path fill="none" stroke="#b21700" stroke-width="4" stroke-dasharray="1,5" d="M470,-223.908C470,-211.78 470,-196.409 470,-183.36"/> | |
| <polygon fill="#b21700" stroke="#b21700" stroke-width="4" points="473.5,-183.066 470,-173.066 466.5,-183.066 473.5,-183.066"/> | |
| </a> | |
| </g> | |
| <g id="a_edge2-label"><a xlink:title="internal/poll.(*FD).Read ... syscall.Syscall6 (7.09s)"> | |
| <text text-anchor="middle" x="487" y="-194.8" font-family="Times New Roman,serif" font-size="14.00"> 7.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N65 --> | |
| <g id="node65" class="node"><title>N65</title> | |
| <g id="a_node65"><a xlink:title="io.copyBuffer (6.96s)"> | |
| <polygon fill="#edd8d5" stroke="#b21800" points="513.5,-644 426.5,-644 426.5,-608 513.5,-608 513.5,-644"/> | |
| <text text-anchor="middle" x="470" y="-633.1" font-family="Times New Roman,serif" font-size="8.00">io</text> | |
| <text text-anchor="middle" x="470" y="-624.1" font-family="Times New Roman,serif" font-size="8.00">copyBuffer</text> | |
| <text text-anchor="middle" x="470" y="-615.1" font-family="Times New Roman,serif" font-size="8.00">0 of 6.96s (61.76%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N64->N65 --> | |
| <g id="edge7" class="edge"><title>N64->N65</title> | |
| <g id="a_edge7"><a xlink:title="io.Copy -> io.copyBuffer (6.96s)"> | |
| <path fill="none" stroke="#b21800" stroke-width="4" d="M470,-702.942C470,-689.394 470,-670.18 470,-654.469"/> | |
| <polygon fill="#b21800" stroke="#b21800" stroke-width="4" points="473.5,-654.264 470,-644.264 466.5,-654.264 473.5,-654.264"/> | |
| </a> | |
| </g> | |
| <g id="a_edge7-label"><a xlink:title="io.Copy -> io.copyBuffer (6.96s)"> | |
| <text text-anchor="middle" x="487" y="-669.8" font-family="Times New Roman,serif" font-size="14.00"> 6.96s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N65->N35 --> | |
| <g id="edge8" class="edge"><title>N65->N35</title> | |
| <g id="a_edge8"><a xlink:title="io.copyBuffer -> bytes.(*Buffer).ReadFrom (6.96s)"> | |
| <path fill="none" stroke="#b21800" stroke-width="4" d="M470,-607.942C470,-595.537 470,-578.381 470,-563.514"/> | |
| <polygon fill="#b21800" stroke="#b21800" stroke-width="4" points="473.5,-563.194 470,-553.194 466.5,-563.194 473.5,-563.194"/> | |
| </a> | |
| </g> | |
| <g id="a_edge8-label"><a xlink:title="io.copyBuffer -> bytes.(*Buffer).ReadFrom (6.96s)"> | |
| <text text-anchor="middle" x="487" y="-574.8" font-family="Times New Roman,serif" font-size="14.00"> 6.96s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N66 --> | |
| <g id="node66" class="node"><title>N66</title> | |
| <g id="a_node66"><a xlink:title="mime.TypeByExtension (0.07s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ac" points="867.5,-454 784.5,-454 784.5,-418 867.5,-418 867.5,-454"/> | |
| <text text-anchor="middle" x="826" y="-443.1" font-family="Times New Roman,serif" font-size="8.00">mime</text> | |
| <text text-anchor="middle" x="826" y="-434.1" font-family="Times New Roman,serif" font-size="8.00">TypeByExtension</text> | |
| <text text-anchor="middle" x="826" y="-425.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.07s (0.62%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N67 --> | |
| <g id="node67" class="node"><title>N67</title> | |
| <g id="a_node67"><a xlink:title="mime.initMime (0.07s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ac" points="803.5,-359 720.5,-359 720.5,-323 803.5,-323 803.5,-359"/> | |
| <text text-anchor="middle" x="762" y="-348.1" font-family="Times New Roman,serif" font-size="8.00">mime</text> | |
| <text text-anchor="middle" x="762" y="-339.1" font-family="Times New Roman,serif" font-size="8.00">initMime</text> | |
| <text text-anchor="middle" x="762" y="-330.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.07s (0.62%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N66->N67 --> | |
| <g id="edge83" class="edge"><title>N66->N67</title> | |
| <g id="a_edge83"><a xlink:title="mime.TypeByExtension ... mime.initMime (0.07s)"> | |
| <path fill="none" stroke="#b2b1ac" stroke-dasharray="1,5" d="M814.261,-417.942C804.579,-403.873 790.692,-383.694 779.667,-367.672"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="782.433,-365.518 773.881,-359.264 776.667,-369.486 782.433,-365.518"/> | |
| </a> | |
| </g> | |
| <g id="a_edge83-label"><a xlink:title="mime.TypeByExtension ... mime.initMime (0.07s)"> | |
| <text text-anchor="middle" x="815" y="-384.8" font-family="Times New Roman,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N67->N32 --> | |
| <g id="edge84" class="edge"><title>N67->N32</title> | |
| <g id="a_edge84"><a xlink:title="mime.initMime -> mime.initMimeWindows (0.07s)"> | |
| <path fill="none" stroke="#b2b1ac" d="M735.955,-322.942C713.179,-308.026 679.919,-286.242 654.854,-269.827"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="656.644,-266.815 646.361,-264.264 652.809,-272.671 656.644,-266.815"/> | |
| </a> | |
| </g> | |
| <g id="a_edge84-label"><a xlink:title="mime.initMime -> mime.initMimeWindows (0.07s)"> | |
| <text text-anchor="middle" x="717" y="-289.8" font-family="Times New Roman,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N68 --> | |
| <g id="node68" class="node"><title>N68</title> | |
| <g id="a_node68"><a xlink:title="net/http.HandlerFunc.ServeHTTP (0.97s)"> | |
| <polygon fill="#ede8e2" stroke="#b28d65" points="1109.5,-1724 1026.5,-1724 1026.5,-1680 1109.5,-1680 1109.5,-1724"/> | |
| <text text-anchor="middle" x="1068" y="-1713.6" font-family="Times New Roman,serif" font-size="8.00">http</text> | |
| <text text-anchor="middle" x="1068" y="-1704.6" font-family="Times New Roman,serif" font-size="8.00">HandlerFunc</text> | |
| <text text-anchor="middle" x="1068" y="-1695.6" font-family="Times New Roman,serif" font-size="8.00">ServeHTTP</text> | |
| <text text-anchor="middle" x="1068" y="-1686.6" font-family="Times New Roman,serif" font-size="8.00">0 of 0.97s (8.61%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N68->N49 --> | |
| <g id="edge38" class="edge"><title>N68->N49</title> | |
| <g id="a_edge38"><a xlink:title="net/http.HandlerFunc.ServeHTTP -> code.gitea.io/gitea/vendor/github.com/gorilla/context.ClearHandler.func1 (0.97s)"> | |
| <path fill="none" stroke="#b28d65" d="M1068,-1679.9C1068,-1667.89 1068,-1652.62 1068,-1639.24"/> | |
| <polygon fill="#b28d65" stroke="#b28d65" points="1071.5,-1639.02 1068,-1629.02 1064.5,-1639.02 1071.5,-1639.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge38-label"><a xlink:title="net/http.HandlerFunc.ServeHTTP -> code.gitea.io/gitea/vendor/github.com/gorilla/context.ClearHandler.func1 (0.97s)"> | |
| <text text-anchor="middle" x="1085" y="-1650.8" font-family="Times New Roman,serif" font-size="14.00"> 0.97s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N70 --> | |
| <g id="node70" class="node"><title>N70</title> | |
| <g id="a_node70"><a xlink:title="net/http.serveContent (0.07s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ac" points="905.5,-549 822.5,-549 822.5,-513 905.5,-513 905.5,-549"/> | |
| <text text-anchor="middle" x="864" y="-538.1" font-family="Times New Roman,serif" font-size="8.00">http</text> | |
| <text text-anchor="middle" x="864" y="-529.1" font-family="Times New Roman,serif" font-size="8.00">serveContent</text> | |
| <text text-anchor="middle" x="864" y="-520.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.07s (0.62%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N69->N70 --> | |
| <g id="edge85" class="edge"><title>N69->N70</title> | |
| <g id="a_edge85"><a xlink:title="net/http.ServeContent -> net/http.serveContent (0.07s)"> | |
| <path fill="none" stroke="#b2b1ac" d="M864,-607.942C864,-594.394 864,-575.18 864,-559.469"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="867.5,-559.264 864,-549.264 860.5,-559.264 867.5,-559.264"/> | |
| </a> | |
| </g> | |
| <g id="a_edge85-label"><a xlink:title="net/http.ServeContent -> net/http.serveContent (0.07s)"> | |
| <text text-anchor="middle" x="881" y="-574.8" font-family="Times New Roman,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N70->N66 --> | |
| <g id="edge86" class="edge"><title>N70->N66</title> | |
| <g id="a_edge86"><a xlink:title="net/http.serveContent -> mime.TypeByExtension (0.07s)"> | |
| <path fill="none" stroke="#b2b1ac" d="M857.03,-512.942C851.388,-499.133 843.341,-479.439 836.855,-463.566"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="840.077,-462.198 833.054,-454.264 833.597,-464.845 840.077,-462.198"/> | |
| </a> | |
| </g> | |
| <g id="a_edge86-label"><a xlink:title="net/http.serveContent -> mime.TypeByExtension (0.07s)"> | |
| <text text-anchor="middle" x="865" y="-479.8" font-family="Times New Roman,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N71->N68 --> | |
| <g id="edge39" class="edge"><title>N71->N68</title> | |
| <g id="a_edge39"><a xlink:title="net/http.serverHandler.ServeHTTP -> net/http.HandlerFunc.ServeHTTP (0.97s)"> | |
| <path fill="none" stroke="#b28d65" d="M1068,-1774.9C1068,-1762.89 1068,-1747.62 1068,-1734.24"/> | |
| <polygon fill="#b28d65" stroke="#b28d65" points="1071.5,-1734.02 1068,-1724.02 1064.5,-1734.02 1071.5,-1734.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge39-label"><a xlink:title="net/http.serverHandler.ServeHTTP -> net/http.HandlerFunc.ServeHTTP (0.97s)"> | |
| <text text-anchor="middle" x="1085" y="-1745.8" font-family="Times New Roman,serif" font-size="14.00"> 0.97s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N72->N63 --> | |
| <g id="edge4" class="edge"><title>N72->N63</title> | |
| <g id="a_edge4"><a xlink:title="os.(*File).read -> internal/poll.(*FD).Read (7.09s)"> | |
| <path fill="none" stroke="#b21700" stroke-width="4" d="M470,-318.897C470,-306.887 470,-291.617 470,-278.242"/> | |
| <polygon fill="#b21700" stroke="#b21700" stroke-width="4" points="473.5,-278.02 470,-268.02 466.5,-278.02 473.5,-278.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge4-label"><a xlink:title="os.(*File).read -> internal/poll.(*FD).Read (7.09s)"> | |
| <text text-anchor="middle" x="487" y="-289.8" font-family="Times New Roman,serif" font-size="14.00"> 7.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N73 --> | |
| <g id="node73" class="node"><title>N73</title> | |
| <g id="a_node73"><a xlink:title="os.(*Process).Wait (3.64s)"> | |
| <polygon fill="#eddcd5" stroke="#b23300" points="306.5,-363 219.5,-363 219.5,-319 306.5,-319 306.5,-363"/> | |
| <text text-anchor="middle" x="263" y="-352.6" font-family="Times New Roman,serif" font-size="8.00">os</text> | |
| <text text-anchor="middle" x="263" y="-343.6" font-family="Times New Roman,serif" font-size="8.00">(*Process)</text> | |
| <text text-anchor="middle" x="263" y="-334.6" font-family="Times New Roman,serif" font-size="8.00">Wait</text> | |
| <text text-anchor="middle" x="263" y="-325.6" font-family="Times New Roman,serif" font-size="8.00">0 of 3.64s (32.30%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N74 --> | |
| <g id="node74" class="node"><title>N74</title> | |
| <g id="a_node74"><a xlink:title="os.(*Process).wait (3.64s)"> | |
| <polygon fill="#eddcd5" stroke="#b23300" points="307.5,-268 220.5,-268 220.5,-224 307.5,-224 307.5,-268"/> | |
| <text text-anchor="middle" x="264" y="-257.6" font-family="Times New Roman,serif" font-size="8.00">os</text> | |
| <text text-anchor="middle" x="264" y="-248.6" font-family="Times New Roman,serif" font-size="8.00">(*Process)</text> | |
| <text text-anchor="middle" x="264" y="-239.6" font-family="Times New Roman,serif" font-size="8.00">wait</text> | |
| <text text-anchor="middle" x="264" y="-230.6" font-family="Times New Roman,serif" font-size="8.00">0 of 3.64s (32.30%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N73->N74 --> | |
| <g id="edge13" class="edge"><title>N73->N74</title> | |
| <g id="a_edge13"><a xlink:title="os.(*Process).Wait -> os.(*Process).wait (3.64s)"> | |
| <path fill="none" stroke="#b23300" stroke-width="2" d="M263.227,-318.897C263.356,-306.887 263.52,-291.617 263.664,-278.242"/> | |
| <polygon fill="#b23300" stroke="#b23300" stroke-width="2" points="267.166,-278.057 263.774,-268.02 260.167,-277.981 267.166,-278.057"/> | |
| </a> | |
| </g> | |
| <g id="a_edge13-label"><a xlink:title="os.(*Process).Wait -> os.(*Process).wait (3.64s)"> | |
| <text text-anchor="middle" x="281" y="-289.8" font-family="Times New Roman,serif" font-size="14.00"> 3.64s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N74->N19 --> | |
| <g id="edge14" class="edge"><title>N74->N19</title> | |
| <g id="a_edge14"><a xlink:title="os.(*Process).wait ... syscall.Syscall (3.64s)"> | |
| <path fill="none" stroke="#b23300" stroke-width="2" stroke-dasharray="1,5" d="M264,-223.908C264,-211.78 264,-196.409 264,-183.36"/> | |
| <polygon fill="#b23300" stroke="#b23300" stroke-width="2" points="267.5,-183.066 264,-173.066 260.5,-183.066 267.5,-183.066"/> | |
| </a> | |
| </g> | |
| <g id="a_edge14-label"><a xlink:title="os.(*Process).wait ... syscall.Syscall (3.64s)"> | |
| <text text-anchor="middle" x="281" y="-194.8" font-family="Times New Roman,serif" font-size="14.00"> 3.64s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N75 --> | |
| <g id="node75" class="node"><title>N75</title> | |
| <g id="a_node75"><a xlink:title="os.StartProcess (0.20s)"> | |
| <polygon fill="#edeceb" stroke="#b2ada2" points="408.5,-359 325.5,-359 325.5,-323 408.5,-323 408.5,-359"/> | |
| <text text-anchor="middle" x="367" y="-348.1" font-family="Times New Roman,serif" font-size="8.00">os</text> | |
| <text text-anchor="middle" x="367" y="-339.1" font-family="Times New Roman,serif" font-size="8.00">StartProcess</text> | |
| <text text-anchor="middle" x="367" y="-330.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.20s (1.77%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N76 --> | |
| <g id="node76" class="node"><title>N76</title> | |
| <g id="a_node76"><a xlink:title="os.startProcess (0.20s)"> | |
| <polygon fill="#edeceb" stroke="#b2ada2" points="408.5,-264 325.5,-264 325.5,-228 408.5,-228 408.5,-264"/> | |
| <text text-anchor="middle" x="367" y="-253.1" font-family="Times New Roman,serif" font-size="8.00">os</text> | |
| <text text-anchor="middle" x="367" y="-244.1" font-family="Times New Roman,serif" font-size="8.00">startProcess</text> | |
| <text text-anchor="middle" x="367" y="-235.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.20s (1.77%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N75->N76 --> | |
| <g id="edge65" class="edge"><title>N75->N76</title> | |
| <g id="a_edge65"><a xlink:title="os.StartProcess -> os.startProcess (0.20s)"> | |
| <path fill="none" stroke="#b2ada2" d="M367,-322.942C367,-309.394 367,-290.18 367,-274.469"/> | |
| <polygon fill="#b2ada2" stroke="#b2ada2" points="370.5,-274.264 367,-264.264 363.5,-274.264 370.5,-274.264"/> | |
| </a> | |
| </g> | |
| <g id="a_edge65-label"><a xlink:title="os.StartProcess -> os.startProcess (0.20s)"> | |
| <text text-anchor="middle" x="384" y="-289.8" font-family="Times New Roman,serif" font-size="14.00"> 0.20s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N79 --> | |
| <g id="node79" class="node"><title>N79</title> | |
| <g id="a_node79"><a xlink:title="syscall.StartProcess (0.20s)"> | |
| <polygon fill="#edeceb" stroke="#b2ada2" points="408.5,-173 325.5,-173 325.5,-137 408.5,-137 408.5,-173"/> | |
| <text text-anchor="middle" x="367" y="-162.1" font-family="Times New Roman,serif" font-size="8.00">syscall</text> | |
| <text text-anchor="middle" x="367" y="-153.1" font-family="Times New Roman,serif" font-size="8.00">StartProcess</text> | |
| <text text-anchor="middle" x="367" y="-144.1" font-family="Times New Roman,serif" font-size="8.00">0 of 0.20s (1.77%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N76->N79 --> | |
| <g id="edge66" class="edge"><title>N76->N79</title> | |
| <g id="a_edge66"><a xlink:title="os.startProcess -> syscall.StartProcess (0.20s)"> | |
| <path fill="none" stroke="#b2ada2" d="M367,-227.84C367,-215.281 367,-197.979 367,-183.502"/> | |
| <polygon fill="#b2ada2" stroke="#b2ada2" points="370.5,-183.107 367,-173.107 363.5,-183.107 370.5,-183.107"/> | |
| </a> | |
| </g> | |
| <g id="a_edge66-label"><a xlink:title="os.startProcess -> syscall.StartProcess (0.20s)"> | |
| <text text-anchor="middle" x="384" y="-194.8" font-family="Times New Roman,serif" font-size="14.00"> 0.20s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N77->N75 --> | |
| <g id="edge67" class="edge"><title>N77->N75</title> | |
| <g id="a_edge67"><a xlink:title="os/exec.(*Cmd).Start -> os.StartProcess (0.20s)"> | |
| <path fill="none" stroke="#b2ada2" d="M365.454,-413.897C365.737,-400.743 366.104,-383.679 366.409,-369.476"/> | |
| <polygon fill="#b2ada2" stroke="#b2ada2" points="369.912,-369.358 366.628,-359.285 362.914,-369.207 369.912,-369.358"/> | |
| </a> | |
| </g> | |
| <g id="a_edge67-label"><a xlink:title="os/exec.(*Cmd).Start -> os.StartProcess (0.20s)"> | |
| <text text-anchor="middle" x="384" y="-384.8" font-family="Times New Roman,serif" font-size="14.00"> 0.20s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N78->N73 --> | |
| <g id="edge15" class="edge"><title>N78->N73</title> | |
| <g id="a_edge15"><a xlink:title="os/exec.(*Cmd).Wait -> os.(*Process).Wait (3.64s)"> | |
| <path fill="none" stroke="#b23300" stroke-width="2" d="M261.454,-413.897C261.712,-401.887 262.04,-386.617 262.328,-373.242"/> | |
| <polygon fill="#b23300" stroke="#b23300" stroke-width="2" points="265.832,-373.093 262.548,-363.02 258.834,-372.942 265.832,-373.093"/> | |
| </a> | |
| </g> | |
| <g id="a_edge15-label"><a xlink:title="os/exec.(*Cmd).Wait -> os.(*Process).Wait (3.64s)"> | |
| <text text-anchor="middle" x="280" y="-384.8" font-family="Times New Roman,serif" font-size="14.00"> 3.64s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N79->N1 --> | |
| <g id="edge68" class="edge"><title>N79->N1</title> | |
| <g id="a_edge68"><a xlink:title="syscall.StartProcess ... runtime.cgocall (0.20s)"> | |
| <path fill="none" stroke="#b2ada2" stroke-dasharray="1,5" d="M383.094,-136.813C393.985,-125.181 408.972,-109.176 423.435,-93.7301"/> | |
| <polygon fill="#b2ada2" stroke="#b2ada2" points="426.192,-95.9061 430.472,-86.2143 421.082,-91.1216 426.192,-95.9061"/> | |
| </a> | |
| </g> | |
| <g id="a_edge68-label"><a xlink:title="syscall.StartProcess ... runtime.cgocall (0.20s)"> | |
| <text text-anchor="middle" x="430" y="-107.8" font-family="Times New Roman,serif" font-size="14.00"> 0.20s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N80->N13 --> | |
| <g id="edge60" class="edge"><title>N80->N13</title> | |
| <g id="a_edge60"><a xlink:title="text/template.(*state).walk ... reflect.Value.Call (0.48s)"> | |
| <path fill="none" stroke="#b2a38c" stroke-dasharray="1,5" d="M586.818,-413.998C590.394,-403.444 595.708,-390.842 603,-381 605.884,-377.107 609.243,-373.375 612.82,-369.867"/> | |
| <polygon fill="#b2a38c" stroke="#b2a38c" points="615.33,-372.316 620.385,-363.005 610.627,-367.131 615.33,-372.316"/> | |
| </a> | |
| </g> | |
| <g id="a_edge60-label"><a xlink:title="text/template.(*state).walk ... reflect.Value.Call (0.48s)"> | |
| <text text-anchor="middle" x="620" y="-384.8" font-family="Times New Roman,serif" font-size="14.00"> 0.48s</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