Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for memgraph (0.22 sec)

  1. tensorflow/cc/saved_model/experimental/public/saved_model_api.h

      //            returned TF_SavedModel pointer.
      //  tags - Optional set of tags. If tags = nullptr, we expect the SavedModel
      //         to contain a single Metagraph (as for those exported from TF2's
      //         `tf.saved_model.save`). If tags != nullptr, we load the metagraph
      //         matching the tags:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 04 00:45:47 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/build/PlannedNodeGraphTest.groovy

            dependsOn(task3, [task4])
            dependsOn(transform1, [task4])
    
            when:
            collector.collectNodes([task1, task2, task3, task4, transform1])
            def graph = collector.getGraph()
            def nodes = graph.getNodes(PlannedNodeGraph.DetailLevel.LEVEL1_TASKS) as List<TestPlannedNode>
            then:
            nodes.size() == 4
            nodes*.nodeIdentity*.nodeType =~ [NodeType.TASK]
            verifyAll {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 21 13:11:56 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/internal/mvs/graph.go

    	selected map[string]string       // path → version
    }
    
    // NewGraph returns an incremental MVS graph containing only a set of root
    // dependencies and using the given max function for version strings.
    //
    // The caller must ensure that the root slice is not modified while the Graph
    // may be in use.
    func NewGraph(cmp func(p, v1, v2 string) int, roots []module.Version) *Graph {
    	g := &Graph{
    		cmp:      cmp,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 02:52:19 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    	g := NewGraph()
    	populate(g, nodes, pods, pvs, attachments, slices)
    	// Garbage collect before the first iteration
    	runtime.GC()
    	b.ResetTimer()
    
    	b.SetParallelism(100)
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			g.AddPod(pods[0])
    		}
    	})
    }
    
    func BenchmarkAuthorization(b *testing.B) {
    	g := NewGraph()
    
    	opts := &sampleDataOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  6. src/cmd/internal/pgo/pprof.go

    			valueIndex = i
    			break
    		}
    	}
    
    	if valueIndex == -1 {
    		return nil, fmt.Errorf(`profile does not contain a sample index with value/type "samples/count" or cpu/nanoseconds"`)
    	}
    
    	g := profile.NewGraph(p, &profile.Options{
    		SampleValue: func(v []int64) int64 { return v[valueIndex] },
    	})
    
    	namedEdgeMap, totalWeight, err := createNamedEdgeMap(g)
    	if err != nil {
    		return nil, err
    	}
    
    	if totalWeight == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tfcompile_main.cc

        "header file that gives access to the functionality in the object file.\n"
        "A typical invocation looks like this:\n"
        "\n"
        "   $ tfcompile --graph=mygraph.pb --config=myfile.pbtxt "
        "--cpp_class=\"mynamespace::MyComputation\"\n"
        "\n";
    
    }  // end namespace tfcompile
    }  // end namespace tensorflow
    
    int main(int argc, char** argv) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/build/BuildOperationFiringBuildWorkPreparer.java

                PlannedNodeGraph.Collector collector = new PlannedNodeGraph.Collector(converterRegistry);
                scheduledWork.visitNodes((nodes, entryNodes) -> collector.collectNodes(nodes));
                return collector.getGraph();
            }
    
            private static class CalculateTaskGraphResult implements Result, CustomOperationTraceSerialization {
    
                private final Set<Task> requestedTasks;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/connection/ParameterAwareBuildControllerAdapterTest.groovy

    import spock.lang.Specification
    
    class ParameterAwareBuildControllerAdapterTest extends Specification {
        def graphAdapter = Mock(ObjectGraphAdapter)
        def adapter = Mock(ProtocolToModelAdapter) {
            newGraph() >> graphAdapter
        }
        def mapping = Stub(ModelMapping) {
            getModelIdentifierFromModelType(_) >> { Class type ->
                return Stub(ModelIdentifier) {
                    getName() >> type.simpleName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 08:15:25 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. 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)
Back to top