Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 195 for Visiting (0.25 sec)

  1. 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)
  2. pkg/api/pod/util.go

    // if visiting should continue.
    type ContainerVisitor func(container *api.Container, containerType ContainerType) (shouldContinue bool)
    
    // VisitContainers invokes the visitor function with a pointer to every container
    // spec in the given pod spec with type set in mask. If visitor returns false,
    // visiting is short-circuited. VisitContainers returns true if visiting completes,
    // false if visiting was short-circuited.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                if (resolveState.peek() != null) {
                    final NodeState node = resolveState.pop();
                    LOGGER.debug("Visiting configuration {}.", node);
    
                    // Register capabilities for this node
                    registerCapabilities(resolveState, node);
    
                    // Initialize and collect any new outgoing edges of this node
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DetermineExecutionPlanAction.java

                return;
            }
    
            // Collect the finalizers and their dependencies so that each node is ordered before all of its dependencies
            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();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  5. .teamcity/performance-test-durations.json

      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting gzip tar trees",
      "durations" : [ {
        "testProject" : "archivePerformanceProject",
        "linux" : 322
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting tar trees",
      "durations" : [ {
        "testProject" : "archivePerformanceProject",
        "linux" : 320
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  6. src/cmd/compile/internal/ssa/sccp.go

    }
    
    type worklist struct {
    	f            *Func               // the target function to be optimized out
    	edges        []Edge              // propagate constant facts through edges
    	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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/AbstractTypeMetadataWalkerTest.groovy

        }
    
        def "instance walker should allow visiting null nested values"() {
            given:
            def instance = new Object() {
                @TestNested
                NestedType getNested() {
                    return null
                }
                @TestNested
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  8. .teamcity/performance-tests-ci.json

        "testId" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting gzip tar trees",
        "groups" : [ {
          "testProject" : "archivePerformanceProject",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting tar trees",
        "groups" : [ {
          "testProject" : "archivePerformanceProject",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformingAsyncArtifactListener.java

                return transformSteps;
            }
    
            @Override
            public void prepareForVisitingIfNotAlready() {
                // The parameters of the transforms should already be isolated prior to visiting this set.
                // However, in certain cases, the transform's parameters may not be isolated (eg https://github.com/gradle/gradle/issues/23116), so do this now
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. src/path/filepath/path.go

    				}
    			}
    		}
    	}
    	return nil
    }
    
    // WalkDir walks the file tree rooted at root, calling fn for each file or
    // directory in the tree, including root.
    //
    // All errors that arise visiting files and directories are filtered by fn:
    // see the [fs.WalkDirFunc] documentation for details.
    //
    // The files are walked in lexical order, which makes the output deterministic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top