Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ScriptCacheKey (0.59 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/ScriptCacheKey.java

     * limitations under the License.
     */
    package org.gradle.groovy.scripts.internal;
    
    import java.lang.ref.WeakReference;
    
    public class ScriptCacheKey {
        private final String className;
        private final WeakReference<ClassLoader> classLoader;
        private final String dslId;
    
        ScriptCacheKey(String className, ClassLoader classLoader, String dslId) {
            this.className = className;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 16:23:36 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/BuildScopeInMemoryCachingScriptClassCompiler.java

            ScriptCacheKey key = new ScriptCacheKey(source.getClassName(), targetScope.getExportClassLoader(), operation.getId());
            CompiledScript<T, M> compiledScript = Cast.uncheckedCast(cachedCompiledScripts.get(key));
            if (compiledScript == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 16:35:08 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/CrossBuildInMemoryCachingScriptClassCache.java

            CompileOperation<M> operation,
            Class<T> scriptBaseClass,
            Action<? super ClassNode> verifier,
            ScriptClassCompiler delegate
        ) {
            ScriptCacheKey key = new ScriptCacheKey(source.getClassName(), targetScope.getExportClassLoader(), operation.getId());
            CachedCompiledScript cached = cachedCompiledScripts.getIfPresent(key);
            HashCode hash = source.getResource().getContentHash();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 09 15:05:17 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top