Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CACHE_MISS (0.1 sec)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.cache-miss-monitor.gradle.kts

            if (taskResult is TaskSuccessResult && !taskResult.isFromCache && !taskResult.isUpToDate) {
                println("CACHE_MISS in task $taskPath")
                cacheMiss.set(true)
            }
        }
    }
    
    
    /**
     *  We monitor some tasks in non-seed builds. If a task executed in a non-seed build, we think it as "CACHE_MISS".
     */
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Apr 11 20:57:49 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

        private static final class CacheMiss {}
    
        private static final CacheMiss CACHE_MISS = new CacheMiss();
    
        private static final Object OBJECT = new Object();
    
        /**
         * Class passed into the constructor used to as
         * the basis for the Method map.
         */
        private final Class<?> clazz;
    
        /**
         * Cache of Methods, or CACHE_MISS, keyed by method
         * name and actual arguments used to find it.
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 13.5K bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/AbstractBuildScanInfoCollectingService.kt

     * A BuildService which monitors a few tasks (in both build-logic and main build) and collects information for Build Scan.
     * It's currently implemented by two use cases:
     * 1. Collect cache misses for compilation tasks and publish a `CACHE_MISS` tag for a Build Scan.
     * 2. Collect failed task paths and display a link which points to the corresponding task in the Build Scan, like `https://ge.gradle.org/s/xxx/console-log?task=yyy`.
     */
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Jun 10 05:45:46 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  4. impl/maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    .Method); void tryUpcasting(Class) throws NoSuchMethodExceptio; } org/codehaus/plexus/util/introspection/ClassMap.class package org.codehaus.plexus.util.introspection; public synchronized class ClassMap { private static final ClassMap$CacheMiss CACHE_MISS; private static final Object OBJECT; private Class clazz; private java.util.Map methodCache; private MethodMap methodMap; public void ClassMap(Class); Class getCachedClass(); public reflect.Method findMethod(String, Object[]) throws MethodMap$AmbiguousException;...
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 164.6K bytes
    - Viewed (0)
Back to top