Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getBuildCacheServiceFactoryType (0.35 sec)

  1. subprojects/core/src/main/java/org/gradle/caching/configuration/internal/DefaultBuildCacheConfiguration.java

        @Override
        public <T extends BuildCache> Class<? extends BuildCacheServiceFactory<T>> getBuildCacheServiceFactoryType(Class<T> configurationType) {
            return getBuildCacheServiceFactoryType(configurationType, registrations);
        }
    
        private static <T extends BuildCache> Class<? extends BuildCacheServiceFactory<T>> getBuildCacheServiceFactoryType(Class<T> configurationType, Set<BuildCacheServiceRegistration> registrations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 20 12:32:48 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/caching/configuration/internal/BuildCacheConfigurationInternal.java

        /**
         * Finds a build cache implementation factory class for the given configuration type.
         */
        <T extends BuildCache> Class<? extends BuildCacheServiceFactory<T>> getBuildCacheServiceFactoryType(Class<T> configurationType);
    
        /**
         * Replaces local directory build cache.
         */
        void setLocal(DirectoryBuildCache local);
    
        /**
         * Replaces remote build cache.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/caching/internal/services/AbstractBuildCacheControllerFactory.java

            InstanceGenerator instantiator
        ) {
            Class<? extends BuildCacheServiceFactory<C>> castFactoryType = Cast.uncheckedNonnullCast(
                buildCacheConfiguration.getBuildCacheServiceFactoryType(configuration.getClass())
            );
    
            BuildCacheServiceFactory<C> factory = instantiator.newInstance(castFactoryType);
            Describer describer = new Describer();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top