Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for Edges (0.08 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top