Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 85 for Edges (0.1 sec)

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

        private boolean changing;
    
        // An internal counter used to track the number of outgoing edges
        // that use this selector. Since a module resolve state tracks all selectors
        // for this module, when considering selectors that need to be used when
        // choosing a version, we must only consider the ones which currently have
        // outgoing edges pointing to them. If not, then it means the module was
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    				g = rpt.newGraph(nodesKept)
    				g.SortNodes(cumSort, visualMode)
    			}
    		}
    	}
    
    	// Final step: Filter out low frequency tags and edges, and remove redundant edges that clutter
    	// the graph.
    	g.TrimLowFrequencyTags(nodeCutoff)
    	droppedEdges = g.TrimLowFrequencyEdges(edgeCutoff)
    	if visualMode {
    		g.RemoveRedundantEdges()
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java

                Parent parent = project.getModel().getDelegate().getParent();
    
                if (parent != null) {
                    // Parent is added as an edge, but must not cause a cycle - so we remove any other edges it has
                    // in conflict
                    addEdge(
                            projectMap,
                            vertexMap,
                            null,
                            projectVertex,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsFeatureInteractionIntegrationTest.groovy

                    if (details.requested.name == 'foo' && details.requested.version == '1.0') {
                        details.useTarget 'org:new:1.0' // this also has to remove the 'strict' state of all 'org:foo:1.0' edges
                    }
                }
                dependencies {
                    conf('org:foo') {
                       version { strictly '1.0' }
                    }
                    conf('org:bar:1.0')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

    import org.gradle.api.Action;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.tasks.VerificationException;
    import org.gradle.execution.plan.edges.DependencyNodesSet;
    import org.gradle.execution.plan.edges.DependentNodesSet;
    import org.gradle.internal.resources.ResourceLock;
    
    import javax.annotation.Nullable;
    import javax.annotation.OverridingMethodsMustInvokeSuper;
    import java.util.Collections;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"nodecount": helpText(
    		"Max number of nodes to show",
    		"Uses heuristics to limit the number of locations to be displayed.",
    		"On graphs, dotted edges represent paths through nodes that have been removed."),
    	"nodefraction": "Hide nodes below <f>*total",
    	"edgefraction": "Hide edges below <f>*total",
    	"trim": helpText(
    		"Honor nodefraction/edgefraction/nodecount defaults",
    		"Set to false to get the full profile, without any trimming."),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

    // converting back from a quantized to quantizable (expressed) type.
    //
    // Like qcasts, a dcast is allowed to have both its operand and result
    // as non quantized types. This facilitates transformations and marks edges
    // where the computation must be carried out in the expressed type.
    //
    // Especially early in transformation, it is common to have dcasts on
    // all operands to ops that must operate with the expressed type (typically
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

            if (resolveState != null) {
                return resolveState.getId();
            }
            return componentIdentifier;
        }
    
        /**
         * Restarts all incoming edges for this component, queuing them up for processing.
         */
        public void restartIncomingEdges(ComponentState selected) {
            for (NodeState node : nodes) {
                node.restart(selected);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/poset.go

    // two SSA values to the same DAG node; when a new equality relation is recorded
    // between two existing nodes, the nodes are merged, adjusting incoming and outgoing edges.
    //
    // Constants are specially treated. When a constant is added to the poset, it is
    // immediately linked to other constants already present; so for instance if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
Back to top