Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for visualizers (0.35 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"web":    {report.Dot, massageDotSVG(), invokeVisualizer("svg", browsers()), false, "Visualize graph through web browser", reportHelp("web", false, false)},
    
    	// Visualize callgrind output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    	configure("compact_labels", "true")
    	configHelp["sample_index"] += fmt.Sprintf("Or use sample_index=name, with name in %v.\n", sampleTypes(p))
    
    	// Do not wait for the visualizer to complete, to allow multiple
    	// graphs to be visualized simultaneously.
    	interactiveMode = true
    	shortcuts := profileShortcuts(p)
    
    	copier := makeProfileCopier(p)
    	greetings(p, o.UI)
    	for {
    		input, err := o.UI.ReadLine("(pprof) ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    		if err := c.postProcess(src, dst, o.UI); err != nil {
    			return err
    		}
    		src = dst
    	}
    
    	// If no output is specified, use default visualizer.
    	output := cfg.Output
    	if output == "" {
    		if c.visualizer != nil {
    			return c.visualizer(src, os.Stdout, o.UI)
    		}
    		_, err := src.WriteTo(os.Stdout)
    		return err
    	}
    
    	// Output to specified file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    A build whose execution time is dominated by a single subproject won't benefit much at all.
    Neither will a project with lots of inter-subproject dependencies.
    But most multi-subproject builds see a reduction in build times.
    
    === Visualize parallelism with build scans
    
    Build scans give you a visual timeline of task execution. In the following
    example build, you can see long-running tasks at the beginning and end of the build:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    		if len(args) == 0 {
    			continue
    		}
    		viewer := exec.Command(args[0], append(args[1:], u.String())...)
    		viewer.Stderr = os.Stderr
    		if err := viewer.Start(); err == nil {
    			return
    		}
    	}
    	// No visualizer succeeded, so just print URL.
    	o.UI.PrintErr(u.String())
    }
    
    // makeReport generates a report for the specified command.
    // If configEditor is not null, it is used to edit the config used for the report.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    Users can render the full graph of dependencies as well as identify the selection reason and origin for a dependency.
    Dependencies can originate through build script declared dependencies or transitive dependencies.
    You can visualize dependencies with:
    
    - the built-in Gradle CLI `dependencies` task
    - the built-in Gradle CLI `dependencyInsight` task
    - link:https://scans.gradle.com/[build scans]
    
    [[sec:listing_dependencies]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    include::sample[dir="snippets/dependencyManagement/declaringDependencies-dynamicVersion/groovy",files="build.gradle[tags=dependencies]"]
    ====
    
    A link:https://scans.gradle.com/[build scan] can effectively visualize dynamic dependency versions and their respective, selected versions.
    
    .Dynamic dependencies in build scan
    image::dependency-management-dynamic-dependency-build-scan.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/http.go

    <h2>Event timelines for running goroutines</h2>
    {{range $i, $view := $}}
    {{if $view.Ranges}}
    {{if eq $i 0}}
    <p>
      Large traces are split into multiple sections of equal data size
      (not duration) to avoid overwhelming the visualizer.
    </p>
    {{end}}
    <ul>
    	{{range $index, $e := $view.Ranges}}
    		<li><a href="{{$view.URL $index}}">View trace by {{$view.Type}} ({{$e.Name}})</a></li>
    	{{end}}
    </ul>
    {{else}}
    <ul>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    Running the `buildEnvironment` task visualises the buildscript dependencies of the selected project, similarly to how `gradle dependencies` visualizes the dependencies of the software being built:
    
    ----
    $ gradle buildEnvironment
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Multimap.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A collection that maps keys to values, similar to {@link Map}, but in which each key may be
     * associated with <i>multiple</i> values. You can visualize the contents of a multimap either as a
     * map from keys to <i>nonempty</i> collections of values:
     *
     * <ul>
     *   <li>a → 1, 2
     *   <li>b → 3
     * </ul>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top