Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 120 for visitEnd (0.19 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

            val visited = hashSetOf<KtModule>()
            val stack = ktModules.toMutableList()
            while (stack.isNotEmpty()) {
                val module = stack.popLast()
                if (module in visited) continue
                visited += module
                for (dependency in module.allDependencies()) {
                    if (dependency !in visited) {
                        stack += dependency
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

        /**
         * A map of all possible file locations, and the number of occurrences we expect to find in the problems.
         */
        private final Map<String, Integer> possibleFileLocations = [:]
    
        /**
         * A map of all visited file locations, and the number of occurrences we have found in the problems.
         * <p>
         * This field will be updated by {@link #assertProblem(ReceivedProblem, String, Boolean)} as it asserts a problem.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

                    throw new ArtifactDescriptorException(result);
                }
    
                if (!visited.add(a.getGroupId() + ':' + a.getArtifactId() + ':' + a.getBaseVersion())) {
                    RepositoryException exception =
                            new RepositoryException("Artifact relocations form a cycle: " + visited);
                    invalidDescriptor(session, trace, a, exception);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

                    // TODO - hoist this up into configuration file collection visiting (and not when visiting the upstream dependencies of a transform), and deprecate this in Gradle 7.x
                    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/gradients.cc

      std::unordered_set<Node*> visited;
      // Initialize `queue` for BFS traversal. Nodes in `queue` hold upcoming nodes
      // along with the last Node in `output_` encountered along that path. If no
      // `output_` node was encountered, pair.second will be nullptr.
      std::deque<std::pair<Node*, Node*>> queue;
      for (const Output& nout : inputs_) {
        auto const& pair = visited.insert(nout.node());
        if (pair.second) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformUpstreamDependenciesResolver.java

                    dependenciesIdentifiers.add(selected.getId());
                    if (visited.add(selected.getId())) {
                        // Do not traverse if seen already
                        collectReachableComponents(dependenciesIdentifiers, visited, selected.getDependencies());
                    }
                }
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/likelyadjust.go

    	}
    	return o
    }
    
    func loopnestfor(f *Func) *loopnest {
    	po := f.postorder()
    	sdom := f.Sdom()
    	b2l := make([]*loop, f.NumBlocks())
    	loops := make([]*loop, 0)
    	visited := f.Cache.allocBoolSlice(f.NumBlocks())
    	defer f.Cache.freeBoolSlice(visited)
    	sawIrred := false
    
    	if f.pass.debug > 2 {
    		fmt.Printf("loop finding in %s\n", f.Name)
    	}
    
    	// Reducible-loop-nest-finding.
    	for _, b := range po {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/visitor.go

    // are visited.
    type ContinueOnErrorVisitor struct {
    	Visitor
    }
    
    // Visit returns nil if no error occurs during traversal, a regular
    // error if one occurs, or if multiple errors occur, an aggregate
    // error.  If the provided visitor fails on any individual item it
    // will not prevent the remaining items from being visited. An error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    	// Types already visited at an earlier level.
    	visited := map[reflect.Type]bool{}
    
    	// Fields found.
    	var fields []field
    
    	for len(next) > 0 {
    		current, next = next, current[:0]
    		count, nextCount = nextCount, map[reflect.Type]int{}
    
    		for _, f := range current {
    			if visited[f.typ] {
    				continue
    			}
    			visited[f.typ] = true
    
    			// Scan f.typ for fields to include.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

      }
      // Container to mark visited regions to avoid infinite loop.
      llvm::DenseSet<std::pair<Region*, int>> visited;
      while (!work_list.empty()) {
        auto work_item = work_list.pop_back_val();
        if (visited.contains(work_item)) continue;
        PropagateUsage(work_item.first, value, work_item.second, &work_list,
                       arguments_to_erase);
        visited.insert(work_item);
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top