Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for flamegraph (0.17 sec)

  1. testing/internal-performance-testing/build.gradle.kts

    sourceSets.main {
        output.dir(reportResources.map { it.destinationDir.parentFile.parentFile.parentFile })
    }
    
    tasks.jar {
        inputs.files(flamegraph)
            .withPropertyName("flamegraph")
            .withPathSensitivity(PathSensitivity.RELATIVE)
    
        from(files(provider{ flamegraph.map { zipTree(it) } }))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/AbstractPerformanceTest.groovy

    import org.gradle.performance.results.GradleProfilerReporter
    import org.gradle.performance.results.OutputDirSelector
    import org.gradle.performance.results.PerformanceTestResult
    import org.gradle.profiler.flamegraph.DifferentialStacksGenerator
    import org.gradle.profiler.flamegraph.FlameGraphGenerator
    import org.gradle.test.fixtures.file.CleanupTestDirectory
    import org.junit.Rule
    import spock.lang.Specification
    
    @CleanupTestDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/header.html

        </div>
        <div class="submenu">
          <a title="{{.Help.top}}"  href="./top" id="topbtn">Top</a>
          <a title="{{.Help.graph}}" href="./" id="graphbtn">Graph</a>
          <a title="{{.Help.flamegraph}}" href="./flamegraph" id="flamegraph">Flame Graph</a>
          <a title="{{.Help.peek}}" href="./peek" id="peek">Peek</a>
          <a title="{{.Help.list}}" href="./source" id="list">Source</a>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/webhtml.go

    	def("top", loadFile("html/top.html"))
    	def("sourcelisting", loadFile("html/source.html"))
    	def("plaintext", loadFile("html/plaintext.html"))
    	// TODO: Rename "stacks" to "flamegraph" to seal moving off d3 flamegraph.
    	def("stacks", loadFile("html/stacks.html"))
    	def("stacks_css", loadCSS("html/stacks.css"))
    	def("stacks_js", loadJS("html/stacks.js"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    			"/source":        http.HandlerFunc(ui.source),
    			"/peek":          http.HandlerFunc(ui.peek),
    			"/flamegraph":    http.HandlerFunc(ui.stackView),
    			"/flamegraph2":   redirectWithQuery("flamegraph", http.StatusMovedPermanently), // Keep legacy URL working.
    			"/flamegraphold": redirectWithQuery("flamegraph", http.StatusMovedPermanently), // Keep legacy URL working.
    			"/saveconfig":    http.HandlerFunc(ui.saveConfig),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/stacks.go

    package driver
    
    import (
    	"encoding/json"
    	"html/template"
    	"net/http"
    
    	"github.com/google/pprof/internal/measurement"
    	"github.com/google/pprof/internal/report"
    )
    
    // stackView generates the flamegraph view.
    func (ui *webInterface) stackView(w http.ResponseWriter, req *http.Request) {
    	// Get all data in a report.
    	rpt, errList := ui.makeReport(w, req, []string{"svg"}, func(cfg *config) {
    		cfg.CallTree = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                    param("env.JPROFILER_HOME", "C:\\Program Files\\jprofiler\\jprofiler11.1.4")
                }
    
                else -> {
                    profilerParam("async-profiler")
                    param("env.FG_HOME_DIR", "/opt/FlameGraph")
                    param("env.PATH", "%env.PATH%:/opt/swift/4.2.3/usr/bin:/opt/swift/4.2.4-RELEASE-ubuntu18.04/usr/bin")
                    param("env.HP_HOME_DIR", "/opt/honest-profiler")
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      }
      if (toptable != null) {
        toptable.addEventListener('mousedown', handleTopClick);
        toptable.addEventListener('touchstart', handleTopClick);
      }
    
      const ids = ['topbtn', 'graphbtn',
                   'flamegraph',
                   'peek', 'list',
                   'disasm', 'focus', 'ignore', 'hide', 'show', 'show-from'];
      ids.forEach(makeSearchLinkDynamic);
    
      const sampleIDs = [{{range .SampleTypes}}'{{.}}', {{end}}];
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/model/PerformanceTestSpec.kt

    ) : PerformanceTestProjectSpec {
        override
        fun asConfigurationId(model: CIBuildModel) =
            "${model.projectId}_PerformanceTest$uuid"
    
        override
        fun asName(): String =
            "Flamegraphs for $name"
    
        override
        fun channel(): String = "adhoc-%teamcity.build.branch%"
    
        override
        val type: PerformanceTestType
            get() = PerformanceTestType.adHoc
    
        override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/projects/StageProject.kt

            }
            specificBuildTypes.forEach(this::buildType)
    
            performanceTests = stage.performanceTests.map { createPerformanceTests(model, performanceTestBucketProvider, stage, it) } +
                stage.flameGraphs.map { createFlameGraphs(model, stage, it) }
    
            val (topLevelCoverage, allCoverage) = stage.functionalTests.partition { it.testType == TestType.soak }
            val topLevelFunctionalTests = topLevelCoverage
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top