Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 135 for Pledge (0.12 sec)

  1. test/typeparam/graph.go

    func _New[_Node _NodeC[_Edge], _Edge _EdgeC[_Node]](nodes []_Node) *_Graph[_Node, _Edge] {
    	return &_Graph[_Node, _Edge]{nodes: nodes}
    }
    
    // nodePath holds the path to a node during ShortestPath.
    // This should ideally be a type defined inside ShortestPath,
    // but the translator tool doesn't support that.
    type nodePath[_Node _NodeC[_Edge], _Edge _EdgeC[_Node]] struct {
    	node _Node
    	path []_Edge
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/context.go

    	return
    }
    
    func (e *Environment) ClusterLocal() ClusterLocalProvider {
    	return e.clusterLocalServices
    }
    
    func (e *Environment) GetLedger() ledger.Ledger {
    	return e.ledger
    }
    
    func (e *Environment) SetLedger(l ledger.Ledger) {
    	e.ledger = l
    }
    
    func (e *Environment) GetProxyConfigOrDefault(ns string, labels, annotations map[string]string, meshConfig *meshconfig.MeshConfig) *meshconfig.ProxyConfig {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  3. src/internal/dag/parse.go

    	g.Nodes = append(g.Nodes, label)
    	g.edges[label] = map[string]bool{}
    	return true
    }
    
    func (g *Graph) AddEdge(from, to string) {
    	g.edges[from][to] = true
    }
    
    func (g *Graph) DelEdge(from, to string) {
    	delete(g.edges[from], to)
    }
    
    func (g *Graph) HasEdge(from, to string) bool {
    	return g.edges[from] != nil && g.edges[from][to]
    }
    
    func (g *Graph) Edges(from string) []string {
    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. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

    }
    
    // Returns the data type of the destination of an edge.
    DataType EdgeType(const Edge* edge) {
      return edge->dst()->input_type(edge->dst_input());
    }
    
    // Adds the control inputs of `node` to `*deps`.
    void AddControlInputs(const Node& node, absl::flat_hash_set<Node*>* deps) {
      for (const Edge* edge : node.in_edges()) {
        if (edge->IsControlEdge()) {
          deps->insert(edge->src());
        }
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. src/cmd/internal/pgo/serialize.go

    	written += int64(n)
    	if err != nil {
    		return written, err
    	}
    
    	for _, edge := range d.NamedEdgeMap.ByWeight {
    		weight := d.NamedEdgeMap.Weight[edge]
    
    		n, err = fmt.Fprintln(bw, edge.CallerName)
    		written += int64(n)
    		if err != nil {
    			return written, err
    		}
    
    		n, err = fmt.Fprintln(bw, edge.CalleeName)
    		written += int64(n)
    		if err != nil {
    			return written, err
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_util.cc

    Status PreprocessControlEdgesBetweenOutsideCompilations(
        Graph* g, const string& outside_compilation_attr_name) {
      // Gather edges to remove. We should not remove the edge while iterating.
      std::vector<const Edge*> edges_to_remove;
      for (const Edge* e : g->edges()) {
        if (!e->IsControlEdge()) {
          continue;
        }
    
        auto src_outside_compilation =
            GetStringAttr(*e->src(), outside_compilation_attr_name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVersionSelectionIntegrationTest.groovy

            when:
            repo.expectListVersions()
            repo.expectCloneSomething()
            run('checkDeps')
    
            then:
            fixture.expectGraph {
                root(":", "test:consumer:1.2") {
                    edge("test:test:latest.integration", ":dep", "test:test:2.0") {
                    }
                }
            }
            result.assertTasksExecuted(":dep:jar_2.0", ":checkDeps")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

            when:
            checkDependencies()
    
            then:
            checkGraph {
                edge("org.test:buildB:1.0", ":buildB", "org.test:buildB:2.0") {
                    configuration = "runtimeElements"
                    compositeSubstitute()
                }
                edge("org.test:buildC:1.0", ":buildC", "org.test:buildC:1.0") {
                    configuration = "runtimeElements"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/graph/Graphs.java

        for (N node : graph.nodes()) {
          copy.addNode(node);
        }
        for (EndpointPair<N> edge : graph.edges()) {
          // requireNonNull is safe because the endpoint pair comes from the graph.
          copy.putEdgeValue(
              edge.nodeU(),
              edge.nodeV(),
              requireNonNull(graph.edgeValueOrDefault(edge.nodeU(), edge.nodeV(), null)));
        }
        return copy;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/block.go

    //
    // means x is chosen if k is true.
    type Edge struct {
    	// block edge goes to (in a Succs list) or from (in a Preds list)
    	b *Block
    	// index of reverse edge.  Invariant:
    	//   e := x.Succs[idx]
    	//   e.b.Preds[e.i] = Edge{x,idx}
    	// and similarly for predecessors.
    	i int
    }
    
    func (e Edge) Block() *Block {
    	return e.b
    }
    func (e Edge) Index() int {
    	return e.i
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top