Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NoOpBuildCacheService (0.66 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheConfigurationIntegrationTest.groovy

                        new NoOpBuildCacheService()
                    }
                }
    
                class AnotherBuildCacheFactory implements BuildCacheServiceFactory<AnotherBuildCache> {
                    @Override BuildCacheService createBuildCacheService(AnotherBuildCache configuration, Describer describer) {
                        new NoOpBuildCacheService()
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 19 20:09:35 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/FinalizeBuildCacheConfigurationBuildOperationIntegrationTest.groovy

            when:
            def cacheDir = temporaryFolder.file("cache-dir").createDir()
            def url = "http://localhost:8080/cache/"
            settingsFile << """
                class NoOpBuildCacheService implements BuildCacheService {
                    @Override
                    boolean load(BuildCacheKey key, BuildCacheEntryReader reader) { false }
    
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top