Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for Predecessors (0.17 sec)

  1. guava/src/com/google/common/graph/ValueGraph.java

      @Override
      ElementOrder<N> nodeOrder();
    
      /**
       * Returns an {@link ElementOrder} that specifies the order of iteration for the elements of
       * {@link #edges()}, {@link #adjacentNodes(Object)}, {@link #predecessors(Object)}, {@link
       * #successors(Object)} and {@link #incidentEdges(Object)}.
       *
       * @since 29.0
       */
      @Override
      ElementOrder<N> incidentEdgeOrder();
    
      //
      // Element-level accessors
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/graph/AbstractNetwork.java

          }
    
          @Override
          public Set<N> adjacentNodes(N node) {
            return AbstractNetwork.this.adjacentNodes(node);
          }
    
          @Override
          public Set<N> predecessors(N node) {
            return AbstractNetwork.this.predecessors(node);
          }
    
          @Override
          public Set<N> successors(N node) {
            return AbstractNetwork.this.successors(node);
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/AbstractNetwork.java

          }
    
          @Override
          public Set<N> adjacentNodes(N node) {
            return AbstractNetwork.this.adjacentNodes(node);
          }
    
          @Override
          public Set<N> predecessors(N node) {
            return AbstractNetwork.this.predecessors(node);
          }
    
          @Override
          public Set<N> successors(N node) {
            return AbstractNetwork.this.successors(node);
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/func_test.go

    	"testing"
    )
    
    // Compare two Funcs for equivalence. Their CFGs must be isomorphic,
    // and their values must correspond.
    // Requires that values and predecessors are in the same order, even
    // though Funcs could be equivalent when they are not.
    // TODO(matloob): Allow values and predecessors to be in different
    // orders if the CFG are otherwise equivalent.
    func Equiv(f, g *Func) bool {
    	valcor := make(map[*Value]*Value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

      return GetResourceSubtype(resource.getType());
    }
    
    // Updates uses of `old_read` to `new_partitioned_input` and `new_reads`.
    // `old_partitioned_input` is the predecessor of `old_read`. `new_reads`
    // contains the predecessors of `new_partitioned_input`.
    LogicalResult UpdateReadUses(TF::ReadVariableOp old_read,
                                 TF::TPUPartitionedInputV2Op old_partitioned_input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/loopreschedchecks.go

    	idom := f.Idom()
    	po := f.postorder()
    	// The ordering in the dominator tree matters; it's important that
    	// the walk of the dominator tree also be a preorder (i.e., a node is
    	// visited only after all its non-backedge predecessors have been visited).
    	sdom := newSparseOrderedTree(f, idom, po)
    
    	if f.pass.debug > 1 {
    		fmt.Printf("before %s = %s\n", f.Name, sdom.treestructure(f.Entry))
    	}
    
    	tofixBackedges := []edgeMem{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_control.go

    		return true, nil
    	}
    
    	// If we have a Pod that has been created but is not running and ready we can not make progress.
    	// We must ensure that all for each Pod, when we create it, all of its predecessors, with respect to its
    	// ordinal, are Running and Ready.
    	if !isRunningAndReady(replicas[i]) && monotonic {
    		logger.V(4).Info("StatefulSet is waiting for Pod to be Running and Ready",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/initorder.go

    	//
    	// Note that because we recursively copy predecessors and successors
    	// throughout the function graph, the cost of removing a function at
    	// position X is proportional to cost * (len(funcG)-X). Therefore, we should
    	// remove high-cost functions last.
    	sort.Slice(funcG, func(i, j int) bool {
    		return funcG[i].cost() < funcG[j].cost()
    	})
    	for _, n := range funcG {
    		// connect each predecessor p of n with each successor s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/go/types/initorder.go

    	//
    	// Note that because we recursively copy predecessors and successors
    	// throughout the function graph, the cost of removing a function at
    	// position X is proportional to cost * (len(funcG)-X). Therefore, we should
    	// remove high-cost functions last.
    	sort.Slice(funcG, func(i, j int) bool {
    		return funcG[i].cost() < funcG[j].cost()
    	})
    	for _, n := range funcG {
    		// connect each predecessor p of n with each successor s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/CompactLinkedHashMap.java

        Map<K, V> result = super.convertToHashFloodingResistantImplementation();
        links = null;
        return result;
      }
    
      /*
       * For discussion of the safety of the following methods for operating on predecessors and
       * successors, see the comments near the end of CompactHashMap, noting that the methods here call
       * link(), which is defined at the end of this file.
       */
    
      private int getPredecessor(int entry) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top