Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 120 for visitEnd (0.13 sec)

  1. src/cmd/covdata/metamerge.go

    	}
    }
    
    func (mm *metaMerge) beginPod() {
    	mm.pod = &podstate{
    		pmm: make(map[pkfunc]decodecounter.FuncPayload),
    	}
    }
    
    // metaEndPod handles actions needed when we're done visiting all of
    // the things in a pod -- counter files and meta-data file. There are
    // three cases of interest here:
    //
    // Case 1: in an unconditional merge (we're not selecting a specific set of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    	})
    }
    
    // forEachLastStmt calls onLast on each "last" statement in a list of statements.
    // "Last" is defined recursively so, for example, if the last statement is
    // a switch statement, then each switch case is also visited to examine
    // its last statements.
    func forEachLastStmt(stmts []ast.Stmt, onLast func(last ast.Stmt)) {
    	if len(stmts) == 0 {
    		return
    	}
    
    	s := stmts[len(stmts)-1]
    	switch s := s.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/partially_decluster_pass.cc

      // on if we've decided that some of its consumers have to be declustered too.
      // Iterating the graph in post-order guarantees that consumers have been
      // visited before producers.
      std::vector<Node*> post_order;
      GetPostOrder(*graph, &post_order, /*stable_comparator=*/NodeComparatorName(),
                   /*edge_filter=*/NotBackedge);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/cmd/cover/cover.go

    		// existing import may be shadowed at any given place we want
    		// to refer to it, and our name (_cover_atomic_) is less likely to
    		// be shadowed. The one exception is if we're visiting the
    		// sync/atomic package itself, in which case we can refer to
    		// functions directly without an import prefix. See also #57445.
    		if pkgconfig.PkgPath != "sync/atomic" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/stackcheck.go

    // sc.graph for sym and every function in its call tree.
    func (sc *stackCheck) check(sym loader.Sym) int {
    	if h, ok := sc.height[sym]; ok {
    		// We've already visited this symbol or we're in a cycle.
    		return int(h)
    	}
    	// Store the sentinel so we can detect cycles.
    	sc.height[sym] = stackCheckCycle
    	// Compute and record the height and optionally edges.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/intervals.go

    //     order scan over instructions
    //   - invoke b.Finish() to produce final set
    //
    // See the Live method comment for an IR example.
    type IntervalsBuilder struct {
    	s Intervals
    	// index of last instruction visited plus 1
    	lidx int
    }
    
    func (c *IntervalsBuilder) last() int {
    	return c.lidx - 1
    }
    
    func (c *IntervalsBuilder) setLast(x int) {
    	c.lidx = x + 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolver.java

                    return true;
                }
            }
        }
    
        private interface ExpressionVisitor {
            /**
             * Called when an expression is about to be visited. Called for each intermediate expression as macros are expanded.
             *
             * @return true if the visit should continue, false to skip this expression.
             */
            boolean startVisit(Expression expression);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/node_authorizer.go

    			return true
    		},
    	}
    	traversal.Walk(r.graph.graph, startingVertex, func(n graph.Node) bool {
    		if n.ID() == nodeVertex.ID() {
    			// We found the node we want
    			found = true
    		}
    		// Stop visiting if we've found the node we want
    		return found
    	})
    	if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

            doesNotResolve evicted, a
            traverses a, b
            traverses root, d
            traverses d, e
            traverses e, selected // conflict is deeper than 'b', to ensure 'b' has been visited
    
            when:
            def result = resolve()
            result.rethrowFailure()
    
            then:
            1 * conflictResolver.select(_) >> { args ->
                def details = args[0]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  10. src/go/types/unify.go

    			// are extremely short (bounded by the nesting depth of interface
    			// type declarations that recur via parameter types, an extremely
    			// rare occurrence). An alternative implementation might use a
    			// "visited" map, but that is probably less efficient overall.
    			q := &ifacePair{xi, yi, p}
    			for p != nil {
    				if p.identical(q) {
    					return true // same pair was compared before
    				}
    				p = p.prev
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top