Created
August 8, 2016 17:23
-
-
Save steveyen/579bb432ff1d6c89d4843ae4992efbfb to your computer and use it in GitHub Desktop.
This file contains 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: bleve-query 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.1 | |
* ====================== | |
* | |
* Given an unique existing element with id "viewport" (or when missing, the first g | |
* element), including the 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.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-2010 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. | |
* | |
* THIS SOFTWARE IS PROVIDED BY Andrea Leofreddi ``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 Andrea Leofreddi 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) | |
/// <==== | |
/// END OF CONFIGURATION | |
var root = document.documentElement; | |
var state = 'none', svgRoot, 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(typeof(svgRoot) == "undefined") { | |
var g = null; | |
g = root.getElementById("viewport"); | |
if(g == null) | |
g = root.getElementsByTagName('g')[0]; | |
if(g == null) | |
alert('Unable to obtain SVG root element'); | |
setCTM(g, g.getCTM()); | |
g.removeAttribute("viewBox"); | |
svgRoot = g; | |
} | |
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 / 3600; // Chrome/Safari | |
else | |
delta = evt.detail / -90; // Mozilla | |
var z = 1 + delta; // Zoom factor: 0.9/1.1 | |
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 1643)"> | |
<title>bleve-query</title> | |
<polygon fill="white" stroke="none" points="-4,4 -4,-1643 2134.62,-1643 2134.62,4 -4,4"/> | |
<g id="clust1" class="cluster"><title>cluster_L</title> | |
<polygon fill="none" stroke="black" points="8,-1415 8,-1631 670,-1631 670,-1415 8,-1415"/> | |
</g> | |
<!-- L --> | |
<g id="node1" class="node"><title>L</title> | |
<polygon fill="#f8f8f8" stroke="black" points="661.844,-1623 16.1562,-1623 16.1562,-1423 661.844,-1423 661.844,-1623"/> | |
<text text-anchor="start" x="24.0781" y="-1593.4" font-family="Times,serif" font-size="32.00">File: bleve-query</text> | |
<text text-anchor="start" x="24.0781" y="-1561.4" font-family="Times,serif" font-size="32.00">Type: cpu</text> | |
<text text-anchor="start" x="24.0781" y="-1529.4" font-family="Times,serif" font-size="32.00">77.80s of 84.12s total (92.49%)</text> | |
<text text-anchor="start" x="24.0781" y="-1497.4" font-family="Times,serif" font-size="32.00">Dropped 304 nodes (cum <= 0.42s)</text> | |
<text text-anchor="start" x="24.0781" y="-1465.4" font-family="Times,serif" font-size="32.00">Dropped 24 edges (freq <= 0.08s)</text> | |
<text text-anchor="start" x="24.0781" y="-1433.4" font-family="Times,serif" font-size="32.00">Showing top 80 nodes out of 108 (cum >= 0.44s)</text> | |
</g> | |
<!-- N1 --> | |
<g id="node2" class="node"><title>N1</title> | |
<g id="a_node2"><a xlink:title="runtime.systemstack (61.60s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="766.736,-590 677.264,-590 677.264,-554 766.736,-554 766.736,-590"/> | |
<text text-anchor="middle" x="722" y="-578.3" font-family="Times,serif" font-size="9.00">runtime.systemstack</text> | |
<text text-anchor="middle" x="722" y="-569.3" font-family="Times,serif" font-size="9.00">0.03s(0.036%)</text> | |
<text text-anchor="middle" x="722" y="-560.3" font-family="Times,serif" font-size="9.00">of 61.60s(73.23%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N6 --> | |
<g id="node7" class="node"><title>N6</title> | |
<g id="a_node7"><a xlink:title="runtime.goready.func1 (36.36s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="770.887,-504 673.113,-504 673.113,-468 770.887,-468 770.887,-504"/> | |
<text text-anchor="middle" x="722" y="-492.3" font-family="Times,serif" font-size="9.00">runtime.goready.func1</text> | |
<text text-anchor="middle" x="722" y="-483.3" font-family="Times,serif" font-size="9.00">0.02s(0.024%)</text> | |
<text text-anchor="middle" x="722" y="-474.3" font-family="Times,serif" font-size="9.00">of 36.36s(43.22%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N1->N6 --> | |
<g id="edge3" class="edge"><title>N1->N6</title> | |
<g id="a_edge3"><a xlink:title="runtime.systemstack -> runtime.goready.func1 (36.36s)"> | |
<path fill="none" stroke="black" stroke-width="3" d="M722,-553.595C722,-542.257 722,-527.227 722,-514.315"/> | |
<polygon fill="black" stroke="black" stroke-width="3" points="725.5,-514.095 722,-504.095 718.5,-514.095 725.5,-514.095"/> | |
</a> | |
</g> | |
<g id="a_edge3-label"><a xlink:title="runtime.systemstack -> runtime.goready.func1 (36.36s)"> | |
<text text-anchor="middle" x="742.224" y="-524.8" font-family="Times,serif" font-size="14.00"> 36.36s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N11 --> | |
<g id="node12" class="node"><title>N11</title> | |
<g id="a_node12"><a xlink:title="runtime.semasleep1 (19.27s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="870.77,-504 789.23,-504 789.23,-468 870.77,-468 870.77,-504"/> | |
<text text-anchor="middle" x="830" y="-487.6" font-family="Times,serif" font-size="8.00">runtime.semasleep1</text> | |
<text text-anchor="middle" x="830" y="-479.6" font-family="Times,serif" font-size="8.00">0 of 19.27s(22.91%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N1->N11 --> | |
<g id="edge7" class="edge"><title>N1->N11</title> | |
<g id="a_edge7"><a xlink:title="runtime.systemstack ... runtime.semasleep1 (19.27s)"> | |
<path fill="none" stroke="black" stroke-width="2" stroke-dasharray="1,5" d="M744.116,-553.799C760.132,-541.342 781.979,-524.35 799.63,-510.621"/> | |
<polygon fill="black" stroke="black" stroke-width="2" points="802.169,-513.081 807.914,-504.178 797.871,-507.555 802.169,-513.081"/> | |
</a> | |
</g> | |
<g id="a_edge7-label"><a xlink:title="runtime.systemstack ... runtime.semasleep1 (19.27s)"> | |
<text text-anchor="middle" x="803.224" y="-524.8" font-family="Times,serif" font-size="14.00"> 19.27s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N46 --> | |
<g id="node47" class="node"><title>N46</title> | |
<g id="a_node47"><a xlink:title="runtime.newproc1 (1.29s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1225.73,-504 1144.27,-504 1144.27,-468 1225.73,-468 1225.73,-504"/> | |
<text text-anchor="middle" x="1185" y="-492.3" font-family="Times,serif" font-size="9.00">runtime.newproc1</text> | |
<text text-anchor="middle" x="1185" y="-483.3" font-family="Times,serif" font-size="9.00">0.02s(0.024%)</text> | |
<text text-anchor="middle" x="1185" y="-474.3" font-family="Times,serif" font-size="9.00">of 1.29s(1.53%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N1->N46 --> | |
<g id="edge45" class="edge"><title>N1->N46</title> | |
<g id="a_edge45"><a xlink:title="runtime.systemstack ... runtime.newproc1 (1.29s)"> | |
<path fill="none" stroke="black" stroke-dasharray="1,5" d="M766.967,-564.24C810.91,-557.518 879.662,-546.691 939,-536 1006.76,-523.791 1084.66,-507.972 1134.32,-497.66"/> | |
<polygon fill="black" stroke="black" points="1135.09,-501.074 1144.17,-495.61 1133.67,-494.221 1135.09,-501.074"/> | |
</a> | |
</g> | |
<g id="a_edge45-label"><a xlink:title="runtime.systemstack ... runtime.newproc1 (1.29s)"> | |
<text text-anchor="middle" x="1023.72" y="-524.8" font-family="Times,serif" font-size="14.00"> 1.29s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N52 --> | |
<g id="node53" class="node"><title>N52</title> | |
<g id="a_node53"><a xlink:title="runtime.scang (0.84s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1076.49,-504 1007.51,-504 1007.51,-468 1076.49,-468 1076.49,-504"/> | |
<text text-anchor="middle" x="1042" y="-492.3" font-family="Times,serif" font-size="9.00">runtime.scang</text> | |
<text text-anchor="middle" x="1042" y="-483.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="1042" y="-474.3" font-family="Times,serif" font-size="9.00">of 0.84s(1%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N1->N52 --> | |
<g id="edge53" class="edge"><title>N1->N52</title> | |
<g id="a_edge53"><a xlink:title="runtime.systemstack ... runtime.scang (0.84s)"> | |
<path fill="none" stroke="black" stroke-dasharray="1,5" d="M766.832,-559.232C827.933,-543.192 936.704,-514.64 997.587,-498.658"/> | |
<polygon fill="black" stroke="black" points="998.51,-502.035 1007.29,-496.11 996.733,-495.264 998.51,-502.035"/> | |
</a> | |
</g> | |
<g id="a_edge53-label"><a xlink:title="runtime.systemstack ... runtime.scang (0.84s)"> | |
<text text-anchor="middle" x="918.724" y="-524.8" font-family="Times,serif" font-size="14.00"> 0.84s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N59 --> | |
<g id="node60" class="node"><title>N59</title> | |
<g id="a_node60"><a xlink:title="runtime.(*mheap).alloc.func1 (0.77s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="648.797,-504 537.203,-504 537.203,-468 648.797,-468 648.797,-504"/> | |
<text text-anchor="middle" x="593" y="-487.6" font-family="Times,serif" font-size="8.00">runtime.(*mheap).alloc.func1</text> | |
<text text-anchor="middle" x="593" y="-479.6" font-family="Times,serif" font-size="8.00">0 of 0.77s(0.92%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N1->N59 --> | |
<g id="edge64" class="edge"><title>N1->N59</title> | |
<g id="a_edge64"><a xlink:title="runtime.systemstack -> runtime.(*mheap).alloc.func1 (0.77s)"> | |
<path fill="none" stroke="black" d="M695.584,-553.799C676.018,-541.058 649.169,-523.575 627.846,-509.691"/> | |
<polygon fill="black" stroke="black" points="629.671,-506.702 619.381,-504.178 625.851,-512.568 629.671,-506.702"/> | |
</a> | |
</g> | |
<g id="a_edge64-label"><a xlink:title="runtime.systemstack -> runtime.(*mheap).alloc.func1 (0.77s)"> | |
<text text-anchor="middle" x="682.724" y="-524.8" font-family="Times,serif" font-size="14.00"> 0.77s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N74 --> | |
<g id="node75" class="node"><title>N74</title> | |
<g id="a_node75"><a xlink:title="runtime.gcMarkTermination.func1 (0.52s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1395.46,-504 1268.54,-504 1268.54,-468 1395.46,-468 1395.46,-504"/> | |
<text text-anchor="middle" x="1332" y="-487.6" font-family="Times,serif" font-size="8.00">runtime.gcMarkTermination.func1</text> | |
<text text-anchor="middle" x="1332" y="-479.6" font-family="Times,serif" font-size="8.00">0 of 0.52s(0.62%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N1->N74 --> | |
<g id="edge80" class="edge"><title>N1->N74</title> | |
<g id="a_edge80"><a xlink:title="runtime.systemstack -> runtime.gcMarkTermination.func1 (0.52s)"> | |
<path fill="none" stroke="black" d="M766.899,-566.945C829.218,-561.129 945.404,-549.606 1044,-536 1129.26,-524.234 1150.17,-518.54 1235,-504 1242.58,-502.7 1250.5,-501.332 1258.39,-499.96"/> | |
<polygon fill="black" stroke="black" points="1259.1,-503.389 1268.36,-498.224 1257.9,-496.493 1259.1,-503.389"/> | |
</a> | |
</g> | |
<g id="a_edge80-label"><a xlink:title="runtime.systemstack -> runtime.gcMarkTermination.func1 (0.52s)"> | |
<text text-anchor="middle" x="1150.72" y="-524.8" font-family="Times,serif" font-size="14.00"> 0.52s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N79 --> | |
<g id="node80" class="node"><title>N79</title> | |
<g id="a_node80"><a xlink:title="runtime.gosweepone.func1 (0.44s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1529.14,-504 1426.86,-504 1426.86,-468 1529.14,-468 1529.14,-504"/> | |
<text text-anchor="middle" x="1478" y="-487.6" font-family="Times,serif" font-size="8.00">runtime.gosweepone.func1</text> | |
<text text-anchor="middle" x="1478" y="-479.6" font-family="Times,serif" font-size="8.00">0 of 0.44s(0.52%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N1->N79 --> | |
<g id="edge85" class="edge"><title>N1->N79</title> | |
<g id="a_edge85"><a xlink:title="runtime.systemstack -> runtime.gosweepone.func1 (0.44s)"> | |
<path fill="none" stroke="black" d="M767.044,-569.169C876.793,-564.146 1166.44,-547.511 1404,-504 1408.16,-503.239 1412.43,-502.401 1416.73,-501.519"/> | |
<polygon fill="black" stroke="black" points="1417.71,-504.89 1426.77,-499.393 1416.26,-498.042 1417.71,-504.89"/> | |
</a> | |
</g> | |
<g id="a_edge85-label"><a xlink:title="runtime.systemstack -> runtime.gosweepone.func1 (0.44s)"> | |
<text text-anchor="middle" x="1290.72" y="-524.8" font-family="Times,serif" font-size="14.00"> 0.44s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N2 --> | |
<g id="node3" class="node"><title>N2</title> | |
<g id="a_node3"><a xlink:title="runtime.goexit (55.47s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="763.741,-1541 680.259,-1541 680.259,-1505 763.741,-1505 763.741,-1541"/> | |
<text text-anchor="middle" x="722" y="-1529.3" font-family="Times,serif" font-size="9.00">runtime.goexit</text> | |
<text text-anchor="middle" x="722" y="-1520.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="722" y="-1511.3" font-family="Times,serif" font-size="9.00">of 55.47s(65.94%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N7 --> | |
<g id="node8" class="node"><title>N7</title> | |
<g id="a_node8"><a xlink:title="github.com/blevesearch/bleve.newLexerWithInit.func1 (35.24s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="829.317,-942 614.683,-942 614.683,-906 829.317,-906 829.317,-942"/> | |
<text text-anchor="middle" x="722" y="-930.3" font-family="Times,serif" font-size="9.00">github.com/blevesearch/bleve.newLexerWithInit.func1</text> | |
<text text-anchor="middle" x="722" y="-921.3" font-family="Times,serif" font-size="9.00">0.14s(0.17%)</text> | |
<text text-anchor="middle" x="722" y="-912.3" font-family="Times,serif" font-size="9.00">of 35.24s(41.89%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N2->N7 --> | |
<g id="edge4" class="edge"><title>N2->N7</title> | |
<g id="a_edge4"><a xlink:title="runtime.goexit -> github.com/blevesearch/bleve.newLexerWithInit.func1 (35.24s)"> | |
<path fill="none" stroke="black" stroke-width="3" d="M722,-1504.55C722,-1474.31 722,-1410.18 722,-1356 722,-1356 722,-1356 722,-1010 722,-990.753 722,-969.054 722,-952.397"/> | |
<polygon fill="black" stroke="black" stroke-width="3" points="725.5,-952.256 722,-942.256 718.5,-952.256 725.5,-952.256"/> | |
</a> | |
</g> | |
<g id="a_edge4-label"><a xlink:title="runtime.goexit -> github.com/blevesearch/bleve.newLexerWithInit.func1 (35.24s)"> | |
<text text-anchor="middle" x="742.224" y="-1178.8" font-family="Times,serif" font-size="14.00"> 35.24s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N16 --> | |
<g id="node17" class="node"><title>N16</title> | |
<g id="a_node17"><a xlink:title="main.queryClient (13.71s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="833.741,-1373 750.259,-1373 750.259,-1337 833.741,-1337 833.741,-1373"/> | |
<text text-anchor="middle" x="792" y="-1361.3" font-family="Times,serif" font-size="9.00">main.queryClient</text> | |
<text text-anchor="middle" x="792" y="-1352.3" font-family="Times,serif" font-size="9.00">0.03s(0.036%)</text> | |
<text text-anchor="middle" x="792" y="-1343.3" font-family="Times,serif" font-size="9.00">of 13.71s(16.30%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N2->N16 --> | |
<g id="edge14" class="edge"><title>N2->N16</title> | |
<g id="a_edge14"><a xlink:title="runtime.goexit ... main.queryClient (13.71s)"> | |
<path fill="none" stroke="black" stroke-dasharray="1,5" d="M729.228,-1504.86C741.436,-1475.91 766.227,-1417.12 780.734,-1382.72"/> | |
<polygon fill="black" stroke="black" points="784.046,-1383.87 784.707,-1373.3 777.596,-1381.15 784.046,-1383.87"/> | |
</a> | |
</g> | |
<g id="a_edge14-label"><a xlink:title="runtime.goexit ... main.queryClient (13.71s)"> | |
<text text-anchor="middle" x="797.224" y="-1393.8" font-family="Times,serif" font-size="14.00"> 13.71s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N26 --> | |
<g id="node27" class="node"><title>N26</title> | |
<g id="a_node27"><a xlink:title="runtime.gcBgMarkWorker (6.11s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="952.391,-1373 851.609,-1373 851.609,-1337 952.391,-1337 952.391,-1373"/> | |
<text text-anchor="middle" x="902" y="-1356.6" font-family="Times,serif" font-size="8.00">runtime.gcBgMarkWorker</text> | |
<text text-anchor="middle" x="902" y="-1348.6" font-family="Times,serif" font-size="8.00">0 of 6.11s(7.26%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N2->N26 --> | |
<g id="edge25" class="edge"><title>N2->N26</title> | |
<g id="a_edge25"><a xlink:title="runtime.goexit -> runtime.gcBgMarkWorker (6.11s)"> | |
<path fill="none" stroke="black" d="M740.585,-1504.86C772.871,-1475.09 839.376,-1413.75 876.144,-1379.84"/> | |
<polygon fill="black" stroke="black" points="878.538,-1382.4 883.516,-1373.05 873.792,-1377.25 878.538,-1382.4"/> | |
</a> | |
</g> | |
<g id="a_edge25-label"><a xlink:title="runtime.goexit -> runtime.gcBgMarkWorker (6.11s)"> | |
<text text-anchor="middle" x="880.468" y="-1393.8" font-family="Times,serif" font-size="14.00"> 6.11s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N3 --> | |
<g id="node4" class="node"><title>N3</title> | |
<g id="a_node4"><a xlink:title="runtime.mach_semaphore_signal (39.82s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1531.91,-324 1198.09,-324 1198.09,-268 1531.91,-268 1531.91,-324"/> | |
<text text-anchor="middle" x="1365" y="-300.8" font-family="Times,serif" font-size="24.00">runtime.mach_semaphore_signal</text> | |
<text text-anchor="middle" x="1365" y="-276.8" font-family="Times,serif" font-size="24.00">39.82s(47.34%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N4 --> | |
<g id="node5" class="node"><title>N4</title> | |
<g id="a_node5"><a xlink:title="runtime.wakep (38.93s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1405.77,-414 1324.23,-414 1324.23,-378 1405.77,-378 1405.77,-414"/> | |
<text text-anchor="middle" x="1365" y="-397.6" font-family="Times,serif" font-size="8.00">runtime.wakep</text> | |
<text text-anchor="middle" x="1365" y="-389.6" font-family="Times,serif" font-size="8.00">0 of 38.93s(46.28%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N4->N3 --> | |
<g id="edge1" class="edge"><title>N4->N3</title> | |
<g id="a_edge1"><a xlink:title="runtime.wakep ... runtime.mach_semaphore_signal (38.88s)"> | |
<path fill="none" stroke="black" stroke-width="3" stroke-dasharray="1,5" d="M1365,-377.93C1365,-365.899 1365,-349.321 1365,-334.3"/> | |
<polygon fill="black" stroke="black" stroke-width="3" points="1368.5,-334.225 1365,-324.225 1361.5,-334.225 1368.5,-334.225"/> | |
</a> | |
</g> | |
<g id="a_edge1-label"><a xlink:title="runtime.wakep ... runtime.mach_semaphore_signal (38.88s)"> | |
<text text-anchor="middle" x="1385.22" y="-344.8" font-family="Times,serif" font-size="14.00"> 38.88s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N5 --> | |
<g id="node6" class="node"><title>N5</title> | |
<g id="a_node6"><a xlink:title="runtime.goready (36.36s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="762.77,-678.5 681.23,-678.5 681.23,-642.5 762.77,-642.5 762.77,-678.5"/> | |
<text text-anchor="middle" x="722" y="-662.1" font-family="Times,serif" font-size="8.00">runtime.goready</text> | |
<text text-anchor="middle" x="722" y="-654.1" font-family="Times,serif" font-size="8.00">0 of 36.36s(43.22%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N5->N1 --> | |
<g id="edge2" class="edge"><title>N5->N1</title> | |
<g id="a_edge2"><a xlink:title="runtime.goready -> runtime.systemstack (36.36s)"> | |
<path fill="none" stroke="black" stroke-width="3" d="M722,-642.41C722,-630.445 722,-614.199 722,-600.433"/> | |
<polygon fill="black" stroke="black" stroke-width="3" points="725.5,-600.054 722,-590.054 718.5,-600.054 725.5,-600.054"/> | |
</a> | |
</g> | |
<g id="a_edge2-label"><a xlink:title="runtime.goready -> runtime.systemstack (36.36s)"> | |
<text text-anchor="middle" x="742.224" y="-610.8" font-family="Times,serif" font-size="14.00"> 36.36s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N7->N5 --> | |
<g id="edge5" class="edge"><title>N7->N5</title> | |
<g id="a_edge5"><a xlink:title="github.com/blevesearch/bleve.newLexerWithInit.func1 ... runtime.goready (33.69s)"> | |
<path fill="none" stroke="black" stroke-width="3" stroke-dasharray="1,5" d="M722,-905.842C722,-861.514 722,-742.878 722,-688.909"/> | |
<polygon fill="black" stroke="black" stroke-width="3" points="725.5,-688.721 722,-678.721 718.5,-688.721 725.5,-688.721"/> | |
</a> | |
</g> | |
<g id="a_edge5-label"><a xlink:title="github.com/blevesearch/bleve.newLexerWithInit.func1 ... runtime.goready (33.69s)"> | |
<text text-anchor="middle" x="742.224" y="-787.8" font-family="Times,serif" font-size="14.00"> 33.69s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N40 --> | |
<g id="node41" class="node"><title>N40</title> | |
<g id="a_node41"><a xlink:title="runtime.makeslice (2.32s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="869.226,-854 786.774,-854 786.774,-818 869.226,-818 869.226,-854"/> | |
<text text-anchor="middle" x="828" y="-842.3" font-family="Times,serif" font-size="9.00">runtime.makeslice</text> | |
<text text-anchor="middle" x="828" y="-833.3" font-family="Times,serif" font-size="9.00">0.14s(0.17%)</text> | |
<text text-anchor="middle" x="828" y="-824.3" font-family="Times,serif" font-size="9.00">of 2.32s(2.76%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N7->N40 --> | |
<g id="edge76" class="edge"><title>N7->N40</title> | |
<g id="a_edge76"><a xlink:title="github.com/blevesearch/bleve.newLexerWithInit.func1 -> runtime.makeslice (0.56s)"> | |
<path fill="none" stroke="black" d="M743.196,-905.803C759.084,-892.913 781.022,-875.114 798.605,-860.849"/> | |
<polygon fill="black" stroke="black" points="801.28,-863.185 806.841,-854.167 796.87,-857.749 801.28,-863.185"/> | |
</a> | |
</g> | |
<g id="a_edge76-label"><a xlink:title="github.com/blevesearch/bleve.newLexerWithInit.func1 -> runtime.makeslice (0.56s)"> | |
<text text-anchor="middle" x="798.724" y="-875.8" font-family="Times,serif" font-size="14.00"> 0.56s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N65 --> | |
<g id="node66" class="node"><title>N65</title> | |
<g id="a_node66"><a xlink:title="runtime.growslice (0.66s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="694.482,-855 605.518,-855 605.518,-817 694.482,-817 694.482,-855"/> | |
<text text-anchor="middle" x="650" y="-843" font-family="Times,serif" font-size="10.00">runtime.growslice</text> | |
<text text-anchor="middle" x="650" y="-833" font-family="Times,serif" font-size="10.00">0.27s(0.32%)</text> | |
<text text-anchor="middle" x="650" y="-823" font-family="Times,serif" font-size="10.00">of 0.66s(0.78%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N7->N65 --> | |
<g id="edge74" class="edge"><title>N7->N65</title> | |
<g id="a_edge74"><a xlink:title="github.com/blevesearch/bleve.newLexerWithInit.func1 -> runtime.growslice (0.57s)"> | |
<path fill="none" stroke="black" d="M694.992,-905.911C687.752,-900.472 680.337,-894.023 674.552,-887 669.044,-880.314 664.384,-872.185 660.654,-864.441"/> | |
<polygon fill="black" stroke="black" points="663.848,-863.01 656.57,-855.31 657.458,-865.868 663.848,-863.01"/> | |
</a> | |
</g> | |
<g id="a_edge74-label"><a xlink:title="github.com/blevesearch/bleve.newLexerWithInit.func1 -> runtime.growslice (0.57s)"> | |
<text text-anchor="middle" x="691.724" y="-875.8" font-family="Times,serif" font-size="14.00"> 0.57s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N8 --> | |
<g id="node9" class="node"><title>N8</title> | |
<g id="a_node9"><a xlink:title="runtime.schedule (27.64s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="479.741,-942 396.259,-942 396.259,-906 479.741,-906 479.741,-942"/> | |
<text text-anchor="middle" x="438" y="-930.3" font-family="Times,serif" font-size="9.00">runtime.schedule</text> | |
<text text-anchor="middle" x="438" y="-921.3" font-family="Times,serif" font-size="9.00">0.02s(0.024%)</text> | |
<text text-anchor="middle" x="438" y="-912.3" font-family="Times,serif" font-size="9.00">of 27.64s(32.86%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N10 --> | |
<g id="node11" class="node"><title>N10</title> | |
<g id="a_node11"><a xlink:title="runtime.findrunnable (25.06s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="483.736,-854 392.264,-854 392.264,-818 483.736,-818 483.736,-854"/> | |
<text text-anchor="middle" x="438" y="-842.3" font-family="Times,serif" font-size="9.00">runtime.findrunnable</text> | |
<text text-anchor="middle" x="438" y="-833.3" font-family="Times,serif" font-size="9.00">0.15s(0.18%)</text> | |
<text text-anchor="middle" x="438" y="-824.3" font-family="Times,serif" font-size="9.00">of 25.06s(29.79%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N8->N10 --> | |
<g id="edge6" class="edge"><title>N8->N10</title> | |
<g id="a_edge6"><a xlink:title="runtime.schedule -> runtime.findrunnable (25.06s)"> | |
<path fill="none" stroke="black" stroke-width="2" d="M438,-905.597C438,-893.746 438,-877.817 438,-864.292"/> | |
<polygon fill="black" stroke="black" stroke-width="2" points="441.5,-864.084 438,-854.084 434.5,-864.084 441.5,-864.084"/> | |
</a> | |
</g> | |
<g id="a_edge6-label"><a xlink:title="runtime.schedule -> runtime.findrunnable (25.06s)"> | |
<text text-anchor="middle" x="458.224" y="-875.8" font-family="Times,serif" font-size="14.00"> 25.06s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N9 --> | |
<g id="node10" class="node"><title>N9</title> | |
<g id="a_node10"><a xlink:title="runtime.mcall (27s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="372.991,-1115 301.009,-1115 301.009,-1079 372.991,-1079 372.991,-1115"/> | |
<text text-anchor="middle" x="337" y="-1103.3" font-family="Times,serif" font-size="9.00">runtime.mcall</text> | |
<text text-anchor="middle" x="337" y="-1094.3" font-family="Times,serif" font-size="9.00">0.02s(0.024%)</text> | |
<text text-anchor="middle" x="337" y="-1085.3" font-family="Times,serif" font-size="9.00">of 27s(32.10%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N13 --> | |
<g id="node14" class="node"><title>N13</title> | |
<g id="a_node14"><a xlink:title="runtime.goexit0 (14.22s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="378.741,-1029 295.259,-1029 295.259,-993 378.741,-993 378.741,-1029"/> | |
<text text-anchor="middle" x="337" y="-1017.3" font-family="Times,serif" font-size="9.00">runtime.goexit0</text> | |
<text text-anchor="middle" x="337" y="-1008.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="337" y="-999.3" font-family="Times,serif" font-size="9.00">of 14.22s(16.90%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N9->N13 --> | |
<g id="edge9" class="edge"><title>N9->N13</title> | |
<g id="a_edge9"><a xlink:title="runtime.mcall -> runtime.goexit0 (14.22s)"> | |
<path fill="none" stroke="black" d="M337,-1078.6C337,-1067.26 337,-1052.23 337,-1039.32"/> | |
<polygon fill="black" stroke="black" points="340.5,-1039.1 337,-1029.1 333.5,-1039.1 340.5,-1039.1"/> | |
</a> | |
</g> | |
<g id="a_edge9-label"><a xlink:title="runtime.mcall -> runtime.goexit0 (14.22s)"> | |
<text text-anchor="middle" x="357.224" y="-1049.8" font-family="Times,serif" font-size="14.00"> 14.22s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N20 --> | |
<g id="node21" class="node"><title>N20</title> | |
<g id="a_node21"><a xlink:title="runtime.park_m (12.73s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="479.741,-1029 396.259,-1029 396.259,-993 479.741,-993 479.741,-1029"/> | |
<text text-anchor="middle" x="438" y="-1017.3" font-family="Times,serif" font-size="9.00">runtime.park_m</text> | |
<text text-anchor="middle" x="438" y="-1008.3" font-family="Times,serif" font-size="9.00">0.02s(0.024%)</text> | |
<text text-anchor="middle" x="438" y="-999.3" font-family="Times,serif" font-size="9.00">of 12.73s(15.13%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N9->N20 --> | |
<g id="edge17" class="edge"><title>N9->N20</title> | |
<g id="a_edge17"><a xlink:title="runtime.mcall -> runtime.park_m (12.73s)"> | |
<path fill="none" stroke="black" d="M359.065,-1078.72C366.119,-1073.12 373.93,-1066.85 381,-1061 390.722,-1052.96 401.231,-1044 410.545,-1035.97"/> | |
<polygon fill="black" stroke="black" points="413.103,-1038.39 418.373,-1029.19 408.521,-1033.09 413.103,-1038.39"/> | |
</a> | |
</g> | |
<g id="a_edge17-label"><a xlink:title="runtime.mcall -> runtime.park_m (12.73s)"> | |
<text text-anchor="middle" x="417.224" y="-1049.8" font-family="Times,serif" font-size="14.00"> 12.73s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N12 --> | |
<g id="node13" class="node"><title>N12</title> | |
<g id="a_node13"><a xlink:title="runtime.stopm (15.89s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="577.77,-767 496.23,-767 496.23,-731 577.77,-731 577.77,-767"/> | |
<text text-anchor="middle" x="537" y="-750.6" font-family="Times,serif" font-size="8.00">runtime.stopm</text> | |
<text text-anchor="middle" x="537" y="-742.6" font-family="Times,serif" font-size="8.00">0 of 15.89s(18.89%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N10->N12 --> | |
<g id="edge8" class="edge"><title>N10->N12</title> | |
<g id="a_edge8"><a xlink:title="runtime.findrunnable -> runtime.stopm (15.01s)"> | |
<path fill="none" stroke="black" d="M458.034,-817.799C472.795,-805.126 493.052,-787.734 509.353,-773.738"/> | |
<polygon fill="black" stroke="black" points="511.688,-776.345 516.996,-767.175 507.128,-771.034 511.688,-776.345"/> | |
</a> | |
</g> | |
<g id="a_edge8-label"><a xlink:title="runtime.findrunnable -> runtime.stopm (15.01s)"> | |
<text text-anchor="middle" x="514.224" y="-787.8" font-family="Times,serif" font-size="14.00"> 15.01s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N23 --> | |
<g id="node24" class="node"><title>N23</title> | |
<g id="a_node24"><a xlink:title="runtime.runqsteal (8.60s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="477.733,-767 398.267,-767 398.267,-731 477.733,-731 477.733,-767"/> | |
<text text-anchor="middle" x="438" y="-755.3" font-family="Times,serif" font-size="9.00">runtime.runqsteal</text> | |
<text text-anchor="middle" x="438" y="-746.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="438" y="-737.3" font-family="Times,serif" font-size="9.00">of 8.60s(10.22%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N10->N23 --> | |
<g id="edge21" class="edge"><title>N10->N23</title> | |
<g id="a_edge21"><a xlink:title="runtime.findrunnable -> runtime.runqsteal (8.60s)"> | |
<path fill="none" stroke="black" d="M438,-817.799C438,-806.163 438,-790.548 438,-777.237"/> | |
<polygon fill="black" stroke="black" points="441.5,-777.175 438,-767.175 434.5,-777.175 441.5,-777.175"/> | |
</a> | |
</g> | |
<g id="a_edge21-label"><a xlink:title="runtime.findrunnable -> runtime.runqsteal (8.60s)"> | |
<text text-anchor="middle" x="454.724" y="-787.8" font-family="Times,serif" font-size="14.00"> 8.60s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N39 --> | |
<g id="node40" class="node"><title>N39</title> | |
<g id="a_node40"><a xlink:title="runtime.lock (2.65s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="410.241,-314 335.759,-314 335.759,-278 410.241,-278 410.241,-314"/> | |
<text text-anchor="middle" x="373" y="-302.3" font-family="Times,serif" font-size="9.00">runtime.lock</text> | |
<text text-anchor="middle" x="373" y="-293.3" font-family="Times,serif" font-size="9.00">0.09s(0.11%)</text> | |
<text text-anchor="middle" x="373" y="-284.3" font-family="Times,serif" font-size="9.00">of 2.65s(3.15%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N10->N39 --> | |
<g id="edge70" class="edge"><title>N10->N39</title> | |
<g id="a_edge70"><a xlink:title="runtime.findrunnable -> runtime.lock (0.62s)"> | |
<path fill="none" stroke="black" d="M405.987,-817.89C383.346,-803.223 357,-779.761 357,-750 357,-750 357,-750 357,-395 357,-370.743 361.834,-343.544 366.188,-323.966"/> | |
<polygon fill="black" stroke="black" points="369.6,-324.743 368.458,-314.21 362.783,-323.156 369.6,-324.743"/> | |
</a> | |
</g> | |
<g id="a_edge70-label"><a xlink:title="runtime.findrunnable -> runtime.lock (0.62s)"> | |
<text text-anchor="middle" x="373.724" y="-567.8" font-family="Times,serif" font-size="14.00"> 0.62s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N67 --> | |
<g id="node68" class="node"><title>N67</title> | |
<g id="a_node68"><a xlink:title="runtime.unlock (0.62s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="329.241,-767 254.759,-767 254.759,-731 329.241,-731 329.241,-767"/> | |
<text text-anchor="middle" x="292" y="-755.3" font-family="Times,serif" font-size="9.00">runtime.unlock</text> | |
<text text-anchor="middle" x="292" y="-746.3" font-family="Times,serif" font-size="9.00">0.08s(0.095%)</text> | |
<text text-anchor="middle" x="292" y="-737.3" font-family="Times,serif" font-size="9.00">of 0.62s(0.74%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N10->N67 --> | |
<g id="edge89" class="edge"><title>N10->N67</title> | |
<g id="a_edge89"><a xlink:title="runtime.findrunnable -> runtime.unlock (0.29s)"> | |
<path fill="none" stroke="black" d="M392.22,-832.468C365.117,-828.691 331.834,-819.76 309.552,-799 303.323,-793.196 299.301,-785.027 296.706,-777.02"/> | |
<polygon fill="black" stroke="black" points="300.042,-775.942 294.123,-767.155 293.27,-777.715 300.042,-775.942"/> | |
</a> | |
</g> | |
<g id="a_edge89-label"><a xlink:title="runtime.findrunnable -> runtime.unlock (0.29s)"> | |
<text text-anchor="middle" x="326.724" y="-787.8" font-family="Times,serif" font-size="14.00"> 0.29s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N14 --> | |
<g id="node15" class="node"><title>N14</title> | |
<g id="a_node15"><a xlink:title="runtime.mach_semaphore_wait (13.89s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="951.424,-418 708.576,-418 708.576,-374 951.424,-374 951.424,-418"/> | |
<text text-anchor="middle" x="830" y="-399.6" font-family="Times,serif" font-size="18.00">runtime.mach_semaphore_wait</text> | |
<text text-anchor="middle" x="830" y="-381.6" font-family="Times,serif" font-size="18.00">13.89s(16.51%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N11->N14 --> | |
<g id="edge11" class="edge"><title>N11->N14</title> | |
<g id="a_edge11"><a xlink:title="runtime.semasleep1 -> runtime.mach_semaphore_wait (13.89s)"> | |
<path fill="none" stroke="black" d="M830,-467.614C830,-456.389 830,-441.463 830,-428.226"/> | |
<polygon fill="black" stroke="black" points="833.5,-428.075 830,-418.075 826.5,-428.075 833.5,-428.075"/> | |
</a> | |
</g> | |
<g id="a_edge11-label"><a xlink:title="runtime.semasleep1 -> runtime.mach_semaphore_wait (13.89s)"> | |
<text text-anchor="middle" x="850.224" y="-438.8" font-family="Times,serif" font-size="14.00"> 13.89s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N29 --> | |
<g id="node30" class="node"><title>N29</title> | |
<g id="a_node30"><a xlink:title="runtime.mach_semaphore_timedwait (5.38s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1192.99,-414 969.01,-414 969.01,-378 1192.99,-378 1192.99,-414"/> | |
<text text-anchor="middle" x="1081" y="-398.8" font-family="Times,serif" font-size="14.00">runtime.mach_semaphore_timedwait</text> | |
<text text-anchor="middle" x="1081" y="-384.8" font-family="Times,serif" font-size="14.00">5.38s(6.40%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N11->N29 --> | |
<g id="edge28" class="edge"><title>N11->N29</title> | |
<g id="a_edge28"><a xlink:title="runtime.semasleep1 -> runtime.mach_semaphore_timedwait (5.38s)"> | |
<path fill="none" stroke="black" d="M870.886,-470.665C912.127,-456.206 976.187,-433.747 1022.74,-417.427"/> | |
<polygon fill="black" stroke="black" points="1024.11,-420.655 1032.39,-414.043 1021.79,-414.049 1024.11,-420.655"/> | |
</a> | |
</g> | |
<g id="a_edge28-label"><a xlink:title="runtime.semasleep1 -> runtime.mach_semaphore_timedwait (5.38s)"> | |
<text text-anchor="middle" x="980.724" y="-438.8" font-family="Times,serif" font-size="14.00"> 5.38s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N15 --> | |
<g id="node16" class="node"><title>N15</title> | |
<g id="a_node16"><a xlink:title="runtime.notesleep (13.81s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="641.741,-678.5 558.259,-678.5 558.259,-642.5 641.741,-642.5 641.741,-678.5"/> | |
<text text-anchor="middle" x="600" y="-666.8" font-family="Times,serif" font-size="9.00">runtime.notesleep</text> | |
<text text-anchor="middle" x="600" y="-657.8" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="600" y="-648.8" font-family="Times,serif" font-size="9.00">of 13.81s(16.42%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N12->N15 --> | |
<g id="edge12" class="edge"><title>N12->N15</title> | |
<g id="a_edge12"><a xlink:title="runtime.stopm -> runtime.notesleep (13.81s)"> | |
<path fill="none" stroke="black" d="M549.447,-730.91C558.593,-718.352 571.173,-701.08 581.495,-686.908"/> | |
<polygon fill="black" stroke="black" points="584.521,-688.698 587.579,-678.554 578.863,-684.577 584.521,-688.698"/> | |
</a> | |
</g> | |
<g id="a_edge12-label"><a xlink:title="runtime.stopm -> runtime.notesleep (13.81s)"> | |
<text text-anchor="middle" x="593.224" y="-701.8" font-family="Times,serif" font-size="14.00"> 13.81s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N13->N8 --> | |
<g id="edge10" class="edge"><title>N13->N8</title> | |
<g id="a_edge10"><a xlink:title="runtime.goexit0 -> runtime.schedule (14.17s)"> | |
<path fill="none" stroke="black" d="M356.492,-992.831C367.33,-983.355 381.104,-971.428 393.552,-961 398.447,-956.899 403.688,-952.586 408.792,-948.427"/> | |
<polygon fill="black" stroke="black" points="411.068,-951.088 416.63,-942.07 406.659,-945.651 411.068,-951.088"/> | |
</a> | |
</g> | |
<g id="a_edge10-label"><a xlink:title="runtime.goexit0 -> runtime.schedule (14.17s)"> | |
<text text-anchor="middle" x="414.224" y="-963.8" font-family="Times,serif" font-size="14.00"> 14.17s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N15->N1 --> | |
<g id="edge13" class="edge"><title>N15->N1</title> | |
<g id="a_edge13"><a xlink:title="runtime.notesleep ... runtime.systemstack (13.79s)"> | |
<path fill="none" stroke="black" stroke-dasharray="1,5" d="M624.103,-642.41C642.818,-629.141 668.955,-610.61 689.515,-596.033"/> | |
<polygon fill="black" stroke="black" points="691.814,-598.693 697.947,-590.054 687.765,-592.983 691.814,-598.693"/> | |
</a> | |
</g> | |
<g id="a_edge13-label"><a xlink:title="runtime.notesleep ... runtime.systemstack (13.79s)"> | |
<text text-anchor="middle" x="692.224" y="-610.8" font-family="Times,serif" font-size="14.00"> 13.79s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N17 --> | |
<g id="node18" class="node"><title>N17</title> | |
<g id="a_node18"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).Search (13.68s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1002.18,-1287 801.816,-1287 801.816,-1251 1002.18,-1251 1002.18,-1287"/> | |
<text text-anchor="middle" x="902" y="-1275.3" font-family="Times,serif" font-size="9.00">github.com/blevesearch/bleve.(*indexImpl).Search</text> | |
<text text-anchor="middle" x="902" y="-1266.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="902" y="-1257.3" font-family="Times,serif" font-size="9.00">of 13.68s(16.26%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N16->N17 --> | |
<g id="edge15" class="edge"><title>N16->N17</title> | |
<g id="a_edge15"><a xlink:title="main.queryClient -> github.com/blevesearch/bleve.(*indexImpl).Search (13.68s)"> | |
<path fill="none" stroke="black" d="M814.526,-1336.8C830.987,-1324.23 853.495,-1307.04 871.556,-1293.25"/> | |
<polygon fill="black" stroke="black" points="873.681,-1296.03 879.505,-1287.18 869.433,-1290.47 873.681,-1296.03"/> | |
</a> | |
</g> | |
<g id="a_edge15-label"><a xlink:title="main.queryClient -> github.com/blevesearch/bleve.(*indexImpl).Search (13.68s)"> | |
<text text-anchor="middle" x="874.224" y="-1307.8" font-family="Times,serif" font-size="14.00"> 13.68s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N18 --> | |
<g id="node19" class="node"><title>N18</title> | |
<g id="a_node19"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).SearchInContext (13.67s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1101.18,-1201 864.821,-1201 864.821,-1165 1101.18,-1165 1101.18,-1201"/> | |
<text text-anchor="middle" x="983" y="-1189.3" font-family="Times,serif" font-size="9.00">github.com/blevesearch/bleve.(*indexImpl).SearchInContext</text> | |
<text text-anchor="middle" x="983" y="-1180.3" font-family="Times,serif" font-size="9.00">0.02s(0.024%)</text> | |
<text text-anchor="middle" x="983" y="-1171.3" font-family="Times,serif" font-size="9.00">of 13.67s(16.25%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N17->N18 --> | |
<g id="edge16" class="edge"><title>N17->N18</title> | |
<g id="a_edge16"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).Search -> github.com/blevesearch/bleve.(*indexImpl).SearchInContext (13.67s)"> | |
<path fill="none" stroke="black" d="M918.783,-1250.6C930.482,-1238.46 946.256,-1222.1 959.243,-1208.64"/> | |
<polygon fill="black" stroke="black" points="962.093,-1210.72 966.515,-1201.1 957.055,-1205.86 962.093,-1210.72"/> | |
</a> | |
</g> | |
<g id="a_edge16-label"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).Search -> github.com/blevesearch/bleve.(*indexImpl).SearchInContext (13.67s)"> | |
<text text-anchor="middle" x="968.224" y="-1221.8" font-family="Times,serif" font-size="14.00"> 13.67s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N21 --> | |
<g id="node22" class="node"><title>N21</title> | |
<g id="a_node22"><a xlink:title="github.com/blevesearch/bleve.(*queryStringQuery).Searcher (11.56s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1121.67,-1115 886.331,-1115 886.331,-1079 1121.67,-1079 1121.67,-1115"/> | |
<text text-anchor="middle" x="1004" y="-1103.3" font-family="Times,serif" font-size="9.00">github.com/blevesearch/bleve.(*queryStringQuery).Searcher</text> | |
<text text-anchor="middle" x="1004" y="-1094.3" font-family="Times,serif" font-size="9.00">0.02s(0.024%)</text> | |
<text text-anchor="middle" x="1004" y="-1085.3" font-family="Times,serif" font-size="9.00">of 11.56s(13.74%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N18->N21 --> | |
<g id="edge19" class="edge"><title>N18->N21</title> | |
<g id="a_edge19"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).SearchInContext -> github.com/blevesearch/bleve.(*queryStringQuery).Searcher (11.56s)"> | |
<path fill="none" stroke="black" d="M987.351,-1164.6C990.214,-1153.14 994.018,-1137.93 997.268,-1124.93"/> | |
<polygon fill="black" stroke="black" points="1000.7,-1125.65 999.726,-1115.1 993.905,-1123.95 1000.7,-1125.65"/> | |
</a> | |
</g> | |
<g id="a_edge19-label"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).SearchInContext -> github.com/blevesearch/bleve.(*queryStringQuery).Searcher (11.56s)"> | |
<text text-anchor="middle" x="1014.97" y="-1135.8" font-family="Times,serif" font-size="14.00"> 11.56s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N48 --> | |
<g id="node49" class="node"><title>N48</title> | |
<g id="a_node49"><a xlink:title="log.(*Logger).Printf (1.04s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1702.48,-1115 1613.52,-1115 1613.52,-1079 1702.48,-1079 1702.48,-1115"/> | |
<text text-anchor="middle" x="1658" y="-1103.3" font-family="Times,serif" font-size="9.00">log.(*Logger).Printf</text> | |
<text text-anchor="middle" x="1658" y="-1094.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="1658" y="-1085.3" font-family="Times,serif" font-size="9.00">of 1.04s(1.24%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N18->N48 --> | |
<g id="edge49" class="edge"><title>N18->N48</title> | |
<g id="a_edge49"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).SearchInContext -> log.(*Logger).Printf (1.04s)"> | |
<path fill="none" stroke="black" d="M1101.29,-1167.32C1210.5,-1153.76 1377.2,-1133.05 1522,-1115 1548.77,-1111.66 1578.51,-1107.95 1603.33,-1104.84"/> | |
<polygon fill="black" stroke="black" points="1603.8,-1108.31 1613.29,-1103.6 1602.93,-1101.37 1603.8,-1108.31"/> | |
</a> | |
</g> | |
<g id="a_edge49-label"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).SearchInContext -> log.(*Logger).Printf (1.04s)"> | |
<text text-anchor="middle" x="1389.72" y="-1135.8" font-family="Times,serif" font-size="14.00"> 1.04s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N72 --> | |
<g id="node73" class="node"><title>N72</title> | |
<g id="a_node73"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).Collect (0.52s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1512.52,-1115 1217.48,-1115 1217.48,-1079 1512.52,-1079 1512.52,-1115"/> | |
<text text-anchor="middle" x="1365" y="-1103.3" font-family="Times,serif" font-size="9.00">github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).Collect</text> | |
<text text-anchor="middle" x="1365" y="-1094.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="1365" y="-1085.3" font-family="Times,serif" font-size="9.00">of 0.52s(0.62%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N18->N72 --> | |
<g id="edge78" class="edge"><title>N18->N72</title> | |
<g id="a_edge78"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).SearchInContext -> github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).Collect (0.52s)"> | |
<path fill="none" stroke="black" d="M1060.76,-1164.9C1123.74,-1151.05 1212.42,-1131.55 1277.79,-1117.18"/> | |
<polygon fill="black" stroke="black" points="1278.66,-1120.57 1287.67,-1115 1277.15,-1113.73 1278.66,-1120.57"/> | |
</a> | |
</g> | |
<g id="a_edge78-label"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).SearchInContext -> github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).Collect (0.52s)"> | |
<text text-anchor="middle" x="1213.72" y="-1135.8" font-family="Times,serif" font-size="14.00"> 0.52s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N19 --> | |
<g id="node20" class="node"><title>N19</title> | |
<g id="a_node20"><a xlink:title="runtime.usleep (12.78s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="503.487,-130 372.513,-130 372.513,-86 503.487,-86 503.487,-130"/> | |
<text text-anchor="middle" x="438" y="-111.6" font-family="Times,serif" font-size="18.00">runtime.usleep</text> | |
<text text-anchor="middle" x="438" y="-93.6" font-family="Times,serif" font-size="18.00">12.78s(15.19%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N20->N8 --> | |
<g id="edge18" class="edge"><title>N20->N8</title> | |
<g id="a_edge18"><a xlink:title="runtime.park_m -> runtime.schedule (12.70s)"> | |
<path fill="none" stroke="black" d="M438,-992.799C438,-981.163 438,-965.548 438,-952.237"/> | |
<polygon fill="black" stroke="black" points="441.5,-952.175 438,-942.175 434.5,-952.175 441.5,-952.175"/> | |
</a> | |
</g> | |
<g id="a_edge18-label"><a xlink:title="runtime.park_m -> runtime.schedule (12.70s)"> | |
<text text-anchor="middle" x="458.224" y="-963.8" font-family="Times,serif" font-size="14.00"> 12.70s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N22 --> | |
<g id="node23" class="node"><title>N22</title> | |
<g id="a_node23"><a xlink:title="github.com/blevesearch/bleve.parseQuerySyntax (9.96s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1546.34,-1029 1373.66,-1029 1373.66,-993 1546.34,-993 1546.34,-1029"/> | |
<text text-anchor="middle" x="1460" y="-1012.6" font-family="Times,serif" font-size="8.00">github.com/blevesearch/bleve.parseQuerySyntax</text> | |
<text text-anchor="middle" x="1460" y="-1004.6" font-family="Times,serif" font-size="8.00">0 of 9.96s(11.84%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N21->N22 --> | |
<g id="edge20" class="edge"><title>N21->N22</title> | |
<g id="a_edge20"><a xlink:title="github.com/blevesearch/bleve.(*queryStringQuery).Searcher -> github.com/blevesearch/bleve.parseQuerySyntax (9.96s)"> | |
<path fill="none" stroke="black" d="M1096.55,-1078.95C1174.19,-1064.65 1284.7,-1044.29 1363.45,-1029.79"/> | |
<polygon fill="black" stroke="black" points="1364.17,-1033.21 1373.37,-1027.96 1362.9,-1026.33 1364.17,-1033.21"/> | |
</a> | |
</g> | |
<g id="a_edge20-label"><a xlink:title="github.com/blevesearch/bleve.(*queryStringQuery).Searcher -> github.com/blevesearch/bleve.parseQuerySyntax (9.96s)"> | |
<text text-anchor="middle" x="1275.72" y="-1049.8" font-family="Times,serif" font-size="14.00"> 9.96s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N44 --> | |
<g id="node45" class="node"><title>N44</title> | |
<g id="a_node45"><a xlink:title="github.com/blevesearch/bleve.(*disjunctionQuery).Searcher (1.47s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1122.17,-1029 889.827,-1029 889.827,-993 1122.17,-993 1122.17,-1029"/> | |
<text text-anchor="middle" x="1006" y="-1017.3" font-family="Times,serif" font-size="9.00">github.com/blevesearch/bleve.(*disjunctionQuery).Searcher</text> | |
<text text-anchor="middle" x="1006" y="-1008.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="1006" y="-999.3" font-family="Times,serif" font-size="9.00">of 1.47s(1.75%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N21->N44 --> | |
<g id="edge43" class="edge"><title>N21->N44</title> | |
<g id="a_edge43"><a xlink:title="github.com/blevesearch/bleve.(*queryStringQuery).Searcher ... github.com/blevesearch/bleve.(*disjunctionQuery).Searcher (1.47s)"> | |
<path fill="none" stroke="black" stroke-dasharray="1,5" d="M1004.41,-1078.6C1004.68,-1067.26 1005.04,-1052.23 1005.35,-1039.32"/> | |
<polygon fill="black" stroke="black" points="1008.85,-1039.18 1005.59,-1029.1 1001.86,-1039.01 1008.85,-1039.18"/> | |
</a> | |
</g> | |
<g id="a_edge43-label"><a xlink:title="github.com/blevesearch/bleve.(*queryStringQuery).Searcher ... github.com/blevesearch/bleve.(*disjunctionQuery).Searcher (1.47s)"> | |
<text text-anchor="middle" x="1022.72" y="-1049.8" font-family="Times,serif" font-size="14.00"> 1.47s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N28 --> | |
<g id="node29" class="node"><title>N28</title> | |
<g id="a_node29"><a xlink:title="github.com/blevesearch/bleve.newLexerWithInit (5.62s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1565.64,-943 1354.36,-943 1354.36,-905 1565.64,-905 1565.64,-943"/> | |
<text text-anchor="middle" x="1460" y="-931" font-family="Times,serif" font-size="10.00">github.com/blevesearch/bleve.newLexerWithInit</text> | |
<text text-anchor="middle" x="1460" y="-921" font-family="Times,serif" font-size="10.00">0.17s(0.2%)</text> | |
<text text-anchor="middle" x="1460" y="-911" font-family="Times,serif" font-size="10.00">of 5.62s(6.68%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N22->N28 --> | |
<g id="edge27" class="edge"><title>N22->N28</title> | |
<g id="a_edge27"><a xlink:title="github.com/blevesearch/bleve.parseQuerySyntax ... github.com/blevesearch/bleve.newLexerWithInit (5.62s)"> | |
<path fill="none" stroke="black" stroke-dasharray="1,5" d="M1460,-992.799C1460,-981.505 1460,-966.464 1460,-953.418"/> | |
<polygon fill="black" stroke="black" points="1463.5,-953.056 1460,-943.056 1456.5,-953.056 1463.5,-953.056"/> | |
</a> | |
</g> | |
<g id="a_edge27-label"><a xlink:title="github.com/blevesearch/bleve.parseQuerySyntax ... github.com/blevesearch/bleve.newLexerWithInit (5.62s)"> | |
<text text-anchor="middle" x="1476.72" y="-963.8" font-family="Times,serif" font-size="14.00"> 5.62s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N31 --> | |
<g id="node32" class="node"><title>N31</title> | |
<g id="a_node32"><a xlink:title="github.com/blevesearch/bleve.doParse (4.25s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1738.45,-942 1583.55,-942 1583.55,-906 1738.45,-906 1738.45,-942"/> | |
<text text-anchor="middle" x="1661" y="-930.3" font-family="Times,serif" font-size="9.00">github.com/blevesearch/bleve.doParse</text> | |
<text text-anchor="middle" x="1661" y="-921.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="1661" y="-912.3" font-family="Times,serif" font-size="9.00">of 4.25s(5.05%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N22->N31 --> | |
<g id="edge29" class="edge"><title>N22->N31</title> | |
<g id="a_edge29"><a xlink:title="github.com/blevesearch/bleve.parseQuerySyntax -> github.com/blevesearch/bleve.doParse (4.25s)"> | |
<path fill="none" stroke="black" d="M1500.68,-992.799C1532.66,-979.275 1577.34,-960.377 1611.42,-945.967"/> | |
<polygon fill="black" stroke="black" points="1612.88,-949.149 1620.73,-942.03 1610.16,-942.702 1612.88,-949.149"/> | |
</a> | |
</g> | |
<g id="a_edge29-label"><a xlink:title="github.com/blevesearch/bleve.parseQuerySyntax -> github.com/blevesearch/bleve.doParse (4.25s)"> | |
<text text-anchor="middle" x="1588.72" y="-963.8" font-family="Times,serif" font-size="14.00"> 4.25s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N24 --> | |
<g id="node25" class="node"><title>N24</title> | |
<g id="a_node25"><a xlink:title="runtime.runqgrab (8.59s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="477.241,-678.5 398.759,-678.5 398.759,-642.5 477.241,-642.5 477.241,-678.5"/> | |
<text text-anchor="middle" x="438" y="-666.8" font-family="Times,serif" font-size="9.00">runtime.runqgrab</text> | |
<text text-anchor="middle" x="438" y="-657.8" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="438" y="-648.8" font-family="Times,serif" font-size="9.00">of 8.59s(10.21%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N23->N24 --> | |
<g id="edge22" class="edge"><title>N23->N24</title> | |
<g id="a_edge22"><a xlink:title="runtime.runqsteal -> runtime.runqgrab (8.59s)"> | |
<path fill="none" stroke="black" d="M438,-730.91C438,-718.945 438,-702.699 438,-688.933"/> | |
<polygon fill="black" stroke="black" points="441.5,-688.554 438,-678.554 434.5,-688.554 441.5,-688.554"/> | |
</a> | |
</g> | |
<g id="a_edge22-label"><a xlink:title="runtime.runqsteal -> runtime.runqgrab (8.59s)"> | |
<text text-anchor="middle" x="454.724" y="-701.8" font-family="Times,serif" font-size="14.00"> 8.59s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N24->N19 --> | |
<g id="edge23" class="edge"><title>N24->N19</title> | |
<g id="a_edge23"><a xlink:title="runtime.runqgrab -> runtime.usleep (8.56s)"> | |
<path fill="none" stroke="black" d="M438,-642.268C438,-624.81 438,-597.028 438,-573 438,-573 438,-573 438,-198 438,-178.988 438,-157.691 438,-140.697"/> | |
<polygon fill="black" stroke="black" points="441.5,-140.219 438,-130.219 434.5,-140.219 441.5,-140.219"/> | |
</a> | |
</g> | |
<g id="a_edge23-label"><a xlink:title="runtime.runqgrab -> runtime.usleep (8.56s)"> | |
<text text-anchor="middle" x="454.724" y="-391.8" font-family="Times,serif" font-size="14.00"> 8.56s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N25 --> | |
<g id="node26" class="node"><title>N25</title> | |
<g id="a_node26"><a xlink:title="runtime.mallocgc (8.55s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="874.78,-681 781.22,-681 781.22,-640 874.78,-640 874.78,-681"/> | |
<text text-anchor="middle" x="828" y="-668.2" font-family="Times,serif" font-size="11.00">runtime.mallocgc</text> | |
<text text-anchor="middle" x="828" y="-657.2" font-family="Times,serif" font-size="11.00">0.99s(1.18%)</text> | |
<text text-anchor="middle" x="828" y="-646.2" font-family="Times,serif" font-size="11.00">of 8.55s(10.16%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N25->N1 --> | |
<g id="edge24" class="edge"><title>N25->N1</title> | |
<g id="a_edge24"><a xlink:title="runtime.mallocgc -> runtime.systemstack (6.80s)"> | |
<path fill="none" stroke="black" d="M804.544,-639.818C792.986,-630.171 778.812,-618.415 766,-608 761.439,-604.292 756.589,-600.392 751.839,-596.596"/> | |
<polygon fill="black" stroke="black" points="754.009,-593.849 744.006,-590.356 749.647,-599.324 754.009,-593.849"/> | |
</a> | |
</g> | |
<g id="a_edge24-label"><a xlink:title="runtime.mallocgc -> runtime.systemstack (6.80s)"> | |
<text text-anchor="middle" x="798.724" y="-610.8" font-family="Times,serif" font-size="14.00"> 6.80s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N27 --> | |
<g id="node28" class="node"><title>N27</title> | |
<g id="a_node28"><a xlink:title="runtime.newobject (6.10s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1234.73,-767 1151.27,-767 1151.27,-731 1234.73,-731 1234.73,-767"/> | |
<text text-anchor="middle" x="1193" y="-755.3" font-family="Times,serif" font-size="9.00">runtime.newobject</text> | |
<text text-anchor="middle" x="1193" y="-746.3" font-family="Times,serif" font-size="9.00">0.13s(0.15%)</text> | |
<text text-anchor="middle" x="1193" y="-737.3" font-family="Times,serif" font-size="9.00">of 6.10s(7.25%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N26->N27 --> | |
<g id="edge44" class="edge"><title>N26->N27</title> | |
<g id="a_edge44"><a xlink:title="runtime.gcBgMarkWorker -> runtime.newobject (1.39s)"> | |
<path fill="none" stroke="black" d="M952.565,-1338.86C955.742,-1338.16 958.905,-1337.53 962,-1337 1019.94,-1327.07 2018,-1328.78 2018,-1270 2018,-1270 2018,-1270 2018,-1096 2018,-1053.42 2016.92,-945.234 2003,-905 1982.04,-844.426 1978.77,-816.59 1923,-785 1919.31,-782.909 1411.43,-759.845 1245.08,-752.343"/> | |
<polygon fill="black" stroke="black" points="1244.78,-748.826 1234.63,-751.872 1244.46,-755.819 1244.78,-748.826"/> | |
</a> | |
</g> | |
<g id="a_edge44-label"><a xlink:title="runtime.gcBgMarkWorker -> runtime.newobject (1.39s)"> | |
<text text-anchor="middle" x="2033.72" y="-1049.8" font-family="Times,serif" font-size="14.00"> 1.39s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N30 --> | |
<g id="node31" class="node"><title>N30</title> | |
<g id="a_node31"><a xlink:title="runtime.gcDrain (4.84s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="2062.73,-314 1987.27,-314 1987.27,-278 2062.73,-278 2062.73,-314"/> | |
<text text-anchor="middle" x="2025" y="-302.3" font-family="Times,serif" font-size="9.00">runtime.gcDrain</text> | |
<text text-anchor="middle" x="2025" y="-293.3" font-family="Times,serif" font-size="9.00">0.06s(0.071%)</text> | |
<text text-anchor="middle" x="2025" y="-284.3" font-family="Times,serif" font-size="9.00">of 4.84s(5.75%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N26->N30 --> | |
<g id="edge38" class="edge"><title>N26->N30</title> | |
<g id="a_edge38"><a xlink:title="runtime.gcBgMarkWorker -> runtime.gcDrain (2.50s)"> | |
<path fill="none" stroke="black" d="M952.541,-1338.71C955.724,-1338.05 958.895,-1337.47 962,-1337 1130.36,-1311.59 1558.11,-1330.38 1728,-1319 1803.73,-1313.93 2066,-1345.9 2066,-1270 2066,-1270 2066,-1270 2066,-395 2066,-369.007 2053.57,-341.931 2042.4,-322.843"/> | |
<polygon fill="black" stroke="black" points="2045.29,-320.853 2037.08,-314.154 2039.32,-324.51 2045.29,-320.853"/> | |
</a> | |
</g> | |
<g id="a_edge38-label"><a xlink:title="runtime.gcBgMarkWorker -> runtime.gcDrain (2.50s)"> | |
<text text-anchor="middle" x="2082.72" y="-831.8" font-family="Times,serif" font-size="14.00"> 2.50s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N58 --> | |
<g id="node59" class="node"><title>N58</title> | |
<g id="a_node59"><a xlink:title="runtime.gcMarkTermination (0.79s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1732.25,-1287 1625.75,-1287 1625.75,-1251 1732.25,-1251 1732.25,-1287"/> | |
<text text-anchor="middle" x="1679" y="-1270.6" font-family="Times,serif" font-size="8.00">runtime.gcMarkTermination</text> | |
<text text-anchor="middle" x="1679" y="-1262.6" font-family="Times,serif" font-size="8.00">0 of 0.79s(0.94%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N26->N58 --> | |
<g id="edge60" class="edge"><title>N26->N58</title> | |
<g id="a_edge60"><a xlink:title="runtime.gcBgMarkWorker ... runtime.gcMarkTermination (0.78s)"> | |
<path fill="none" stroke="black" stroke-dasharray="1,5" d="M952.584,-1338.96C955.757,-1338.24 958.914,-1337.58 962,-1337 1200.47,-1292.46 1489.38,-1276.95 1615.24,-1272.05"/> | |
<polygon fill="black" stroke="black" points="1615.61,-1275.54 1625.47,-1271.66 1615.34,-1268.54 1615.61,-1275.54"/> | |
</a> | |
</g> | |
<g id="a_edge60-label"><a xlink:title="runtime.gcBgMarkWorker ... runtime.gcMarkTermination (0.78s)"> | |
<text text-anchor="middle" x="1194.72" y="-1307.8" font-family="Times,serif" font-size="14.00"> 0.78s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N27->N25 --> | |
<g id="edge26" class="edge"><title>N27->N25</title> | |
<g id="a_edge26"><a xlink:title="runtime.newobject -> runtime.mallocgc (5.97s)"> | |
<path fill="none" stroke="black" d="M1151.13,-738.077C1085.58,-722.544 958.631,-692.458 884.871,-674.978"/> | |
<polygon fill="black" stroke="black" points="885.365,-671.498 874.828,-672.598 883.751,-678.309 885.365,-671.498"/> | |
</a> | |
</g> | |
<g id="a_edge26-label"><a xlink:title="runtime.newobject -> runtime.mallocgc (5.97s)"> | |
<text text-anchor="middle" x="1060.72" y="-701.8" font-family="Times,serif" font-size="14.00"> 5.97s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N28->N27 --> | |
<g id="edge37" class="edge"><title>N28->N27</title> | |
<g id="a_edge37"><a xlink:title="github.com/blevesearch/bleve.newLexerWithInit -> runtime.newobject (2.65s)"> | |
<path fill="none" stroke="black" d="M1432.18,-904.976C1383.22,-873.25 1281.75,-807.506 1228.07,-772.723"/> | |
<polygon fill="black" stroke="black" points="1229.86,-769.713 1219.57,-767.213 1226.05,-775.588 1229.86,-769.713"/> | |
</a> | |
</g> | |
<g id="a_edge37-label"><a xlink:title="github.com/blevesearch/bleve.newLexerWithInit -> runtime.newobject (2.65s)"> | |
<text text-anchor="middle" x="1369.72" y="-831.8" font-family="Times,serif" font-size="14.00"> 2.65s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N47 --> | |
<g id="node48" class="node"><title>N47</title> | |
<g id="a_node48"><a xlink:title="runtime.markroot (1.10s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="2130.73,-217 2051.27,-217 2051.27,-181 2130.73,-181 2130.73,-217"/> | |
<text text-anchor="middle" x="2091" y="-205.3" font-family="Times,serif" font-size="9.00">runtime.markroot</text> | |
<text text-anchor="middle" x="2091" y="-196.3" font-family="Times,serif" font-size="9.00">0.02s(0.024%)</text> | |
<text text-anchor="middle" x="2091" y="-187.3" font-family="Times,serif" font-size="9.00">of 1.10s(1.31%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N30->N47 --> | |
<g id="edge47" class="edge"><title>N30->N47</title> | |
<g id="a_edge47"><a xlink:title="runtime.gcDrain -> runtime.markroot (1.10s)"> | |
<path fill="none" stroke="black" d="M2027.54,-277.739C2030.03,-265.259 2034.78,-248.469 2043.55,-236 2046.6,-231.671 2050.32,-227.635 2054.33,-223.946"/> | |
<polygon fill="black" stroke="black" points="2056.86,-226.393 2062.29,-217.296 2052.38,-221.021 2056.86,-226.393"/> | |
</a> | |
</g> | |
<g id="a_edge47-label"><a xlink:title="runtime.gcDrain -> runtime.markroot (1.10s)"> | |
<text text-anchor="middle" x="2059.72" y="-238.8" font-family="Times,serif" font-size="14.00"> 1.10s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N50 --> | |
<g id="node51" class="node"><title>N50</title> | |
<g id="a_node51"><a xlink:title="runtime.scanobject (0.92s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="2032.81,-218 1941.19,-218 1941.19,-180 2032.81,-180 2032.81,-218"/> | |
<text text-anchor="middle" x="1987" y="-206" font-family="Times,serif" font-size="10.00">runtime.scanobject</text> | |
<text text-anchor="middle" x="1987" y="-196" font-family="Times,serif" font-size="10.00">0.52s(0.62%)</text> | |
<text text-anchor="middle" x="1987" y="-186" font-family="Times,serif" font-size="10.00">of 0.92s(1.09%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N30->N50 --> | |
<g id="edge52" class="edge"><title>N30->N50</title> | |
<g id="a_edge52"><a xlink:title="runtime.gcDrain -> runtime.scanobject (0.86s)"> | |
<path fill="none" stroke="black" d="M2005.72,-277.599C1998.6,-269.921 1991.34,-260.302 1987.55,-250 1985.05,-243.212 1984.12,-235.547 1984.01,-228.294"/> | |
<polygon fill="black" stroke="black" points="1987.51,-228.218 1984.32,-218.114 1980.51,-227.999 1987.51,-228.218"/> | |
</a> | |
</g> | |
<g id="a_edge52-label"><a xlink:title="runtime.gcDrain -> runtime.scanobject (0.86s)"> | |
<text text-anchor="middle" x="2003.72" y="-238.8" font-family="Times,serif" font-size="14.00"> 0.86s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N62 --> | |
<g id="node63" class="node"><title>N62</title> | |
<g id="a_node63"><a xlink:title="runtime.(*gcWork).balance (0.70s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1923.24,-217 1808.76,-217 1808.76,-181 1923.24,-181 1923.24,-217"/> | |
<text text-anchor="middle" x="1866" y="-205.3" font-family="Times,serif" font-size="9.00">runtime.(*gcWork).balance</text> | |
<text text-anchor="middle" x="1866" y="-196.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="1866" y="-187.3" font-family="Times,serif" font-size="9.00">of 0.70s(0.83%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N30->N62 --> | |
<g id="edge65" class="edge"><title>N30->N62</title> | |
<g id="a_edge65"><a xlink:title="runtime.gcDrain -> runtime.(*gcWork).balance (0.70s)"> | |
<path fill="none" stroke="black" d="M1994.68,-277.935C1980.07,-269.624 1962.33,-259.416 1946.55,-250 1931.83,-241.211 1915.75,-231.295 1901.85,-222.624"/> | |
<polygon fill="black" stroke="black" points="1903.41,-219.469 1893.07,-217.131 1899.7,-225.403 1903.41,-219.469"/> | |
</a> | |
</g> | |
<g id="a_edge65-label"><a xlink:title="runtime.gcDrain -> runtime.(*gcWork).balance (0.70s)"> | |
<text text-anchor="middle" x="1962.72" y="-238.8" font-family="Times,serif" font-size="14.00"> 0.70s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N32 --> | |
<g id="node33" class="node"><title>N32</title> | |
<g id="a_node33"><a xlink:title="github.com/blevesearch/bleve.yyParse (4.21s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1738.45,-854 1583.55,-854 1583.55,-818 1738.45,-818 1738.45,-854"/> | |
<text text-anchor="middle" x="1661" y="-842.3" font-family="Times,serif" font-size="9.00">github.com/blevesearch/bleve.yyParse</text> | |
<text text-anchor="middle" x="1661" y="-833.3" font-family="Times,serif" font-size="9.00">0.02s(0.024%)</text> | |
<text text-anchor="middle" x="1661" y="-824.3" font-family="Times,serif" font-size="9.00">of 4.21s(5.00%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N31->N32 --> | |
<g id="edge30" class="edge"><title>N31->N32</title> | |
<g id="a_edge30"><a xlink:title="github.com/blevesearch/bleve.doParse -> github.com/blevesearch/bleve.yyParse (4.21s)"> | |
<path fill="none" stroke="black" d="M1661,-905.597C1661,-893.746 1661,-877.817 1661,-864.292"/> | |
<polygon fill="black" stroke="black" points="1664.5,-864.084 1661,-854.084 1657.5,-864.084 1664.5,-864.084"/> | |
</a> | |
</g> | |
<g id="a_edge30-label"><a xlink:title="github.com/blevesearch/bleve.doParse -> github.com/blevesearch/bleve.yyParse (4.21s)"> | |
<text text-anchor="middle" x="1677.72" y="-875.8" font-family="Times,serif" font-size="14.00"> 4.21s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N32->N27 --> | |
<g id="edge48" class="edge"><title>N32->N27</title> | |
<g id="a_edge48"><a xlink:title="github.com/blevesearch/bleve.yyParse -> runtime.newobject (1.05s)"> | |
<path fill="none" stroke="black" d="M1583.72,-820.964C1487.77,-803.537 1326.75,-774.293 1244.6,-759.372"/> | |
<polygon fill="black" stroke="black" points="1245.21,-755.925 1234.74,-757.582 1243.96,-762.812 1245.21,-755.925"/> | |
</a> | |
</g> | |
<g id="a_edge48-label"><a xlink:title="github.com/blevesearch/bleve.yyParse -> runtime.newobject (1.05s)"> | |
<text text-anchor="middle" x="1471.72" y="-787.8" font-family="Times,serif" font-size="14.00"> 1.05s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N34 --> | |
<g id="node35" class="node"><title>N34</title> | |
<g id="a_node35"><a xlink:title="github.com/blevesearch/bleve.(*yyParserImpl).Parse (3.13s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1794.19,-767 1587.81,-767 1587.81,-731 1794.19,-731 1794.19,-767"/> | |
<text text-anchor="middle" x="1691" y="-755.3" font-family="Times,serif" font-size="9.00">github.com/blevesearch/bleve.(*yyParserImpl).Parse</text> | |
<text text-anchor="middle" x="1691" y="-746.3" font-family="Times,serif" font-size="9.00">0.11s(0.13%)</text> | |
<text text-anchor="middle" x="1691" y="-737.3" font-family="Times,serif" font-size="9.00">of 3.13s(3.72%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N32->N34 --> | |
<g id="edge32" class="edge"><title>N32->N34</title> | |
<g id="a_edge32"><a xlink:title="github.com/blevesearch/bleve.yyParse -> github.com/blevesearch/bleve.(*yyParserImpl).Parse (3.13s)"> | |
<path fill="none" stroke="black" d="M1667.07,-817.799C1671.22,-806.047 1676.8,-790.238 1681.53,-776.842"/> | |
<polygon fill="black" stroke="black" points="1684.91,-777.77 1684.94,-767.175 1678.31,-775.44 1684.91,-777.77"/> | |
</a> | |
</g> | |
<g id="a_edge32-label"><a xlink:title="github.com/blevesearch/bleve.yyParse -> github.com/blevesearch/bleve.(*yyParserImpl).Parse (3.13s)"> | |
<text text-anchor="middle" x="1693.72" y="-787.8" font-family="Times,serif" font-size="14.00"> 3.13s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N33 --> | |
<g id="node34" class="node"><title>N33</title> | |
<g id="a_node34"><a xlink:title="runtime.osyield (4.12s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="409.77,-217 336.23,-217 336.23,-181 409.77,-181 409.77,-217"/> | |
<text text-anchor="middle" x="373" y="-200.6" font-family="Times,serif" font-size="8.00">runtime.osyield</text> | |
<text text-anchor="middle" x="373" y="-192.6" font-family="Times,serif" font-size="8.00">0 of 4.12s(4.90%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N33->N19 --> | |
<g id="edge31" class="edge"><title>N33->N19</title> | |
<g id="a_edge31"><a xlink:title="runtime.osyield -> runtime.usleep (4.12s)"> | |
<path fill="none" stroke="black" d="M376.59,-180.709C379.279,-170.542 383.698,-157.801 390.552,-148 393.166,-144.261 396.231,-140.683 399.524,-137.316"/> | |
<polygon fill="black" stroke="black" points="402.106,-139.694 407.01,-130.302 397.319,-134.586 402.106,-139.694"/> | |
</a> | |
</g> | |
<g id="a_edge31-label"><a xlink:title="runtime.osyield -> runtime.usleep (4.12s)"> | |
<text text-anchor="middle" x="407.724" y="-150.8" font-family="Times,serif" font-size="14.00"> 4.12s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N35 --> | |
<g id="node36" class="node"><title>N35</title> | |
<g id="a_node36"><a xlink:title="github.com/blevesearch/bleve.yylex1 (2.87s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1799.46,-678.5 1648.54,-678.5 1648.54,-642.5 1799.46,-642.5 1799.46,-678.5"/> | |
<text text-anchor="middle" x="1724" y="-666.8" font-family="Times,serif" font-size="9.00">github.com/blevesearch/bleve.yylex1</text> | |
<text text-anchor="middle" x="1724" y="-657.8" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="1724" y="-648.8" font-family="Times,serif" font-size="9.00">of 2.87s(3.41%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N34->N35 --> | |
<g id="edge33" class="edge"><title>N34->N35</title> | |
<g id="a_edge33"><a xlink:title="github.com/blevesearch/bleve.(*yyParserImpl).Parse -> github.com/blevesearch/bleve.yylex1 (2.87s)"> | |
<path fill="none" stroke="black" d="M1697.52,-730.91C1702.18,-718.708 1708.53,-702.054 1713.84,-688.119"/> | |
<polygon fill="black" stroke="black" points="1717.2,-689.145 1717.49,-678.554 1710.66,-686.65 1717.2,-689.145"/> | |
</a> | |
</g> | |
<g id="a_edge33-label"><a xlink:title="github.com/blevesearch/bleve.(*yyParserImpl).Parse -> github.com/blevesearch/bleve.yylex1 (2.87s)"> | |
<text text-anchor="middle" x="1725.72" y="-701.8" font-family="Times,serif" font-size="14.00"> 2.87s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N36 --> | |
<g id="node37" class="node"><title>N36</title> | |
<g id="a_node37"><a xlink:title="github.com/blevesearch/bleve.(*lexer).Lex (2.86s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="2037.18,-590 1866.82,-590 1866.82,-554 2037.18,-554 2037.18,-590"/> | |
<text text-anchor="middle" x="1952" y="-578.3" font-family="Times,serif" font-size="9.00">github.com/blevesearch/bleve.(*lexer).Lex</text> | |
<text text-anchor="middle" x="1952" y="-569.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="1952" y="-560.3" font-family="Times,serif" font-size="9.00">of 2.86s(3.40%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N35->N36 --> | |
<g id="edge34" class="edge"><title>N35->N36</title> | |
<g id="a_edge34"><a xlink:title="github.com/blevesearch/bleve.yylex1 ... github.com/blevesearch/bleve.(*lexer).Lex (2.86s)"> | |
<path fill="none" stroke="black" stroke-dasharray="1,5" d="M1769.05,-642.41C1805.89,-628.43 1858.14,-608.609 1897.37,-593.725"/> | |
<polygon fill="black" stroke="black" points="1898.94,-596.874 1907.05,-590.054 1896.46,-590.329 1898.94,-596.874"/> | |
</a> | |
</g> | |
<g id="a_edge34-label"><a xlink:title="github.com/blevesearch/bleve.yylex1 ... github.com/blevesearch/bleve.(*lexer).Lex (2.86s)"> | |
<text text-anchor="middle" x="1874.72" y="-610.8" font-family="Times,serif" font-size="14.00"> 2.86s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N37 --> | |
<g id="node38" class="node"><title>N37</title> | |
<g id="a_node38"><a xlink:title="github.com/blevesearch/bleve.(*lexer).next (2.79s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="2038.19,-504 1865.81,-504 1865.81,-468 2038.19,-468 2038.19,-504"/> | |
<text text-anchor="middle" x="1952" y="-492.3" font-family="Times,serif" font-size="9.00">github.com/blevesearch/bleve.(*lexer).next</text> | |
<text text-anchor="middle" x="1952" y="-483.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="1952" y="-474.3" font-family="Times,serif" font-size="9.00">of 2.79s(3.32%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N36->N37 --> | |
<g id="edge35" class="edge"><title>N36->N37</title> | |
<g id="a_edge35"><a xlink:title="github.com/blevesearch/bleve.(*lexer).Lex -> github.com/blevesearch/bleve.(*lexer).next (2.79s)"> | |
<path fill="none" stroke="black" d="M1952,-553.595C1952,-542.257 1952,-527.227 1952,-514.315"/> | |
<polygon fill="black" stroke="black" points="1955.5,-514.095 1952,-504.095 1948.5,-514.095 1955.5,-514.095"/> | |
</a> | |
</g> | |
<g id="a_edge35-label"><a xlink:title="github.com/blevesearch/bleve.(*lexer).Lex -> github.com/blevesearch/bleve.(*lexer).next (2.79s)"> | |
<text text-anchor="middle" x="1968.72" y="-524.8" font-family="Times,serif" font-size="14.00"> 2.79s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N38 --> | |
<g id="node39" class="node"><title>N38</title> | |
<g id="a_node39"><a xlink:title="runtime.chanrecv (2.74s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1991.22,-414 1912.78,-414 1912.78,-378 1991.22,-378 1991.22,-414"/> | |
<text text-anchor="middle" x="1952" y="-402.3" font-family="Times,serif" font-size="9.00">runtime.chanrecv</text> | |
<text text-anchor="middle" x="1952" y="-393.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="1952" y="-384.3" font-family="Times,serif" font-size="9.00">of 2.74s(3.26%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N37->N38 --> | |
<g id="edge36" class="edge"><title>N37->N38</title> | |
<g id="a_edge36"><a xlink:title="github.com/blevesearch/bleve.(*lexer).next ... runtime.chanrecv (2.73s)"> | |
<path fill="none" stroke="black" stroke-dasharray="1,5" d="M1952,-467.614C1952,-455.24 1952,-438.369 1952,-424.22"/> | |
<polygon fill="black" stroke="black" points="1955.5,-424.05 1952,-414.05 1948.5,-424.05 1955.5,-424.05"/> | |
</a> | |
</g> | |
<g id="a_edge36-label"><a xlink:title="github.com/blevesearch/bleve.(*lexer).next ... runtime.chanrecv (2.73s)"> | |
<text text-anchor="middle" x="1968.72" y="-438.8" font-family="Times,serif" font-size="14.00"> 2.73s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N39->N33 --> | |
<g id="edge39" class="edge"><title>N39->N33</title> | |
<g id="a_edge39"><a xlink:title="runtime.lock -> runtime.osyield (2.34s)"> | |
<path fill="none" stroke="black" d="M373,-277.576C373,-263.648 373,-243.861 373,-227.757"/> | |
<polygon fill="black" stroke="black" points="376.5,-227.314 373,-217.314 369.5,-227.314 376.5,-227.314"/> | |
</a> | |
</g> | |
<g id="a_edge39-label"><a xlink:title="runtime.lock -> runtime.osyield (2.34s)"> | |
<text text-anchor="middle" x="389.724" y="-238.8" font-family="Times,serif" font-size="14.00"> 2.34s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N41 --> | |
<g id="node42" class="node"><title>N41</title> | |
<g id="a_node42"><a xlink:title="runtime.newarray (2.25s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="867.721,-767 788.279,-767 788.279,-731 867.721,-731 867.721,-767"/> | |
<text text-anchor="middle" x="828" y="-755.3" font-family="Times,serif" font-size="9.00">runtime.newarray</text> | |
<text text-anchor="middle" x="828" y="-746.3" font-family="Times,serif" font-size="9.00">0.09s(0.11%)</text> | |
<text text-anchor="middle" x="828" y="-737.3" font-family="Times,serif" font-size="9.00">of 2.25s(2.67%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N40->N41 --> | |
<g id="edge40" class="edge"><title>N40->N41</title> | |
<g id="a_edge40"><a xlink:title="runtime.makeslice -> runtime.newarray (2.18s)"> | |
<path fill="none" stroke="black" d="M828,-817.799C828,-806.163 828,-790.548 828,-777.237"/> | |
<polygon fill="black" stroke="black" points="831.5,-777.175 828,-767.175 824.5,-777.175 831.5,-777.175"/> | |
</a> | |
</g> | |
<g id="a_edge40-label"><a xlink:title="runtime.makeslice -> runtime.newarray (2.18s)"> | |
<text text-anchor="middle" x="844.724" y="-787.8" font-family="Times,serif" font-size="14.00"> 2.18s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N41->N25 --> | |
<g id="edge41" class="edge"><title>N41->N25</title> | |
<g id="a_edge41"><a xlink:title="runtime.newarray -> runtime.mallocgc (2.16s)"> | |
<path fill="none" stroke="black" d="M828,-730.91C828,-719.644 828,-704.584 828,-691.371"/> | |
<polygon fill="black" stroke="black" points="831.5,-691.279 828,-681.279 824.5,-691.279 831.5,-691.279"/> | |
</a> | |
</g> | |
<g id="a_edge41-label"><a xlink:title="runtime.newarray -> runtime.mallocgc (2.16s)"> | |
<text text-anchor="middle" x="844.724" y="-701.8" font-family="Times,serif" font-size="14.00"> 2.16s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N42 --> | |
<g id="node43" class="node"><title>N42</title> | |
<g id="a_node43"><a xlink:title="runtime.morestack (1.50s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="642.758,-1287 567.242,-1287 567.242,-1251 642.758,-1251 642.758,-1287"/> | |
<text text-anchor="middle" x="605" y="-1270.6" font-family="Times,serif" font-size="8.00">runtime.morestack</text> | |
<text text-anchor="middle" x="605" y="-1262.6" font-family="Times,serif" font-size="8.00">0 of 1.50s(1.78%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N43 --> | |
<g id="node44" class="node"><title>N43</title> | |
<g id="a_node44"><a xlink:title="runtime.newstack (1.50s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="644.73,-1201 565.27,-1201 565.27,-1165 644.73,-1165 644.73,-1201"/> | |
<text text-anchor="middle" x="605" y="-1189.3" font-family="Times,serif" font-size="9.00">runtime.newstack</text> | |
<text text-anchor="middle" x="605" y="-1180.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="605" y="-1171.3" font-family="Times,serif" font-size="9.00">of 1.50s(1.78%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N42->N43 --> | |
<g id="edge42" class="edge"><title>N42->N43</title> | |
<g id="a_edge42"><a xlink:title="runtime.morestack -> runtime.newstack (1.50s)"> | |
<path fill="none" stroke="black" d="M605,-1250.6C605,-1239.26 605,-1224.23 605,-1211.32"/> | |
<polygon fill="black" stroke="black" points="608.5,-1211.1 605,-1201.1 601.5,-1211.1 608.5,-1211.1"/> | |
</a> | |
</g> | |
<g id="a_edge42-label"><a xlink:title="runtime.morestack -> runtime.newstack (1.50s)"> | |
<text text-anchor="middle" x="621.724" y="-1221.8" font-family="Times,serif" font-size="14.00"> 1.50s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N55 --> | |
<g id="node56" class="node"><title>N55</title> | |
<g id="a_node56"><a xlink:title="runtime.gopreempt_m (0.80s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="585.817,-1115 498.183,-1115 498.183,-1079 585.817,-1079 585.817,-1115"/> | |
<text text-anchor="middle" x="542" y="-1098.6" font-family="Times,serif" font-size="8.00">runtime.gopreempt_m</text> | |
<text text-anchor="middle" x="542" y="-1090.6" font-family="Times,serif" font-size="8.00">0 of 0.80s(0.95%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N43->N55 --> | |
<g id="edge57" class="edge"><title>N43->N55</title> | |
<g id="a_edge57"><a xlink:title="runtime.newstack -> runtime.gopreempt_m (0.80s)"> | |
<path fill="none" stroke="black" d="M591.946,-1164.6C583.018,-1152.69 571.036,-1136.71 561.046,-1123.4"/> | |
<polygon fill="black" stroke="black" points="563.621,-1121 554.821,-1115.1 558.021,-1125.2 563.621,-1121"/> | |
</a> | |
</g> | |
<g id="a_edge57-label"><a xlink:title="runtime.newstack -> runtime.gopreempt_m (0.80s)"> | |
<text text-anchor="middle" x="594.724" y="-1135.8" font-family="Times,serif" font-size="14.00"> 0.80s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N63 --> | |
<g id="node64" class="node"><title>N63</title> | |
<g id="a_node64"><a xlink:title="runtime.copystack (0.69s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="688.23,-1115 605.77,-1115 605.77,-1079 688.23,-1079 688.23,-1115"/> | |
<text text-anchor="middle" x="647" y="-1103.3" font-family="Times,serif" font-size="9.00">runtime.copystack</text> | |
<text text-anchor="middle" x="647" y="-1094.3" font-family="Times,serif" font-size="9.00">0.02s(0.024%)</text> | |
<text text-anchor="middle" x="647" y="-1085.3" font-family="Times,serif" font-size="9.00">of 0.69s(0.82%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N43->N63 --> | |
<g id="edge67" class="edge"><title>N43->N63</title> | |
<g id="a_edge67"><a xlink:title="runtime.newstack -> runtime.copystack (0.69s)"> | |
<path fill="none" stroke="black" d="M613.702,-1164.6C619.541,-1152.92 627.339,-1137.32 633.92,-1124.16"/> | |
<polygon fill="black" stroke="black" points="637.111,-1125.6 638.452,-1115.1 630.85,-1122.47 637.111,-1125.6"/> | |
</a> | |
</g> | |
<g id="a_edge67-label"><a xlink:title="runtime.newstack -> runtime.copystack (0.69s)"> | |
<text text-anchor="middle" x="645.724" y="-1135.8" font-family="Times,serif" font-size="14.00"> 0.69s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N44->N40 --> | |
<g id="edge91" class="edge"><title>N44->N40</title> | |
<g id="a_edge91"><a xlink:title="github.com/blevesearch/bleve.(*disjunctionQuery).Searcher -> runtime.makeslice (0.10s)"> | |
<path fill="none" stroke="black" d="M952.816,-992.98C926.167,-982.204 895.077,-965.913 873.552,-943 852.62,-920.719 840.456,-887.328 834.045,-863.995"/> | |
<polygon fill="black" stroke="black" points="837.371,-862.873 831.494,-854.058 830.591,-864.614 837.371,-862.873"/> | |
</a> | |
</g> | |
<g id="a_edge91-label"><a xlink:title="github.com/blevesearch/bleve.(*disjunctionQuery).Searcher -> runtime.makeslice (0.10s)"> | |
<text text-anchor="middle" x="890.724" y="-919.8" font-family="Times,serif" font-size="14.00"> 0.10s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N45 --> | |
<g id="node46" class="node"><title>N45</title> | |
<g id="a_node46"><a xlink:title="github.com/blevesearch/bleve.(*matchQuery).Searcher (1.34s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1336.16,-942 1121.84,-942 1121.84,-906 1336.16,-906 1336.16,-942"/> | |
<text text-anchor="middle" x="1229" y="-930.3" font-family="Times,serif" font-size="9.00">github.com/blevesearch/bleve.(*matchQuery).Searcher</text> | |
<text text-anchor="middle" x="1229" y="-921.3" font-family="Times,serif" font-size="9.00">0.03s(0.036%)</text> | |
<text text-anchor="middle" x="1229" y="-912.3" font-family="Times,serif" font-size="9.00">of 1.34s(1.59%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N44->N45 --> | |
<g id="edge75" class="edge"><title>N44->N45</title> | |
<g id="a_edge75"><a xlink:title="github.com/blevesearch/bleve.(*disjunctionQuery).Searcher -> github.com/blevesearch/bleve.(*matchQuery).Searcher (0.56s)"> | |
<path fill="none" stroke="black" d="M1031.68,-992.902C1048.21,-982.505 1070.48,-969.616 1091.55,-961 1106.68,-954.815 1123.18,-949.42 1139.33,-944.821"/> | |
<polygon fill="black" stroke="black" points="1140.62,-948.096 1149.33,-942.06 1138.76,-941.348 1140.62,-948.096"/> | |
</a> | |
</g> | |
<g id="a_edge75-label"><a xlink:title="github.com/blevesearch/bleve.(*disjunctionQuery).Searcher -> github.com/blevesearch/bleve.(*matchQuery).Searcher (0.56s)"> | |
<text text-anchor="middle" x="1108.72" y="-963.8" font-family="Times,serif" font-size="14.00"> 0.56s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N69 --> | |
<g id="node70" class="node"><title>N69</title> | |
<g id="a_node70"><a xlink:title="github.com/blevesearch/bleve.(*termQuery).Searcher (0.59s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1103.7,-942 916.297,-942 916.297,-906 1103.7,-906 1103.7,-942"/> | |
<text text-anchor="middle" x="1010" y="-925.6" font-family="Times,serif" font-size="8.00">github.com/blevesearch/bleve.(*termQuery).Searcher</text> | |
<text text-anchor="middle" x="1010" y="-917.6" font-family="Times,serif" font-size="8.00">0 of 0.59s(0.7%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N44->N69 --> | |
<g id="edge72" class="edge"><title>N44->N69</title> | |
<g id="a_edge72"><a xlink:title="github.com/blevesearch/bleve.(*disjunctionQuery).Searcher -> github.com/blevesearch/bleve.(*termQuery).Searcher (0.59s)"> | |
<path fill="none" stroke="black" d="M1006.81,-992.799C1007.36,-981.163 1008.09,-965.548 1008.72,-952.237"/> | |
<polygon fill="black" stroke="black" points="1012.22,-952.329 1009.19,-942.175 1005.23,-952 1012.22,-952.329"/> | |
</a> | |
</g> | |
<g id="a_edge72-label"><a xlink:title="github.com/blevesearch/bleve.(*disjunctionQuery).Searcher -> github.com/blevesearch/bleve.(*termQuery).Searcher (0.59s)"> | |
<text text-anchor="middle" x="1025.72" y="-963.8" font-family="Times,serif" font-size="14.00"> 0.59s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N45->N44 --> | |
<g id="edge61" class="edge"><title>N45->N44</title> | |
<g id="a_edge61"><a xlink:title="github.com/blevesearch/bleve.(*matchQuery).Searcher -> github.com/blevesearch/bleve.(*disjunctionQuery).Searcher (0.78s)"> | |
<path fill="none" stroke="black" d="M1198.59,-942.063C1179.12,-952.524 1153.06,-965.654 1129,-975 1114.74,-980.538 1099.24,-985.631 1084.21,-990.117"/> | |
<polygon fill="black" stroke="black" points="1083.04,-986.813 1074.42,-992.975 1085,-993.533 1083.04,-986.813"/> | |
</a> | |
</g> | |
<g id="a_edge61-label"><a xlink:title="github.com/blevesearch/bleve.(*matchQuery).Searcher -> github.com/blevesearch/bleve.(*disjunctionQuery).Searcher (0.78s)"> | |
<text text-anchor="middle" x="1176.72" y="-963.8" font-family="Times,serif" font-size="14.00"> 0.78s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N46->N4 --> | |
<g id="edge46" class="edge"><title>N46->N4</title> | |
<g id="a_edge46"><a xlink:title="runtime.newproc1 -> runtime.wakep (1.23s)"> | |
<path fill="none" stroke="black" d="M1225.9,-475.772C1247.47,-470.01 1273.96,-461.482 1296,-450 1311.28,-442.043 1326.63,-430.66 1338.97,-420.481"/> | |
<polygon fill="black" stroke="black" points="1341.23,-423.147 1346.61,-414.014 1336.71,-417.805 1341.23,-423.147"/> | |
</a> | |
</g> | |
<g id="a_edge46-label"><a xlink:title="runtime.newproc1 -> runtime.wakep (1.23s)"> | |
<text text-anchor="middle" x="1334.72" y="-438.8" font-family="Times,serif" font-size="14.00"> 1.23s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N47->N1 --> | |
<g id="edge54" class="edge"><title>N47->N1</title> | |
<g id="a_edge54"><a xlink:title="runtime.markroot -> runtime.systemstack (0.83s)"> | |
<path fill="none" stroke="black" d="M2093.8,-217.317C2097.03,-243.847 2098.87,-294.562 2072,-324 2009.81,-392.137 1958.46,-346.037 1870.55,-374 1719.33,-422.103 1691.51,-463.763 1538,-504 1439.44,-529.833 1412.38,-525.859 1311,-536 1115.14,-555.592 881.469,-565.491 777.091,-569.211"/> | |
<polygon fill="black" stroke="black" points="776.672,-565.723 766.801,-569.572 776.918,-572.719 776.672,-565.723"/> | |
</a> | |
</g> | |
<g id="a_edge54-label"><a xlink:title="runtime.markroot -> runtime.systemstack (0.83s)"> | |
<text text-anchor="middle" x="1886.72" y="-391.8" font-family="Times,serif" font-size="14.00"> 0.83s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N49 --> | |
<g id="node50" class="node"><title>N49</title> | |
<g id="a_node50"><a xlink:title="fmt.Sprintf (0.93s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1839.91,-1029 1766.09,-1029 1766.09,-993 1839.91,-993 1839.91,-1029"/> | |
<text text-anchor="middle" x="1803" y="-1017.3" font-family="Times,serif" font-size="9.00">fmt.Sprintf</text> | |
<text text-anchor="middle" x="1803" y="-1008.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="1803" y="-999.3" font-family="Times,serif" font-size="9.00">of 0.93s(1.11%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N48->N49 --> | |
<g id="edge50" class="edge"><title>N48->N49</title> | |
<g id="a_edge50"><a xlink:title="log.(*Logger).Printf -> fmt.Sprintf (0.93s)"> | |
<path fill="none" stroke="black" d="M1687.69,-1078.8C1709.88,-1065.95 1740.4,-1048.26 1764.47,-1034.32"/> | |
<polygon fill="black" stroke="black" points="1766.45,-1037.22 1773.35,-1029.18 1762.94,-1031.16 1766.45,-1037.22"/> | |
</a> | |
</g> | |
<g id="a_edge50-label"><a xlink:title="log.(*Logger).Printf -> fmt.Sprintf (0.93s)"> | |
<text text-anchor="middle" x="1755.72" y="-1049.8" font-family="Times,serif" font-size="14.00"> 0.93s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N51 --> | |
<g id="node52" class="node"><title>N51</title> | |
<g id="a_node52"><a xlink:title="fmt.(*pp).doPrintf (0.87s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1929.99,-942 1848.01,-942 1848.01,-906 1929.99,-906 1929.99,-942"/> | |
<text text-anchor="middle" x="1889" y="-930.3" font-family="Times,serif" font-size="9.00">fmt.(*pp).doPrintf</text> | |
<text text-anchor="middle" x="1889" y="-921.3" font-family="Times,serif" font-size="9.00">0.04s(0.048%)</text> | |
<text text-anchor="middle" x="1889" y="-912.3" font-family="Times,serif" font-size="9.00">of 0.87s(1.03%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N49->N51 --> | |
<g id="edge51" class="edge"><title>N49->N51</title> | |
<g id="a_edge51"><a xlink:title="fmt.Sprintf -> fmt.(*pp).doPrintf (0.87s)"> | |
<path fill="none" stroke="black" d="M1820.4,-992.799C1832.99,-980.356 1850.18,-963.364 1864.21,-949.504"/> | |
<polygon fill="black" stroke="black" points="1866.97,-951.694 1871.62,-942.175 1862.05,-946.716 1866.97,-951.694"/> | |
</a> | |
</g> | |
<g id="a_edge51-label"><a xlink:title="fmt.Sprintf -> fmt.(*pp).doPrintf (0.87s)"> | |
<text text-anchor="middle" x="1867.72" y="-963.8" font-family="Times,serif" font-size="14.00"> 0.87s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N57 --> | |
<g id="node58" class="node"><title>N57</title> | |
<g id="a_node58"><a xlink:title="fmt.(*pp).printArg (0.79s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1932.83,-854 1849.17,-854 1849.17,-818 1932.83,-818 1932.83,-854"/> | |
<text text-anchor="middle" x="1891" y="-842.3" font-family="Times,serif" font-size="9.00">fmt.(*pp).printArg</text> | |
<text text-anchor="middle" x="1891" y="-833.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="1891" y="-824.3" font-family="Times,serif" font-size="9.00">of 0.79s(0.94%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N51->N57 --> | |
<g id="edge58" class="edge"><title>N51->N57</title> | |
<g id="a_edge58"><a xlink:title="fmt.(*pp).doPrintf -> fmt.(*pp).printArg (0.79s)"> | |
<path fill="none" stroke="black" d="M1889.4,-905.597C1889.68,-893.746 1890.05,-877.817 1890.37,-864.292"/> | |
<polygon fill="black" stroke="black" points="1893.87,-864.163 1890.6,-854.084 1886.87,-864 1893.87,-864.163"/> | |
</a> | |
</g> | |
<g id="a_edge58-label"><a xlink:title="fmt.(*pp).doPrintf -> fmt.(*pp).printArg (0.79s)"> | |
<text text-anchor="middle" x="1906.72" y="-875.8" font-family="Times,serif" font-size="14.00"> 0.79s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N54 --> | |
<g id="node55" class="node"><title>N54</title> | |
<g id="a_node55"><a xlink:title="runtime.scanstack (0.83s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1306.61,-416.5 1211.39,-416.5 1211.39,-375.5 1306.61,-375.5 1306.61,-416.5"/> | |
<text text-anchor="middle" x="1259" y="-403.7" font-family="Times,serif" font-size="11.00">runtime.scanstack</text> | |
<text text-anchor="middle" x="1259" y="-392.7" font-family="Times,serif" font-size="11.00">0.73s(0.87%)</text> | |
<text text-anchor="middle" x="1259" y="-381.7" font-family="Times,serif" font-size="11.00">of 0.83s(0.99%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N52->N54 --> | |
<g id="edge55" class="edge"><title>N52->N54</title> | |
<g id="a_edge55"><a xlink:title="runtime.scang -> runtime.scanstack (0.83s)"> | |
<path fill="none" stroke="black" d="M1076.86,-470.861C1110.58,-457.188 1162.26,-436.229 1201.97,-420.126"/> | |
<polygon fill="black" stroke="black" points="1203.33,-423.354 1211.28,-416.353 1200.7,-416.867 1203.33,-423.354"/> | |
</a> | |
</g> | |
<g id="a_edge55-label"><a xlink:title="runtime.scang -> runtime.scanstack (0.83s)"> | |
<text text-anchor="middle" x="1174.72" y="-438.8" font-family="Times,serif" font-size="14.00"> 0.83s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N53 --> | |
<g id="node54" class="node"><title>N53</title> | |
<g id="a_node54"><a xlink:title="runtime.goschedImpl (0.83s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="582.207,-1029 497.793,-1029 497.793,-993 582.207,-993 582.207,-1029"/> | |
<text text-anchor="middle" x="540" y="-1012.6" font-family="Times,serif" font-size="8.00">runtime.goschedImpl</text> | |
<text text-anchor="middle" x="540" y="-1004.6" font-family="Times,serif" font-size="8.00">0 of 0.83s(0.99%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N53->N8 --> | |
<g id="edge63" class="edge"><title>N53->N8</title> | |
<g id="a_edge63"><a xlink:title="runtime.goschedImpl -> runtime.schedule (0.77s)"> | |
<path fill="none" stroke="black" d="M519.934,-992.914C508.795,-983.464 494.67,-971.534 482,-961 477.119,-956.942 471.914,-952.651 466.855,-948.5"/> | |
<polygon fill="black" stroke="black" points="469.048,-945.772 459.093,-942.146 464.614,-951.189 469.048,-945.772"/> | |
</a> | |
</g> | |
<g id="a_edge63-label"><a xlink:title="runtime.goschedImpl -> runtime.schedule (0.77s)"> | |
<text text-anchor="middle" x="514.724" y="-963.8" font-family="Times,serif" font-size="14.00"> 0.77s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N55->N53 --> | |
<g id="edge56" class="edge"><title>N55->N53</title> | |
<g id="a_edge56"><a xlink:title="runtime.gopreempt_m -> runtime.goschedImpl (0.80s)"> | |
<path fill="none" stroke="black" d="M541.586,-1078.6C541.316,-1067.26 540.958,-1052.23 540.65,-1039.32"/> | |
<polygon fill="black" stroke="black" points="544.144,-1039.01 540.407,-1029.1 537.146,-1039.18 544.144,-1039.01"/> | |
</a> | |
</g> | |
<g id="a_edge56-label"><a xlink:title="runtime.gopreempt_m -> runtime.goschedImpl (0.80s)"> | |
<text text-anchor="middle" x="558.724" y="-1049.8" font-family="Times,serif" font-size="14.00"> 0.80s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N56 --> | |
<g id="node57" class="node"><title>N56</title> | |
<g id="a_node57"><a xlink:title="runtime.memmove (0.80s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1915.9,-36 1816.1,-36 1816.1,-0 1915.9,-0 1915.9,-36"/> | |
<text text-anchor="middle" x="1866" y="-20.2" font-family="Times,serif" font-size="11.00">runtime.memmove</text> | |
<text text-anchor="middle" x="1866" y="-9.2" font-family="Times,serif" font-size="11.00">0.80s(0.95%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N68 --> | |
<g id="node69" class="node"><title>N68</title> | |
<g id="a_node69"><a xlink:title="fmt.(*pp).printReflectValue (0.59s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1937.98,-767 1822.02,-767 1822.02,-731 1937.98,-731 1937.98,-767"/> | |
<text text-anchor="middle" x="1880" y="-755.3" font-family="Times,serif" font-size="9.00">fmt.(*pp).printReflectValue</text> | |
<text text-anchor="middle" x="1880" y="-746.3" font-family="Times,serif" font-size="9.00">0.06s(0.071%)</text> | |
<text text-anchor="middle" x="1880" y="-737.3" font-family="Times,serif" font-size="9.00">of 0.59s(0.7%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N57->N68 --> | |
<g id="edge71" class="edge"><title>N57->N68</title> | |
<g id="a_edge71"><a xlink:title="fmt.(*pp).printArg -> fmt.(*pp).printReflectValue (0.59s)"> | |
<path fill="none" stroke="black" d="M1888.77,-817.799C1887.27,-806.163 1885.25,-790.548 1883.52,-777.237"/> | |
<polygon fill="black" stroke="black" points="1886.98,-776.644 1882.22,-767.175 1880.04,-777.542 1886.98,-776.644"/> | |
</a> | |
</g> | |
<g id="a_edge71-label"><a xlink:title="fmt.(*pp).printArg -> fmt.(*pp).printReflectValue (0.59s)"> | |
<text text-anchor="middle" x="1902.72" y="-787.8" font-family="Times,serif" font-size="14.00"> 0.59s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N58->N1 --> | |
<g id="edge59" class="edge"><title>N58->N1</title> | |
<g id="a_edge59"><a xlink:title="runtime.gcMarkTermination -> runtime.systemstack (0.79s)"> | |
<path fill="none" stroke="black" d="M1732.31,-1263.35C1815.31,-1254.63 1966,-1232.15 1966,-1184 1966,-1184 1966,-1184 1966,-791 1966,-722.008 1982.94,-684.239 1930,-640 1885.23,-602.59 1008.03,-579.644 777.242,-574.238"/> | |
<polygon fill="black" stroke="black" points="777.143,-570.735 767.064,-574.002 776.98,-577.733 777.143,-570.735"/> | |
</a> | |
</g> | |
<g id="a_edge59-label"><a xlink:title="runtime.gcMarkTermination -> runtime.systemstack (0.79s)"> | |
<text text-anchor="middle" x="1982.72" y="-919.8" font-family="Times,serif" font-size="14.00"> 0.79s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N60 --> | |
<g id="node61" class="node"><title>N60</title> | |
<g id="a_node61"><a xlink:title="runtime.(*mheap).alloc_m (0.77s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="607.968,-414 496.032,-414 496.032,-378 607.968,-378 607.968,-414"/> | |
<text text-anchor="middle" x="552" y="-402.3" font-family="Times,serif" font-size="9.00">runtime.(*mheap).alloc_m</text> | |
<text text-anchor="middle" x="552" y="-393.3" font-family="Times,serif" font-size="9.00">0.02s(0.024%)</text> | |
<text text-anchor="middle" x="552" y="-384.3" font-family="Times,serif" font-size="9.00">of 0.77s(0.92%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N59->N60 --> | |
<g id="edge62" class="edge"><title>N59->N60</title> | |
<g id="a_edge62"><a xlink:title="runtime.(*mheap).alloc.func1 -> runtime.(*mheap).alloc_m (0.77s)"> | |
<path fill="none" stroke="black" d="M584.9,-467.614C579.022,-454.998 570.965,-437.705 564.296,-423.391"/> | |
<polygon fill="black" stroke="black" points="567.34,-421.637 559.944,-414.05 560.995,-424.593 567.34,-421.637"/> | |
</a> | |
</g> | |
<g id="a_edge62-label"><a xlink:title="runtime.(*mheap).alloc.func1 -> runtime.(*mheap).alloc_m (0.77s)"> | |
<text text-anchor="middle" x="593.724" y="-438.8" font-family="Times,serif" font-size="14.00"> 0.77s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N60->N39 --> | |
<g id="edge69" class="edge"><title>N60->N39</title> | |
<g id="a_edge69"><a xlink:title="runtime.(*mheap).alloc_m -> runtime.lock (0.64s)"> | |
<path fill="none" stroke="black" d="M520.821,-377.93C490.881,-361.538 445.52,-336.704 412.947,-318.87"/> | |
<polygon fill="black" stroke="black" points="414.574,-315.771 404.122,-314.039 411.213,-321.911 414.574,-315.771"/> | |
</a> | |
</g> | |
<g id="a_edge69-label"><a xlink:title="runtime.(*mheap).alloc_m -> runtime.lock (0.64s)"> | |
<text text-anchor="middle" x="495.724" y="-344.8" font-family="Times,serif" font-size="14.00"> 0.64s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N61 --> | |
<g id="node62" class="node"><title>N61</title> | |
<g id="a_node62"><a xlink:title="nanotime (0.73s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1831.77,-854 1756.23,-854 1756.23,-818 1831.77,-818 1831.77,-854"/> | |
<text text-anchor="middle" x="1794" y="-838.2" font-family="Times,serif" font-size="11.00">nanotime</text> | |
<text text-anchor="middle" x="1794" y="-827.2" font-family="Times,serif" font-size="11.00">0.73s(0.87%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N64 --> | |
<g id="node65" class="node"><title>N64</title> | |
<g id="a_node65"><a xlink:title="runtime.handoff (0.69s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1902.77,-126 1829.23,-126 1829.23,-90 1902.77,-90 1902.77,-126"/> | |
<text text-anchor="middle" x="1866" y="-109.6" font-family="Times,serif" font-size="8.00">runtime.handoff</text> | |
<text text-anchor="middle" x="1866" y="-101.6" font-family="Times,serif" font-size="8.00">0 of 0.69s(0.82%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N62->N64 --> | |
<g id="edge66" class="edge"><title>N62->N64</title> | |
<g id="a_edge66"><a xlink:title="runtime.(*gcWork).balance -> runtime.handoff (0.69s)"> | |
<path fill="none" stroke="black" d="M1866,-180.84C1866,-168.281 1866,-150.979 1866,-136.502"/> | |
<polygon fill="black" stroke="black" points="1869.5,-136.107 1866,-126.107 1862.5,-136.107 1869.5,-136.107"/> | |
</a> | |
</g> | |
<g id="a_edge66-label"><a xlink:title="runtime.(*gcWork).balance -> runtime.handoff (0.69s)"> | |
<text text-anchor="middle" x="1882.72" y="-150.8" font-family="Times,serif" font-size="14.00"> 0.69s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N66 --> | |
<g id="node67" class="node"><title>N66</title> | |
<g id="a_node67"><a xlink:title="runtime.gentraceback (0.64s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="693.709,-1029 600.291,-1029 600.291,-993 693.709,-993 693.709,-1029"/> | |
<text text-anchor="middle" x="647" y="-1017.3" font-family="Times,serif" font-size="9.00">runtime.gentraceback</text> | |
<text text-anchor="middle" x="647" y="-1008.3" font-family="Times,serif" font-size="9.00">0.02s(0.024%)</text> | |
<text text-anchor="middle" x="647" y="-999.3" font-family="Times,serif" font-size="9.00">of 0.64s(0.76%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N63->N66 --> | |
<g id="edge77" class="edge"><title>N63->N66</title> | |
<g id="a_edge77"><a xlink:title="runtime.copystack -> runtime.gentraceback (0.56s)"> | |
<path fill="none" stroke="black" d="M647,-1078.6C647,-1067.26 647,-1052.23 647,-1039.32"/> | |
<polygon fill="black" stroke="black" points="650.5,-1039.1 647,-1029.1 643.5,-1039.1 650.5,-1039.1"/> | |
</a> | |
</g> | |
<g id="a_edge77-label"><a xlink:title="runtime.copystack -> runtime.gentraceback (0.56s)"> | |
<text text-anchor="middle" x="663.724" y="-1049.8" font-family="Times,serif" font-size="14.00"> 0.56s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N64->N56 --> | |
<g id="edge68" class="edge"><title>N64->N56</title> | |
<g id="a_edge68"><a xlink:title="runtime.handoff -> runtime.memmove (0.68s)"> | |
<path fill="none" stroke="black" d="M1866,-89.614C1866,-77.2403 1866,-60.3686 1866,-46.2198"/> | |
<polygon fill="black" stroke="black" points="1869.5,-46.0504 1866,-36.0504 1862.5,-46.0504 1869.5,-46.0504"/> | |
</a> | |
</g> | |
<g id="a_edge68-label"><a xlink:title="runtime.handoff -> runtime.memmove (0.68s)"> | |
<text text-anchor="middle" x="1882.72" y="-56.8" font-family="Times,serif" font-size="14.00"> 0.68s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N71 --> | |
<g id="node72" class="node"><title>N71</title> | |
<g id="a_node72"><a xlink:title="fmt.(*pp).printValue (0.58s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1920.98,-678.5 1831.02,-678.5 1831.02,-642.5 1920.98,-642.5 1920.98,-678.5"/> | |
<text text-anchor="middle" x="1876" y="-666.8" font-family="Times,serif" font-size="9.00">fmt.(*pp).printValue</text> | |
<text text-anchor="middle" x="1876" y="-657.8" font-family="Times,serif" font-size="9.00">0.02s(0.024%)</text> | |
<text text-anchor="middle" x="1876" y="-648.8" font-family="Times,serif" font-size="9.00">of 0.58s(0.69%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N68->N71 --> | |
<g id="edge90" class="edge"><title>N68->N71</title> | |
<g id="a_edge90"><a xlink:title="fmt.(*pp).printReflectValue -> fmt.(*pp).printValue (0.28s)"> | |
<path fill="none" stroke="black" d="M1879.21,-730.91C1878.66,-718.945 1877.91,-702.699 1877.27,-688.933"/> | |
<polygon fill="black" stroke="black" points="1880.75,-688.382 1876.79,-678.554 1873.75,-688.705 1880.75,-688.382"/> | |
</a> | |
</g> | |
<g id="a_edge90-label"><a xlink:title="fmt.(*pp).printReflectValue -> fmt.(*pp).printValue (0.28s)"> | |
<text text-anchor="middle" x="1894.72" y="-701.8" font-family="Times,serif" font-size="14.00"> 0.28s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N70 --> | |
<g id="node71" class="node"><title>N70</title> | |
<g id="a_node71"><a xlink:title="github.com/blevesearch/bleve/search/searchers.NewTermSearcher (0.59s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1141.26,-854 886.745,-854 886.745,-818 1141.26,-818 1141.26,-854"/> | |
<text text-anchor="middle" x="1014" y="-842.3" font-family="Times,serif" font-size="9.00">github.com/blevesearch/bleve/search/searchers.NewTermSearcher</text> | |
<text text-anchor="middle" x="1014" y="-833.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="1014" y="-824.3" font-family="Times,serif" font-size="9.00">of 0.59s(0.7%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N69->N70 --> | |
<g id="edge73" class="edge"><title>N69->N70</title> | |
<g id="a_edge73"><a xlink:title="github.com/blevesearch/bleve.(*termQuery).Searcher -> github.com/blevesearch/bleve/search/searchers.NewTermSearcher (0.59s)"> | |
<path fill="none" stroke="black" d="M1010.81,-905.597C1011.36,-893.746 1012.1,-877.817 1012.73,-864.292"/> | |
<polygon fill="black" stroke="black" points="1016.24,-864.236 1013.21,-854.084 1009.24,-863.911 1016.24,-864.236"/> | |
</a> | |
</g> | |
<g id="a_edge73-label"><a xlink:title="github.com/blevesearch/bleve.(*termQuery).Searcher -> github.com/blevesearch/bleve/search/searchers.NewTermSearcher (0.59s)"> | |
<text text-anchor="middle" x="1029.72" y="-875.8" font-family="Times,serif" font-size="14.00"> 0.59s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N71->N68 --> | |
<g id="edge88" class="edge"><title>N71->N68</title> | |
<g id="a_edge88"><a xlink:title="fmt.(*pp).printValue -> fmt.(*pp).printReflectValue (0.30s)"> | |
<path fill="none" stroke="black" d="M1849.65,-678.571C1838.54,-688.04 1829.45,-700.42 1835.55,-713 1837.43,-716.877 1839.98,-720.453 1842.9,-723.717"/> | |
<polygon fill="black" stroke="black" points="1840.62,-726.384 1850.27,-730.764 1845.46,-721.324 1840.62,-726.384"/> | |
</a> | |
</g> | |
<g id="a_edge88-label"><a xlink:title="fmt.(*pp).printValue -> fmt.(*pp).printReflectValue (0.30s)"> | |
<text text-anchor="middle" x="1851.72" y="-701.8" font-family="Times,serif" font-size="14.00"> 0.30s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N75 --> | |
<g id="node76" class="node"><title>N75</title> | |
<g id="a_node76"><a xlink:title="time.Now (0.51s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1683.77,-1029 1610.23,-1029 1610.23,-993 1683.77,-993 1683.77,-1029"/> | |
<text text-anchor="middle" x="1647" y="-1012.6" font-family="Times,serif" font-size="8.00">time.Now</text> | |
<text text-anchor="middle" x="1647" y="-1004.6" font-family="Times,serif" font-size="8.00">0 of 0.51s(0.61%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N72->N75 --> | |
<g id="edge86" class="edge"><title>N72->N75</title> | |
<g id="a_edge86"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).Collect -> time.Now (0.40s)"> | |
<path fill="none" stroke="black" d="M1422.41,-1078.9C1474.84,-1063.28 1551.4,-1040.48 1600.21,-1025.94"/> | |
<polygon fill="black" stroke="black" points="1601.3,-1029.27 1609.88,-1023.06 1599.3,-1022.56 1601.3,-1029.27"/> | |
</a> | |
</g> | |
<g id="a_edge86-label"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).Collect -> time.Now (0.40s)"> | |
<text text-anchor="middle" x="1538.72" y="-1049.8" font-family="Times,serif" font-size="14.00"> 0.40s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N73 --> | |
<g id="node74" class="node"><title>N73</title> | |
<g id="a_node74"><a xlink:title="runtime.gcMark (0.52s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1498.24,-414 1423.76,-414 1423.76,-378 1498.24,-378 1498.24,-414"/> | |
<text text-anchor="middle" x="1461" y="-402.3" font-family="Times,serif" font-size="9.00">runtime.gcMark</text> | |
<text text-anchor="middle" x="1461" y="-393.3" font-family="Times,serif" font-size="9.00">0.05s(0.059%)</text> | |
<text text-anchor="middle" x="1461" y="-384.3" font-family="Times,serif" font-size="9.00">of 0.52s(0.62%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N73->N30 --> | |
<g id="edge87" class="edge"><title>N73->N30</title> | |
<g id="a_edge87"><a xlink:title="runtime.gcMark -> runtime.gcDrain (0.33s)"> | |
<path fill="none" stroke="black" d="M1495.77,-377.904C1499.51,-376.437 1503.3,-375.097 1507,-374 1675.3,-324.158 1884.36,-305.7 1976.98,-299.636"/> | |
<polygon fill="black" stroke="black" points="1977.4,-303.116 1987.16,-298.989 1976.96,-296.131 1977.4,-303.116"/> | |
</a> | |
</g> | |
<g id="a_edge87-label"><a xlink:title="runtime.gcMark -> runtime.gcDrain (0.33s)"> | |
<text text-anchor="middle" x="1648.72" y="-344.8" font-family="Times,serif" font-size="14.00"> 0.33s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N74->N73 --> | |
<g id="edge79" class="edge"><title>N74->N73</title> | |
<g id="a_edge79"><a xlink:title="runtime.gcMarkTermination.func1 -> runtime.gcMark (0.52s)"> | |
<path fill="none" stroke="black" d="M1357.18,-467.824C1377.25,-454.135 1405.52,-434.845 1427.5,-419.853"/> | |
<polygon fill="black" stroke="black" points="1429.6,-422.66 1435.88,-414.133 1425.65,-416.877 1429.6,-422.66"/> | |
</a> | |
</g> | |
<g id="a_edge79-label"><a xlink:title="runtime.gcMarkTermination.func1 -> runtime.gcMark (0.52s)"> | |
<text text-anchor="middle" x="1416.72" y="-438.8" font-family="Times,serif" font-size="14.00"> 0.52s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N76 --> | |
<g id="node77" class="node"><title>N76</title> | |
<g id="a_node77"><a xlink:title="time.now (0.51s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1829.77,-942 1756.23,-942 1756.23,-906 1829.77,-906 1829.77,-942"/> | |
<text text-anchor="middle" x="1793" y="-925.6" font-family="Times,serif" font-size="8.00">time.now</text> | |
<text text-anchor="middle" x="1793" y="-917.6" font-family="Times,serif" font-size="8.00">0 of 0.51s(0.61%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N75->N76 --> | |
<g id="edge81" class="edge"><title>N75->N76</title> | |
<g id="a_edge81"><a xlink:title="time.Now -> time.now (0.51s)"> | |
<path fill="none" stroke="black" d="M1676.55,-992.799C1699.11,-979.665 1730.37,-961.462 1754.83,-947.225"/> | |
<polygon fill="black" stroke="black" points="1756.62,-950.232 1763.5,-942.175 1753.1,-944.182 1756.62,-950.232"/> | |
</a> | |
</g> | |
<g id="a_edge81-label"><a xlink:title="time.Now -> time.now (0.51s)"> | |
<text text-anchor="middle" x="1744.72" y="-963.8" font-family="Times,serif" font-size="14.00"> 0.51s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N76->N61 --> | |
<g id="edge82" class="edge"><title>N76->N61</title> | |
<g id="a_edge82"><a xlink:title="time.now -> nanotime (0.51s)"> | |
<path fill="none" stroke="black" d="M1793.2,-905.597C1793.34,-893.746 1793.53,-877.817 1793.68,-864.292"/> | |
<polygon fill="black" stroke="black" points="1797.18,-864.124 1793.8,-854.084 1790.19,-864.043 1797.18,-864.124"/> | |
</a> | |
</g> | |
<g id="a_edge82-label"><a xlink:title="time.now -> nanotime (0.51s)"> | |
<text text-anchor="middle" x="1809.72" y="-875.8" font-family="Times,serif" font-size="14.00"> 0.51s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N77 --> | |
<g id="node78" class="node"><title>N77</title> | |
<g id="a_node78"><a xlink:title="runtime.(*mcache).refill (0.49s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1086.97,-1541 983.035,-1541 983.035,-1505 1086.97,-1505 1086.97,-1541"/> | |
<text text-anchor="middle" x="1035" y="-1529.3" font-family="Times,serif" font-size="9.00">runtime.(*mcache).refill</text> | |
<text text-anchor="middle" x="1035" y="-1520.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="1035" y="-1511.3" font-family="Times,serif" font-size="9.00">of 0.49s(0.58%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N78 --> | |
<g id="node79" class="node"><title>N78</title> | |
<g id="a_node79"><a xlink:title="runtime.(*mcentral).cacheSpan (0.48s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1099.45,-1373 970.552,-1373 970.552,-1337 1099.45,-1337 1099.45,-1373"/> | |
<text text-anchor="middle" x="1035" y="-1361.3" font-family="Times,serif" font-size="9.00">runtime.(*mcentral).cacheSpan</text> | |
<text text-anchor="middle" x="1035" y="-1352.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="1035" y="-1343.3" font-family="Times,serif" font-size="9.00">of 0.48s(0.57%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N77->N78 --> | |
<g id="edge83" class="edge"><title>N77->N78</title> | |
<g id="a_edge83"><a xlink:title="runtime.(*mcache).refill -> runtime.(*mcentral).cacheSpan (0.48s)"> | |
<path fill="none" stroke="black" d="M1035,-1504.86C1035,-1476.16 1035,-1418.13 1035,-1383.61"/> | |
<polygon fill="black" stroke="black" points="1038.5,-1383.3 1035,-1373.3 1031.5,-1383.3 1038.5,-1383.3"/> | |
</a> | |
</g> | |
<g id="a_edge83-label"><a xlink:title="runtime.(*mcache).refill -> runtime.(*mcentral).cacheSpan (0.48s)"> | |
<text text-anchor="middle" x="1051.72" y="-1393.8" font-family="Times,serif" font-size="14.00"> 0.48s</text> | |
</a> | |
</g> | |
</g> | |
<!-- N80 --> | |
<g id="node81" class="node"><title>N80</title> | |
<g id="a_node81"><a xlink:title="runtime.sweepone (0.44s)"> | |
<polygon fill="#f8f8f8" stroke="black" points="1597.73,-414 1516.27,-414 1516.27,-378 1597.73,-378 1597.73,-414"/> | |
<text text-anchor="middle" x="1557" y="-402.3" font-family="Times,serif" font-size="9.00">runtime.sweepone</text> | |
<text text-anchor="middle" x="1557" y="-393.3" font-family="Times,serif" font-size="9.00">0.01s(0.012%)</text> | |
<text text-anchor="middle" x="1557" y="-384.3" font-family="Times,serif" font-size="9.00">of 0.44s(0.52%)</text> | |
</a> | |
</g> | |
</g> | |
<!-- N79->N80 --> | |
<g id="edge84" class="edge"><title>N79->N80</title> | |
<g id="a_edge84"><a xlink:title="runtime.gosweepone.func1 -> runtime.sweepone (0.44s)"> | |
<path fill="none" stroke="black" d="M1493.61,-467.614C1505.37,-454.512 1521.66,-436.368 1534.78,-421.753"/> | |
<polygon fill="black" stroke="black" points="1537.62,-423.83 1541.69,-414.05 1532.41,-419.154 1537.62,-423.83"/> | |
</a> | |
</g> | |
<g id="a_edge84-label"><a xlink:title="runtime.gosweepone.func1 -> runtime.sweepone (0.44s)"> | |
<text text-anchor="middle" x="1535.72" y="-438.8" font-family="Times,serif" font-size="14.00"> 0.44s</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