Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 265 for Edges (0.04 sec)

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

       * @since 27.1
       */
      @CanIgnoreReturnValue
      boolean putEdge(EndpointPair<N> endpoints);
    
      /**
       * Removes {@code node} if it is present; all edges incident to {@code node} will also be removed.
       *
       * @return {@code true} if the graph was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean removeNode(N node);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolutionResult.java

         * unresolved dependencies by {@link UnresolvedDependencyResult}.
         *
         * In dependency graph terminology, this method returns the edges of the graph.
         *
         * @return all dependencies, including unresolved dependencies.
         */
        Set<? extends DependencyResult> getAllDependencies();
    
        /**
         * Applies given action for each dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 24 19:03:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

                }
            }
    
            where:
            classpath | usage
            'compile' | 'api'
            'runtime' | 'runtime'
        }
    
        def 'platform deselection / reselection does not cause orphan edges'() {
            given:
            def depExcluded = mavenHttpRepo.module('org.test', 'excluded', '1.0').publish()
            def depA = mavenHttpRepo.module('org.test', 'depA', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadcode.go

    	reachable := ReachableBlocks(f)
    
    	// Get rid of edges from dead to live code.
    	for _, b := range f.Blocks {
    		if reachable[b.ID] {
    			continue
    		}
    		for i := 0; i < len(b.Succs); {
    			e := b.Succs[i]
    			if reachable[e.b.ID] {
    				b.removeEdge(i)
    			} else {
    				i++
    			}
    		}
    	}
    
    	// Get rid of dead edges from live code.
    	for _, b := range f.Blocks {
    		if !reachable[b.ID] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. 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)
  6. guava/src/com/google/common/graph/MutableValueGraph.java

       * @since 27.1
       */
      @CanIgnoreReturnValue
      @CheckForNull
      V putEdgeValue(EndpointPair<N> endpoints, V value);
    
      /**
       * Removes {@code node} if it is present; all edges incident to {@code node} will also be removed.
       *
       * @return {@code true} if the graph was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean removeNode(N node);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/build_xla_ops_pass.cc

        return;
      }
    
      // We can't merge control edges directly so we instead first "convert" them to
      // normal values that can be merged, merge the values and then "convert" the
      // merged value back into control.
      //
      // NB! We need to copy out the outgoing control edges before constructing
      // old_ctrl_as_data otherwise the control edge from old_node to the constant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

    //
    // A variable is live if it holds a value that may be used in the future.
    // It is live-in at node n if it is live on any of the node's in-edges.
    // It is live-out at node n if it is live on any of the node's out-edges.
    // def[n] refers to values that are defined at node n.
    // use[n] refers to values that are used at node n.
    //
    // Given a node n, variables' liveliness is defined like the following:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

    // function conversion.
    //
    // If 'reuse_existing_functions' is set, use an existing function with the
    // same name, if any.
    //
    // TODO(phawkins): currently, some information in control edges
    // is not preserved. Suppose you have A and B in the main
    // graph, C and D in a subgraph. B and C have control deps from A, D has control
    // dep from B. Originally D must run after C, post-transformation this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
Back to top