Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for BuildCacheServiceFactory (0.41 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionErrorHandlingIntegrationTest.groovy

            settingsFile << """
                class FailingBuildCache extends AbstractBuildCache {
                    String shouldFail
                }
    
                class FailingBuildCacheServiceFactory implements BuildCacheServiceFactory<FailingBuildCache> {
                    FailingBuildCacheService createBuildCacheService(FailingBuildCache configuration, Describer describer) {
                        return new FailingBuildCacheService(configuration.shouldFail)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedImplementationIntegrationTest.groovy

                import java.util.*;
                import org.gradle.caching.*;
                import org.apache.commons.codec.binary.Base64;
    
                public class InMemoryBuildCacheService implements BuildCacheServiceFactory<InMemoryBuildCache> {
                    @Override
                    public BuildCacheService createBuildCacheService(InMemoryBuildCache configuration, Describer describer) {
                        describer.type("in-memory");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 20 12:09:58 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-spi/src/main/java/org/gradle/caching/BuildCacheService.java

     * </p>
     * <p>
     *     Every build cache implementation should define a {@code org.gradle.caching.configuration.BuildCache} configuration and {@code BuildCacheServiceFactory} factory.
     * </p>
     *
     * @since 3.5
     */
    public interface BuildCacheService extends Closeable {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:59:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

        void register(String className, String loadBody, String storeBody) {
            settingsFile << """
                class ${className} extends AbstractBuildCache {}
                class ${className}ServiceFactory implements BuildCacheServiceFactory<${className}> {
                    ${className}Service createBuildCacheService(${className} configuration, Describer describer) {
                        return new ${className}Service(configuration)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top