Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for getCaches (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/SettingsInternal.java

        @Override
        BuildCacheConfigurationInternal getBuildCache();
    
        @Override
        DependencyResolutionManagementInternal getDependencyResolutionManagement();
    
        @Override
        CacheConfigurationsInternal getCaches();
    
        /**
         * This is a version of {@link Settings#include(String...)} for just one argument.
         * If varargs get supoprted in Declarative DSL this overload will no longer be needed.
         */
        @Adding
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/initialization/ScriptEvaluatingSettingsProcessor.java

            SettingsInternal settings = state.getSettings();
            gradle.getBuildListenerBroadcaster().beforeSettings(settings);
            settings.getCaches().finalizeConfiguration(gradle);
            applySettingsScript(settingsScript, settings);
            LOGGER.debug("Timing: Processing settings took: {}", settingsProcessingClock.getElapsed());
            return state;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 25 19:42:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/DefaultSettings.java

        }
    
        @Override
        @Inject
        public abstract CacheConfigurationsInternal getCaches();
    
        @Override
        public void caches(Action<? super CacheConfigurations> cachesConfiguration) {
            cachesConfiguration.execute(getCaches());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/SettingsDelegate.kt

        override fun getDependencyResolutionManagement(): DependencyResolutionManagement =
            delegate.dependencyResolutionManagement
    
        override fun getCaches(): CacheConfigurations =
            delegate.caches
    
        override fun caches(cacheConfigurations: Action<in CacheConfigurations>) = delegate.caches(cacheConfigurations)
    
        override fun getLayout(): BuildLayout =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

        /**
         * Returns the configuration for caches stored in the user home directory.
         *
         * @since 8.0
         */
        @Incubating
        CacheConfigurations getCaches();
    
        /**
         * Configures the settings for caches stored in the user home directory.
         *
         * @param cachesConfiguration the configuration
         *
         * @since 8.0
         */
        @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/common/deployment/namespace.go

    		n.E = match.ServiceName(echo.NamespacedName{Name: ESvc, Namespace: ns}).GetMatches(echos)
    	}
    	n.Tproxy = match.ServiceName(echo.NamespacedName{Name: TproxySvc, Namespace: ns}).GetMatches(echos)
    	n.Headless = match.ServiceName(echo.NamespacedName{Name: HeadlessSvc, Namespace: ns}).GetMatches(echos)
    	n.StatefulSet = match.ServiceName(echo.NamespacedName{Name: StatefulSetSvc, Namespace: ns}).GetMatches(echos)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/echotest/filters.go

    	return func(instances echo.Instances) echo.Instances {
    		return match.NotRegularPod.GetMatches(instances)
    	}
    }
    
    // FilterMatch returns a filter that simply applies the given matcher.
    func FilterMatch(matcher match.Matcher) Filter {
    	return func(instances echo.Instances) echo.Instances {
    		return matcher.GetMatches(instances)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/dynamicversions/DefaultModuleVersionsCache.java

        }
    
        @Override
        protected void store(ModuleAtRepositoryKey key, ModuleVersionsCacheEntry entry) {
            getCache().put(key, entry);
        }
    
        @Override
        protected ModuleVersionsCacheEntry get(ModuleAtRepositoryKey key) {
            return getCache().getIfPresent(key);
        }
    
        private static class ModuleKeySerializer extends AbstractSerializer<ModuleAtRepositoryKey> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultMultiProcessSafeIndexedCache.java

            final BTreePersistentIndexedCache<K, V> cache = getCache();
            // Use writeFile because the cache can internally recover from datafile
            // corruption, so we don't care at this level if it's corrupt
            fileAccess.writeFile(() -> cache.put(key, value));
        }
    
        @Override
        public void remove(final K key) {
            final BTreePersistentIndexedCache<K, V> cache = getCache();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskGroovyJavaJointIncrementalCompilationIntegrationTest.groovy

            sourceWithFileSuffixForProject("java", "impl", "class C1 extends B1 {}")
            sourceWithFileSuffixForProject("java", "impl", "class D1 extends C1 { static boolean getCache() { return true; } }")
            File e1Class = sourceWithFileSuffixForProject("groovy", "impl", "class E1 { boolean isCacheEnabled = D1.cache }")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top