Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 533 for Visiting (0.12 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/CachingChangeContainerTest.groovy

                receivesChanges(change3, change2, change1)
            }
            0 * _
    
            and:
            reported == [change3, change2, change1]
        }
    
        def "does not cache if visitor aborts visiting"() {
            when:
            cachingChanges.accept(new LimitingChangeVisitor(2, new CollectingChangeVisitor()))
    
            then:
            interaction {
                receivesChanges(change1, change2)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionFactory.java

         * <p>
         * The collection is live, so that the contents are queried as required on query of the collection.
         *
         * @param contents The file set contents for the constructed file collection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedArtifactSetResolver.java

    import org.gradle.internal.operations.RunnableBuildOperation;
    import org.gradle.internal.work.WorkerLeaseService;
    
    import javax.inject.Inject;
    
    /**
     * Resolves a {@link ResolvedArtifactSet} in a build operation, visiting the results.
     */
    public class ResolvedArtifactSetResolver {
    
        private final WorkerLeaseService workerLeaseService;
        private final BuildOperationRunner buildOperationRunner;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:35:27 UTC 2024
    - 4K 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. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedArtifactSet.java

             */
            void visit(ArtifactVisitor visitor);
        }
    
        /**
         * A listener that is notified as artifacts are made available while visiting the contents of a set. Implementations must be thread safe as they are notified from multiple threads concurrently.
         */
        interface Visitor {
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ComponentIdResolveResult.java

        /**
         * @return the list of versions which were considered for this module but rejected.
         */
        Collection<RejectedVersion> getRejectedVersions();
    
        /**
         * Tags this resolve result, for visiting. This is a performance optimization. It will return
         * true if the last tagged object is different, false otherwise. This is meant to replace the
         * use of a hash set to collect the visited items.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ParallelResolveArtifactSet.java

    import org.gradle.internal.operations.RunnableBuildOperation;
    
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * A wrapper that prepares artifacts in parallel when visiting the delegate.
     * This is done by collecting all artifacts to prepare and/or visit in a first step.
     * The collected artifacts are prepared in parallel and subsequently visited in sequence.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. .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)
  9. 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)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/TypeMetadataWalker.java

     */
    public interface TypeMetadataWalker<T, V extends TypeMetadataWalker.TypeMetadataVisitor<T>> {
    
        /**
         * A factory method for a walker that can visit the property hierarchy of an instance.
         *
         * When visiting a nested property, child properties are discovered using the type of the
         * return property value. This can be a more specific type than the return type of the property's
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top