Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Edges (0.2 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            // If none of the incoming edges are transitive, remove previous state and do not traverse.
            // If not traversed before, simply add all selected outgoing edges (either hard or pending edges)
            // If traversed before:
            //      If net exclusions for this node have not changed, ignore
            //      If net exclusions for this node have changed, remove previous state and traverse outgoing edges again.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            // the following only needs to be done serially to preserve ordering of dependencies in the graph: we have visited the edges
            // but we still didn't add the result to the queue. Doing it from resolve threads would result in non-reproducible graphs, where
            // edges could be added in different order. To avoid this, the addition of new edges is done serially.
            for (EdgeState dependency : dependencies) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      graph_->AddEdge(input_node_it->second, 0, dst_node, dst_index);
      return absl::OkStatus();
    }
    
    Status Exporter::AddEdge(Operation* inst) {
      // For tf_executor.fetch, add only its data edges. Control edges are captured
      // later.
      if (auto fetch = llvm::dyn_cast<mlir::tf_executor::FetchOp>(inst)) {
        for (auto operand_and_idx : llvm::enumerate(fetch.getOperands())) {
          Value operand = operand_and_idx.value();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedArtifactsGraphVisitor.java

                }
            }
    
            if (node.isRoot() || hasTransitiveIncomingEdge) {
                // Since file dependencies are not modeled as actual edges, we need to verify
                // there are edges to this node that would follow this file dependency.
                for (LocalFileDependencyMetadata fileDependency : node.getOutgoingFileEdges()) {
                    int id = nextId++;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphNode.java

        Collection<? extends DependencyGraphEdge> getIncomingEdges();
    
        Collection<? extends DependencyGraphEdge> getOutgoingEdges();
    
        /**
         * The outgoing file dependencies of this node. Should be modelled edges to another node, but are treated separately for now.
         */
        Set<? extends LocalFileDependencyMetadata> getOutgoingFileEdges();
    
        VariantGraphResolveMetadata getMetadata();
    
        boolean isSelected();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

                    << (*graph)->num_edges();
            is_module_updated = true;
          }
        } else if (pass_state == MlirOptimizationPassState::FallbackEnabled) {
          VLOG(2) << "Run MLIR graph optimization pass with fallback: "
                  << StringRefToView(name);
          VLOG(2) << "Graph #nodes " << (*graph)->num_nodes() << " #edges "
                  << (*graph)->num_edges();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

            assert newSelection != null;
            assert this.selected != newSelection;
            assert newSelection.getModule() == this;
    
            changingSelection = true;
    
            // Remove any outgoing edges for the current selection
            selected.removeOutgoingEdges();
    
            this.selected = newSelection;
            this.replaced = false;
    
            doRestart(newSelection);
            changingSelection = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

    import org.gradle.internal.resolve.ModuleVersionResolveException;
    
    import javax.annotation.Nullable;
    import java.util.LinkedList;
    import java.util.List;
    
    /**
     * Represents the edges in the dependency graph.
     *
     * A dependency can have the following states:
     * 1. Unattached: in this case the state of the dependency is tied to the state of it's associated {@link SelectorState}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. pkg/test/framework/components/environment/kube/kube.go

    			continue
    		}
    		allClusters[c.Name()] = c
    		clusters = append(clusters, c)
    	}
    	if errs != nil {
    		return nil, errs
    	}
    
    	// validate the topology has no open edges
    	for _, c := range allClusters {
    		if _, ok := allClusters[c.PrimaryName()]; !ok {
    			errs = multierror.Append(errs, fmt.Errorf("primary %s for %s is not in the topology", c.PrimaryName(), c.Name()))
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

            state.metadata >> metadata
            def resolveState = Stub(ResolveState)
    
            def newState = new NodeState(idIdx++, Stub(ComponentState), resolveState, state, true)
            // if there are outgoing endorsing edges, also include a normal edge to make sure that it is filtered out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top