Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 87 for Edges (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. android/guava/src/com/google/common/graph/GraphBuilder.java

        GraphBuilder<N1> castBuilder = cast();
        return new ImmutableGraph.Builder<>(castBuilder);
      }
    
      /**
       * Specifies whether the graph will allow self-loops (edges that connect a node to itself).
       * Attempting to add a self-loop to a graph that does not allow them will throw an {@link
       * UnsupportedOperationException}.
       *
       * <p>The default value is {@code false}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/GraphBuilder.java

        GraphBuilder<N1> castBuilder = cast();
        return new ImmutableGraph.Builder<>(castBuilder);
      }
    
      /**
       * Specifies whether the graph will allow self-loops (edges that connect a node to itself).
       * Attempting to add a self-loop to a graph that does not allow them will throw an {@link
       * UnsupportedOperationException}.
       *
       * <p>The default value is {@code false}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/graph/ValueGraphBuilder.java

        ValueGraphBuilder<N1, V1> castBuilder = cast();
        return new ImmutableValueGraph.Builder<>(castBuilder);
      }
    
      /**
       * Specifies whether the graph will allow self-loops (edges that connect a node to itself).
       * Attempting to add a self-loop to a graph that does not allow them will throw an {@link
       * UnsupportedOperationException}.
       *
       * <p>The default value is {@code false}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 8K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/execution/plan/edges/NodeDependencySetTest.groovy

     * 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 spock.lang.Specification
    
    class NodeDependencySetTest extends Specification {
        def node = Stub(Node)
        def set = new DependencySuccessorsOnlyNodeSet()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:17:10 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/edges/ComplexDependencyNodesSet.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 java.util.NavigableSet;
    
    import static org.gradle.execution.plan.NodeSets.newSortedNodeSet;
    
    public class ComplexDependencyNodesSet implements DependencyNodesSet {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 20 06:27:56 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphVisitor.java

         * Visits a selector. This method is called for all selectors before {@link #visitEdges(DependencyGraphNode)} is called.
         */
        default void visitSelector(DependencyGraphSelector selector) {}
    
        /**
         * Visits edges to/from a node of the graph. Includes the root. This method is called for all nodes after {@link #visitNode(DependencyGraphNode)} has been called for all nodes.
         * Nodes are visited in consumer-first order.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:04:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/DependencyArtifactsVisitor.java

    import org.gradle.internal.component.local.model.LocalFileDependencyMetadata;
    
    public interface DependencyArtifactsVisitor {
        /**
         * Visits a node in the graph. All nodes are visited prior to visiting the edges
         */
        default void visitNode(DependencyGraphNode node) {}
    
        /**
         * Visits the artifacts introduced by a particular edge in the graph. Called for every edge in the graph.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:04:06 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top