Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for visualizations (0.23 sec)

  1. src/internal/trace/traceviewer/http.go

    }
    `
    
    var templMain = template.Must(template.New("").Parse(`
    <html>
    <style>` + CommonStyle + `</style>
    <body>
    <h1>cmd/trace: the Go trace event viewer</h1>
    <p>
      This web server provides various visualizations of an event log gathered during
      the execution of a Go program that uses the <a href='https://pkg.go.dev/runtime/trace'>runtime/trace</a> package.
    </p>
    
    <h2>Event timelines for running goroutines</h2>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    With `mergeReruns` enabled, tests that pass-on-retry will no longer cause this Jenkins plugin to consider the build to have failed.
    However, failed test executions will be omitted from the Jenkins test result visualizations as it does not consider `<flakyFailure>` information.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. src/main/assemblies/extension/kibana/fess_log.ndjson

    [{"id":"87b6d8d0-b2b6-11e9-b23e-033a71496733","name":"panel_0","type":"visualization"},{"id":"1523d560-b2b7-11e9-b23e-033a71496733","name":"panel_1","type":"visualization"},{"id":"a9a84830-b2ba-11e9-b23e-033a71496733","name":"panel_2","type":"visualization"},{"id":"3826fb80-b2be-11e9-b23e-033a71496733","name":"panel_3","type":"visualization"},{"id":"9ac57e90-b2c0-11e9-b23e-033a71496733","name":"panel_4","type":"visualization"},{"id":"cdcfe690-b2c0-11e9-b23e-033a71496733","name":"panel_5","type":...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 12 01:26:21 UTC 2019
    - 18.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperation.java

     */
    
    package org.gradle.internal.operations;
    
    /**
     * Represents some chunk of work.
     */
    public interface BuildOperation {
        /**
         * Returns a description of the build operation for visualization purposes.
         */
        BuildOperationDescriptor.Builder description();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 884 bytes
    - Viewed (0)
  5. pkg/ctrlz/topics/args.go

    package topics
    
    import (
    	"net/http"
    	"os"
    
    	"istio.io/istio/pkg/ctrlz/fw"
    	"istio.io/istio/pkg/ctrlz/topics/assets"
    )
    
    type argsTopic struct{}
    
    // ArgsTopic returns a ControlZ topic that allows visualization of process command-line arguments.
    func ArgsTopic() fw.Topic {
    	return argsTopic{}
    }
    
    func (argsTopic) Title() string {
    	return "Command-Line Arguments"
    }
    
    func (argsTopic) Prefix() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. pkg/ctrlz/topics/version.go

    import (
    	"net/http"
    
    	"istio.io/istio/pkg/ctrlz/fw"
    	"istio.io/istio/pkg/ctrlz/topics/assets"
    	"istio.io/istio/pkg/version"
    )
    
    type versionTopic struct{}
    
    // VersionTopic returns a ControlZ topic that allows visualization of versioning info.
    func VersionTopic() fw.Topic {
    	return versionTopic{}
    }
    
    func (versionTopic) Title() string {
    	return "Version Info"
    }
    
    func (versionTopic) Prefix() string {
    	return "version"
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/mmu.go

            container.empty();
            container.css('opacity', '');
            chart = new google.visualization.LineChart(container[0]);
            chart = new google.visualization.LineChart(document.getElementById('mmu_chart'));
            chart.draw(data, options);
    
            google.visualization.events.addListener(chart, 'select', selectHandler);
            $('#details').empty();
          }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. pkg/ctrlz/topics/env.go

    import (
    	"net/http"
    	"os"
    	"sort"
    	"strings"
    
    	"istio.io/istio/pkg/ctrlz/fw"
    	"istio.io/istio/pkg/ctrlz/topics/assets"
    )
    
    type envTopic struct{}
    
    // EnvTopic returns a ControlZ topic that allows visualization of process environment variables.
    func EnvTopic() fw.Topic {
    	return envTopic{}
    }
    
    func (envTopic) Title() string {
    	return "Environment Variables"
    }
    
    func (envTopic) Prefix() string {
    	return "env"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. pkg/ctrlz/topics/mem.go

    package topics
    
    import (
    	"net/http"
    	"runtime"
    
    	"istio.io/istio/pkg/ctrlz/fw"
    	"istio.io/istio/pkg/ctrlz/topics/assets"
    )
    
    type memTopic struct{}
    
    // MemTopic returns a ControlZ topic that allows visualization of process memory usage.
    func MemTopic() fw.Topic {
    	return memTopic{}
    }
    
    func (memTopic) Title() string {
    	return "Memory Usage"
    }
    
    func (memTopic) Prefix() string {
    	return "mem"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. pkg/ctrlz/topics/proc.go

    import (
    	"net/http"
    	"os"
    	"runtime"
    
    	"istio.io/istio/pkg/ctrlz/fw"
    	"istio.io/istio/pkg/ctrlz/topics/assets"
    )
    
    type procTopic struct{}
    
    // ProcTopic returns a ControlZ topic that allows visualization of process state.
    func ProcTopic() fw.Topic {
    	return procTopic{}
    }
    
    func (procTopic) Title() string {
    	return "Process Info"
    }
    
    func (procTopic) Prefix() string {
    	return "proc"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top