Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GlobalCacheDir (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/WorkerSharedUserHomeScopeServices.java

            registration.add(GlobalCacheDir.class);
        }
    
        @Provides
        UnscopedCacheBuilderFactory createCacheRepository(CacheFactory cacheFactory) {
            return new DefaultUnscopedCacheBuilderFactory(cacheFactory);
        }
    
        @Provides
        DefaultGlobalScopedCacheBuilderFactory createGlobalScopedCache(GlobalCacheDir globalCacheDir, UnscopedCacheBuilderFactory unscopedCacheBuilderFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/process/internal/AbstractWorkerProcessIntegrationSpec.groovy

        @Rule
        final RedirectStdOutAndErr stdout = new RedirectStdOutAndErr()
        final CacheFactory factory = services.get(CacheFactory.class)
        final GlobalCacheDir globalCacheDir = new GlobalCacheDir({ tmpDir.testDirectory })
        final CacheScopeMapping scopeMapping = new DefaultCacheScopeMapping(globalCacheDir.dir, GradleVersion.current())
        final UnscopedCacheBuilderFactory cacheRepository = new DefaultUnscopedCacheBuilderFactory(factory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServices.java

        }
    
        @Provides
        @Override
        DefaultGlobalScopedCacheBuilderFactory createGlobalScopedCache(GlobalCacheDir globalCacheDir, UnscopedCacheBuilderFactory unscopedCacheBuilderFactory) {
            return new DefaultGlobalScopedCacheBuilderFactory(globalCacheDir.getDir(), unscopedCacheBuilderFactory);
        }
    
        @Provides
        ScopedListenerManager createListenerManager(ScopedListenerManager parent) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.initialization.layout.GlobalCacheDir> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (GlobalCacheDir.java:0)
    Class <org.gradle.initialization.layout.ProjectCacheDir$1> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (ProjectCacheDir.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top