Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CachingRuleExecutor (0.75 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CachingRuleExecutor.java

     * a different type that the caller can use to reproduce the execution of the rule. This object is the one
     * that is going to be cached, and most likely the thing the caller really cares about
     */
    public interface CachingRuleExecutor<KEY, DETAILS, RESULT> {
        /**
         * Executes a rule, fetching the result from the cache if available, or executing the rule and caches
         * the result in case of cache miss.
         *  @param rule the rule to be executed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutor.java

    import java.io.File;
    import java.io.IOException;
    import java.util.Collection;
    import java.util.List;
    import java.util.Map;
    
    public class CrossBuildCachingRuleExecutor<KEY, DETAILS, RESULT> implements CachingRuleExecutor<KEY, DETAILS, RESULT>, Closeable {
        private final static Logger LOGGER = Logging.getLogger(CrossBuildCachingRuleExecutor.class);
    
        private final ValueSnapshotter snapshotter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.resolve.caching.CachingRuleExecutor> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (CachingRuleExecutor.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top