Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 120 for visitEnd (0.26 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/DetermineExecutionPlanAction.java

            LinkedList<Node> nodes = new LinkedList<>();
            Set<Node> visiting = new HashSet<>();
            Set<Node> visited = new HashSet<>();
            Deque<Node> queue = new ArrayDeque<>(finalizers);
            while (!queue.isEmpty()) {
                Node node = queue.peek();
                if (node.isCannotRunInAnyPlan() || visited.contains(node)) {
                    // Already visited node or node cannot execute (eg has already executed), skip
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                                pos++;
                            } // else, already visited or currently visiting (which means a cycle), skip
                        }
                    }
                    if (pos == 0) {
                        // have visited all consumers, so visit this node
                        component.setVisitState(VisitState.Visited);
                        queue.removeFirst();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/sccp.go

    	uses         []*Value            // re-visiting set
    	visited      map[Edge]bool       // visited edges
    	latticeCells map[*Value]lattice  // constant lattices
    	defUse       map[*Value][]*Value // def-use chains for some values
    	defBlock     map[*Value][]*Block // use blocks of def
    	visitedBlock []bool              // visited block
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultExecutionPlan.java

                        if (!visiting.contains(successor)) {
                            insertPoint.add(successor);
                        }
                    }
                } else {
                    // Have visited this node's dependencies - add it to the graph
                    queue.removeFirst();
                    visiting.remove(node);
                    node.dependenciesProcessed();
    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. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionSpec.groovy

            then:
            sourceCollections.size() == 1
            visited == 1
    
            when:
            def files = collection.files
    
            then:
            files.size() == 1
            visited == 2
        }
    
        def "visits contents when task dependencies are queried"() {
            def visited = 0;
            def task = Stub(Task)
            def dependency = Stub(Task)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. pkg/api/pod/util.go

    // referenced by the pod spec. If visitor returns false, visiting is short-circuited.
    // Transitive references (e.g. pod -> pvc -> pv -> secret) are not visited.
    // Returns true if visiting completed, false if visiting was short-circuited.
    func VisitPodSecretNames(pod *api.Pod, visitor Visitor, containerType ContainerType) bool {
    	visitor = skipEmptyNames(visitor)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileFilesFactory.java

         */
        private static class FileDetails {
            final IncludeDirectives directives;
            // Non-null when the result of visiting this file can be reused
            @Nullable
            FileVisitResult results;
    
            FileDetails(IncludeDirectives directives) {
                this.directives = directives;
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

            Set<Node> visited = new HashSet<>();
            Set<Node> visiting = new HashSet<>();
            while (!queue.isEmpty()) {
                Node node = queue.get(0);
                if (node.isComplete() || visited.contains(node)) {
                    queue.remove(0);
                    continue;
                }
                if (visiting.add(node)) {
                    int pos = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      // For region Case/If, the walk would have visited all branch regions before
      // visiting the Case/If op. Backtracking of each region results will either
      // give a value computed within these regions, or a region capture. If it is a
      // region capture computed before this Case/If, it will have been visited
      // earlier and a mapping would exist for that value. If it is computed within
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/fmt.go

    	// Note that we remove the type from the visited map as soon as the recursive call is done.
    	// This prevents encoding types like map[*int]*int as map[*int]@4. (That encoding would work,
    	// but I'd like to use the @ notation only when strictly necessary.)
    	if visited == nil {
    		visited = map[*Type]int{}
    	}
    	visited[t] = b.Len()
    	defer delete(visited, t)
    
    	switch t.Kind() {
    	case TPTR:
    		b.WriteByte('*')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
Back to top