Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for memgraph (0.18 sec)

  1. src/internal/dag/parse.go

    package dag
    
    import (
    	"cmp"
    	"fmt"
    	"slices"
    	"strings"
    )
    
    type Graph struct {
    	Nodes   []string
    	byLabel map[string]int
    	edges   map[string]map[string]bool
    }
    
    func newGraph() *Graph {
    	return &Graph{byLabel: map[string]int{}, edges: map[string]map[string]bool{}}
    }
    
    func (g *Graph) addNode(label string) bool {
    	if _, ok := g.byLabel[label]; ok {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	}
    
    	if unit != "" {
    		o.OutputUnit = unit
    	} else {
    		o.OutputUnit = o.SampleUnit
    	}
    }
    
    // newGraph creates a new graph for this report. If nodes is non-nil,
    // only nodes whose info matches are included. Otherwise, all nodes
    // are included, without trimming.
    func (rpt *Report) newGraph(nodes graph.NodeSet) *graph.Graph {
    	o := rpt.options
    
    	// Clean up file paths using heuristics.
    	prof := rpt.prof
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    func New(prof *profile.Profile, o *Options) *Graph {
    	if o.CallTree {
    		return newTree(prof, o)
    	}
    	g, _ := newGraph(prof, o)
    	return g
    }
    
    // newGraph computes a graph from a profile. It returns the graph, and
    // a map from the profile location indices to the corresponding graph
    // nodes.
    func newGraph(prof *profile.Profile, o *Options) (*Graph, map[uint64]Nodes) {
    	nodes, locationMap := CreateNodes(prof, o)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

      TFE_DeleteContext(ctx);
    }
    
    // This tests running the "serving_default" SignatureDefFunction from the
    // VarsAndArithmeticObjectGraph savedmodel. Here's what the signature_defs
    // protobuf in the metagraph looks like:
    // signature_def: {
    //   key  : "serving_default"
    //   value: {
    //     inputs: {
    //       key  : "a"
    //       value: {
    //         name : "serving_default_a:0"
    //         dtype: DT_FLOAT
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

        /**
         * Creates an adapter for a single object graph. Each object adapted by the returned adapter is treated as part of the same object graph, for the purposes of caching etc.
         */
        public ObjectGraphAdapter newGraph() {
            final ViewGraphDetails graphDetails = new ViewGraphDetails(targetTypeProvider);
            return new ObjectGraphAdapter() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    			// from the go.work file and preserve the invariant that all
    			// of rs.rootModules are in mg.g.
    			roots = rs.rootModules
    		}
    		mg := &ModuleGraph{
    			g: mvs.NewGraph(cmpVersion, roots),
    		}
    
    		if rs.pruning == pruned {
    			mainModule := MainModules.mustGetSingleMainModule()
    			// The roots of a single pruned module should already include every module in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    // The sources are sorted by function name and then by filename to
    // eliminate potential nondeterminism.
    func printSource(w io.Writer, rpt *Report) error {
    	o := rpt.options
    	g := rpt.newGraph(nil)
    
    	// Identify all the functions that match the regexp provided.
    	// Group nodes for each matching function.
    	var functions graph.Nodes
    	functionNodes := make(map[string]graph.Nodes)
    	for _, n := range g.Nodes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  8. RELEASE.md

    *   We released a new open-source version of TensorBoard.
    
    *   [`SavedModel CLI`](https://www.tensorflow.org/versions/master/guide/saved_model_cli)
        tool available to inspect and execute MetaGraph in SavedModel
    
    *   Android releases of TensorFlow are now pushed to jcenter for easier
        integration into apps. See
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top