Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for Edges (0.14 sec)

  1. 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)
  2. pkg/test/framework/components/environment/kube/kube.go

    			continue
    		}
    		allClusters[c.Name()] = c
    		clusters = append(clusters, c)
    	}
    	if errs != nil {
    		return nil, errs
    	}
    
    	// validate the topology has no open edges
    	for _, c := range allClusters {
    		if _, ok := allClusters[c.PrimaryName()]; !ok {
    			errs = multierror.Append(errs, fmt.Errorf("primary %s for %s is not in the topology", c.PrimaryName(), c.Name()))
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/nowb.go

    	// capture all calls created by lowering, but this means we
    	// only get to see the obj.LSyms of calls. symToFunc lets us
    	// get back to the ODCLFUNCs.
    	symToFunc := make(map[*obj.LSym]*ir.Func)
    	// funcs records the back-edges of the BFS call graph walk. It
    	// maps from the ODCLFUNC of each function that must not have
    	// write barriers to the call that inhibits them. Functions
    	// that are directly marked go:nowritebarrierrec are in this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        result.types.push_back(type);
      }
    
      // Surprisingly input edges can be nondeterministically ordered. This
      // particularly seems to be the case for the control edges between _SOURCE
      // and _SINK that the Graph constructor inserts. Copy the input edges and
      // sort the edges, but only the control edges, not data edges!
      // TODO(jmolloy): We should probably just ignore _SOURCE and _SINK nodes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	// Requires is a set of analyzers that must run successfully
    	// before this one on a given package. This analyzer may inspect
    	// the outputs produced by each analyzer in Requires.
    	// The graph over analyzers implied by Requires edges must be acyclic.
    	//
    	// Requires establishes a "horizontal" dependency between
    	// analysis passes (different analyzers, same package).
    	Requires []*Analyzer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    }
    
    func applyCommandOverrides(cmd string, outputFormat int, cfg config) config {
    	// Some report types override the trim flag to false below. This is to make
    	// sure the default heuristics of excluding insignificant nodes and edges
    	// from the call graph do not apply. One example where it is important is
    	// annotated source or disassembly listing. Those reports run on a specific
    	// function (or functions), but the trimming is applied before the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/shape_inference.cc

                }
              }
            }
          }
        }
    
        // Merge node causes a loop so we remove NextIteration->Merge edge before
        // performing shape inference. But removing those edges also prevents us
        // from inferring output shape for Merge node (we need shapes for all its
        // inputs).
        // For loop invariant resource input's Merge node, we set output resource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. src/internal/trace/gc.go

    	// between segments occur when either edge of the window
    	// encounters a change in the instantaneous mutator
    	// utilization function. Hence, the minimum of this function
    	// will always occur when one of the edges of the window
    	// aligns with a utilization change, so these are the only
    	// points we need to consider.
    	//
    	// We compute the mutator utilization function incrementally
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top