Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 662 for walkFn (0.16 sec)

  1. src/go/types/mono.go

    	var stack []int
    	seen := make([]bool, len(check.mono.vertices))
    
    	// We have a path that contains a cycle and ends at v, but v may
    	// only be reachable from the cycle, not on the cycle itself. We
    	// start by walking backwards along the path until we find a vertex
    	// that appears twice.
    	for !seen[v] {
    		stack = append(stack, v)
    		seen[v] = true
    		v = check.mono.edges[check.mono.vertices[v].pre].src
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/deadstore.go

    		}
    
    		// Walk backwards looking for dead stores. Keep track of shadowed addresses.
    		// A "shadowed address" is a pointer, offset, and size describing a memory region that
    		// is known to be written. We keep track of shadowed addresses in the shadowed map,
    		// mapping the ID of the address to a shadowRange where future writes will happen.
    		// Since we're walking backwards, writes to a shadowed region are useless,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/main/java/org/gradle/vcs/git/internal/GitVersionControlSystem.java

                }
            }
        }
    
        private static void updateSubModules(Git git) throws IOException, GitAPIException {
            try (SubmoduleWalk walker = SubmoduleWalk.forIndex(git.getRepository())) {
                while (walker.next()) {
                    try (Repository submodule = walker.getRepository()) {
                        if (submodule != null) {
                            Git submoduleGit = Git.wrap(submodule);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/mono.go

    	var stack []int
    	seen := make([]bool, len(check.mono.vertices))
    
    	// We have a path that contains a cycle and ends at v, but v may
    	// only be reachable from the cycle, not on the cycle itself. We
    	// start by walking backwards along the path until we find a vertex
    	// that appears twice.
    	for !seen[v] {
    		stack = append(stack, v)
    		seen[v] = true
    		v = check.mono.edges[check.mono.vertices[v].pre].src
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/assign.go

    	if as.X != nil && as.Y != nil {
    		return convas(as, init)
    	}
    	return as
    }
    
    // walkAssignDotType walks an OAS2DOTTYPE node.
    func walkAssignDotType(n *ir.AssignListStmt, init *ir.Nodes) ir.Node {
    	walkExprListSafe(n.Lhs, init)
    	n.Rhs[0] = walkExpr(n.Rhs[0], init)
    	return n
    }
    
    // walkAssignFunc walks an OAS2FUNC node.
    func walkAssignFunc(init *ir.Nodes, n *ir.AssignListStmt) ir.Node {
    	init.Append(ir.TakeInit(n)...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ir/visit.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // IR visitors for walking the IR tree.
    //
    // The lowest level helpers are DoChildren and EditChildren, which
    // nodes help implement and provide control over whether and when
    // recursion happens during the walk of the IR.
    //
    // Although these are both useful directly, two simpler patterns
    // are fairly common and also provided: Visit and Any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/phi.go

    // resolveFwdRefs links all FwdRef uses up to their nearest dominating definition.
    func (s *phiState) resolveFwdRefs() {
    	// Do a depth-first walk of the dominator tree, keeping track
    	// of the most-recently-seen value for each variable.
    
    	// Map from variable ID to SSA value at the current point of the walk.
    	values := make([]*ssa.Value, len(s.varnum))
    	for i := range values {
    		values[i] = s.placeholder
    	}
    
    	// Stack of work to do.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/builtin.go

    	r := ir.NewBlockStmt(base.Pos, nil)
    	r.List = calls
    	return walkStmt(typecheck.Stmt(r))
    }
    
    // walkRecoverFP walks an ORECOVERFP node.
    func walkRecoverFP(nn *ir.CallExpr, init *ir.Nodes) ir.Node {
    	return mkcall("gorecover", nn.Type(), init, walkExpr(nn.Args[0], init))
    }
    
    // walkUnsafeData walks an OUNSAFESLICEDATA or OUNSAFESTRINGDATA expression.
    func walkUnsafeData(n *ir.UnaryExpr, init *ir.Nodes) ir.Node {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/SyncCopyActionDecorator.java

            }));
    
            SyncCopyActionDecoratorFileVisitor fileVisitor = new SyncCopyActionDecoratorFileVisitor(visited, preserveSpec, deleter);
    
            MinimalFileTree walker = directoryFileTreeFactory.create(baseDestDir).postfix();
            walker.visit(fileVisitor);
            visited.clear();
    
            return WorkResults.didWork(didWork.getDidWork() || fileVisitor.didWork);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 09 13:29:36 UTC 2019
    - 4.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      // for such regions to a new unique-id. This is required because walk() walks
      // the attached regions first before visiting the op, so there is no
      // opportunity during the walk to seed region arguments. Also note that walk
      // eventually also visits the Op on which the walk() is called, so make sure
      // we do not overwrite the function argument mapping here.
      func_op.walk([&](Operation* op) {
        if (op == func_op) return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top