Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 265 for Edges (0.04 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    //
    // The CFG does contain Return statements; even implicit returns are
    // materialized (at the position of the function's closing brace).
    //
    // The CFG does not record conditions associated with conditional branch
    // edges, nor the short-circuit semantics of the && and || operators,
    // nor abnormal control flow caused by panic.  If you need this
    // information, use golang.org/x/tools/go/ssa instead.
    package cfg
    
    import (
    	"bytes"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_function_test.cc

          const tensorflow::FunctionDef& fdef,
          const std::vector<EdgeSpec>& e_edges,  // expected edges
          const std::vector<EdgeSpec>& c_edges,  // expected ctrl edges
          bool is_exact_edges = true) {
        // Build a set of edges from fdef
        std::set<EdgeSpec> a_edges;  // actual edges
        // Get edges from inputs to body nodes and between body nodes
        for (const NodeDef& node_def : fdef.node_def()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/edges/DependencyPredecessorsOnlyNodeSet.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.execution.plan.edges;
    
    import org.gradle.execution.plan.Node;
    import org.gradle.execution.plan.NodeSets;
    
    import java.util.SortedSet;
    import java.util.function.Consumer;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:17:10 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/edges/ComplexDependentNodesSet.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.execution.plan.edges;
    
    import org.gradle.execution.plan.Node;
    import org.gradle.execution.plan.NodeSets;
    
    import java.util.Set;
    import java.util.SortedSet;
    import java.util.function.Consumer;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:17:10 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

            }
    
            private visitEdges(NodeBuilder node, Set<NodeBuilder> seenNodes, Set<EdgeBuilder> edges) {
                for (EdgeBuilder edge : node.deps) {
                    edges.add(edge)
                    if (seenNodes.add(edge.selected)) {
                        visitEdges(edge.selected, seenNodes, edges)
                    }
                }
            }
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // cost function, nor can we look at global information while deciding on
      // individual edges to contract.  Instead, we will make decisions on these
      // important edges then make decisions on all other edges, causing the highest
      // chance of all most important edges to be contracted.
      //
      // An example of where this might occur is with a digraph:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/passes.td

      let description = [{
        Outline specific patterns into composites. Specific patterns can be any
        sub-DAG within a single `Block*`. The signature of the new composite
        matches the inupt and output edges from a node in the sub-DAG to a node out
        of it. The associated decomposition has the same semantic as the matched
        ops, but may not have identical structure.
      }];
    
      let options = [];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/edges/DependentNodesSet.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.execution.plan.edges;
    
    import com.google.common.collect.ImmutableSortedSet;
    import org.gradle.execution.plan.Node;
    
    import java.util.Collections;
    import java.util.Set;
    import java.util.SortedSet;
    import java.util.function.Consumer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:17:10 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/edges/DependencyNodesSet.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.execution.plan.edges;
    
    import com.google.common.collect.ImmutableSortedSet;
    import org.gradle.execution.plan.Node;
    
    import java.util.NavigableSet;
    
    public interface DependencyNodesSet {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 20 06:27:56 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top