Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 99 for Edges (0.04 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/DetermineExecutionPlanAction.java

                                GraphEdge toBeRemoved = walkedShouldRunAfterEdges.pop();
                                // Should run after edges only exist between tasks, so this cast is safe
                                TaskNode sourceTask = (TaskNode) toBeRemoved.from;
                                TaskNode targetTask = (TaskNode) toBeRemoved.to;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    // and sets b.current to nil.
    func (b *builder) jump(target *Block) {
    	b.current.Succs = append(b.current.Succs, target)
    	b.current = nil
    }
    
    // ifelse emits edges from the current block to the t and f blocks,
    // and sets b.current to nil.
    func (b *builder) ifelse(t, f *Block) {
    	b.current.Succs = append(b.current.Succs, t, f)
    	b.current = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/edit.go

    	}
    	if dq.dep != (module.Version{}) {
    		return dq.dep.String()
    	}
    	return "(no conflict)"
    }
    
    // require records that m directly requires r, in case r becomes disqualified.
    // (These edges are in the opposite direction from the edges in an mvs.Graph.)
    //
    // If r is already disqualified, require propagates the disqualification to m
    // and returns the reason for the disqualification.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

                                selectedByRule()
                            }
                        }
                        module('org:b:1.0') {
                            // this is not quite right, as we should replace with 2 edges
                            // one option to do it is to construct "adhoc" modules, and select an adhoc target in "prefer"
                            // where this adhoc target would have dependencies on groovy-json and groovy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      // that was extracted..
    
      // Find the input edges to form the set of operands to the new function call.
      llvm::SetVector<Value> inputs;
      for (Operation* op : ops) {
        for (Value operand : op->getOperands()) {
          Operation* defining_op = operand.getDefiningOp();
          if (!ops.contains(defining_op)) inputs.insert(operand);
        }
      }
      // Find the output edges to form the set of resutls of the new function call.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/branchelim.go

    		}
    		v.Op = OpCondSelect
    		if swap {
    			v.Args[0], v.Args[1] = v.Args[1], v.Args[0]
    		}
    		v.AddArg(b.Controls[0])
    	}
    
    	// Move the contents of all of these
    	// blocks into 'b' and update CFG edges accordingly
    	b.Kind = post.Kind
    	b.CopyControls(post)
    	b.Aux = post.Aux
    	b.Succs = append(b.Succs[:0], post.Succs...)
    	for i := range b.Succs {
    		e := b.Succs[i]
    		e.b.Preds[e.i].b = b
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

            failure.assertHasCause "No cached version listing for group:projectA:1.+ available for offline mode."
        }
    
        def checkResolve(Map edges) {
            assert succeeds('checkDeps')
            resolve.expectGraph {
                root(":", ":test:") {
                    edges.each { from, to ->
                        if (to instanceof List) {
                            edge(from, to[0]).byReason(to[1]).notRequested()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
Back to top