Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for Predecessors (0.15 sec)

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

      // Element-level accessors
      //
    
      /**
       * Returns a live view of the nodes which have an incident edge in common with {@code node} in
       * this graph.
       *
       * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}.
       *
       * <p>If {@code node} is removed from the network after this method is called, the {@code Set}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/graph/Network.java

      // Element-level accessors
      //
    
      /**
       * Returns a live view of the nodes which have an incident edge in common with {@code node} in
       * this network.
       *
       * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}.
       *
       * <p>If {@code node} is removed from the network after this method is called, the {@code Set}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/codehost.go

    	ReadZip(ctx context.Context, rev, subdir string, maxSize int64) (zip io.ReadCloser, err error)
    
    	// RecentTag returns the most recent tag on rev or one of its predecessors
    	// with the given prefix. allowed may be used to filter out unwanted versions.
    	RecentTag(ctx context.Context, rev, prefix string, allowed func(tag string) bool) (tag string, err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/http.go

      causing a single colored bar to be horizontally continuous but
      vertically displaced.
    </p>
    <p>
      Clicking on a span reveals information about it, such as its
      duration, its causal predecessors and successors, and the stack trace
      at the final moment when it yielded the logical processor, for example
      because it made a system call or tried to acquire a mutex.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/likelyadjust.go

    	certain := f.Cache.allocInt8Slice(f.NumBlocks()) // In the long run, all outcomes are at least this bad. Mainly for Exit
    	defer f.Cache.freeInt8Slice(certain)
    	local := f.Cache.allocInt8Slice(f.NumBlocks()) // for our immediate predecessors.
    	defer f.Cache.freeInt8Slice(local)
    
    	po := f.postorder()
    	nest := f.loopnest()
    	b2l := nest.b2l
    
    	for _, b := range po {
    		switch b.Kind {
    		case BlockExit:
    			// Very unlikely.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/extract_head_tail_outside_compilation.mlir

        }) {num_cores_per_replica = 1, step_marker_location = "", topology = "", device_assignment = []} : () -> ()
        func.return
      }
    
      // Test embedding ops can be head extracted and side effect analysis
      // predecessors are ignored.
    
      // CHECK-LABEL: func @embedding_head_extraction
      func.func @embedding_head_extraction(%arg0: tensor<!tf_type.string>) {
        // CHECK:      "tf_device.launch"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/HashBiMap.java

        }
    
        // insertion point for new entry is after predecessor
        // note predecessor must still be a valid entry: either we deleted an entry that was *not*
        // predecessor, or we didn't delete anything
    
        ensureCapacity(size + 1);
        keys[size] = key;
        values[size] = value;
    
        insertIntoTableKToV(size, keyHash);
        insertIntoTableVToK(size, valueHash);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

                        for (Node predecessor : node.getDependencyPredecessors()) {
                            predecessor.addDependencySuccessor(postNode);
                            predecessor.forceAllDependenciesCompleteUpdate();
                            if (!predecessor.allDependenciesComplete()) {
                                readyNodes.removeAndRestart(predecessor);
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

          worklist.push(user_island);
          pred_map[user_island] = curr_op;
        }
      }
    
      // Construct path by following predecessor pointers.
      IslandOp curr_op = target_op;
      while (curr_op != source_op) {
        // If we don't have a predecessor pointer here, then there is no
        // source-target path.
        if (pred_map.count(curr_op) == 0) return false;
        path.push_back(curr_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

            // (parent) block, we need to check that it's before (the
            // (parent of) the preprocess_op.
            if (o->isBeforeInBlock(it->second)) {
              break;  // valid compile predecessor
            } else {
              return WalkResult::advance();
            }
          }
          o = o->getParentOp();
        }
        // Check that the the compile op actually passes its results to its parents.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top