Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 120 for visitEnd (0.26 sec)

  1. staging/src/k8s.io/apimachinery/third_party/forked/golang/reflect/deep_equal.go

    			// Canonicalize order to reduce number of entries in visited.
    			addr1, addr2 = addr2, addr1
    		}
    
    		// Short circuit if references are identical ...
    		if addr1 == addr2 {
    			return true
    		}
    
    		// ... or already seen
    		typ := v1.Type()
    		v := visit{addr1, addr2, typ}
    		if visited[v] {
    			return true
    		}
    
    		// Remember for later.
    		visited[v] = true
    	}
    
    	switch v1.Kind() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 20 17:18:42 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            0 * _
    
            when:
            def visited = SnapshotUtil.indexByAbsolutePath(snapshot)
    
            then:
            visited[rootDir.absolutePath] instanceof DirectorySnapshot
            visited[rootTextFile.absolutePath] instanceof RegularFileSnapshot
            visited[knownTextFile.absolutePath].is(knownFileSnapshot)
            visited[knownDir.absolutePath].is(knownDirSnapshot)
            visited[previouslyUnknownFile.absolutePath] == null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    	missedDeps := make(map[string][]string)
    	visited := make(map[string]struct{})
    	for _, p := range e.phaseRunners {
    		if run, ok := phaseRunFlags[p.generatedName]; !run || !ok {
    			continue
    		}
    		for _, dep := range p.Phase.Dependencies {
    			if _, ok := visited[dep]; !ok {
    				missedDeps[p.Phase.Name] = append(missedDeps[p.Phase.Name], dep)
    			}
    		}
    		visited[p.Phase.Name] = struct{}{}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/internal/JsonProjectDependencyRenderer.java

            }
            Set<ModuleIdentifier> modules = new HashSet<>();
            Set<ComponentIdentifier> visited = new HashSet<>();
            populateModulesWithChildDependencies(root, visited, modules);
            return modules;
        }
    
        private void populateModulesWithChildDependencies(RenderableDependency dependency, Set<ComponentIdentifier> visited, Set<ModuleIdentifier> modules) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/Traverser.java

       *   <li>While traversing, the traverser will use <i>O(n)</i> space (where <i>n</i> is the number
       *       of nodes that have thus far been visited), plus <i>O(H)</i> space (where <i>H</i> is the
       *       number of nodes that have been seen but not yet visited, that is, the "horizon").
       * </ul>
       *
       * @param graph {@link SuccessorsFunction} representing a general graph that may have cycles.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/Traverser.java

       *   <li>While traversing, the traverser will use <i>O(n)</i> space (where <i>n</i> is the number
       *       of nodes that have thus far been visited), plus <i>O(H)</i> space (where <i>H</i> is the
       *       number of nodes that have been seen but not yet visited, that is, the "horizon").
       * </ul>
       *
       * @param graph {@link SuccessorsFunction} representing a general graph that may have cycles.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/loopreschedchecks.go

    	idom := f.Idom()
    	po := f.postorder()
    	// The ordering in the dominator tree matters; it's important that
    	// the walk of the dominator tree also be a preorder (i.e., a node is
    	// visited only after all its non-backedge predecessors have been visited).
    	sdom := newSparseOrderedTree(f, idom, po)
    
    	if f.pass.debug > 1 {
    		fmt.Printf("before %s = %s\n", f.Name, sdom.treestructure(f.Entry))
    	}
    
    	tofixBackedges := []edgeMem{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

        if (failed(res)) return res;
      }
    
      // To support WhileRegion, we need to propagate device attributes from
      // WhileRegion operands to body/cond region arguments *prior* to visiting
      // these regions, so use a pre-order walk.
      WalkResult walk_res = func_op.walk<WalkOrder::PreOrder>([&](Operation* op) {
        if (auto var_handle = dyn_cast<VarHandleOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

                    wildcardType.getLowerBounds().forEach(bound -> unpackJavaType(bound, referencedTypes, visited));
                } else if (type instanceof JavaParameterizedType) {
                    ((JavaParameterizedType) type).getActualTypeArguments().forEach(argument -> unpackJavaType(argument, referencedTypes, visited));
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/deadcode.go

    				// with UsedInIface attribute set.
    				// When visiting the child type (chan T in the example above), it will
    				// have UsedInIface set, so it in turn will mark and (re)visit its children
    				// (e.g. T above).
    				// We unset the reachable bit here, so if the child type is already visited,
    				// it will be visited again.
    				// Note that a type symbol can be visited at most twice, one without
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top