Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ProjectCacheDir (0.42 sec)

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

            return new ProjectCacheDir(cacheDir.getDir(), buildOperationRunner, deleter);
        }
    
        @Provides
        BuildTreeScopedCacheBuilderFactory createBuildTreeScopedCache(ProjectCacheDir projectCacheDir, UnscopedCacheBuilderFactory unscopedCacheBuilderFactory) {
            return new DefaultBuildTreeScopedCacheBuilderFactory(projectCacheDir.getDir(), unscopedCacheBuilderFactory);
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/language/java/internal/JavaToolchainServices.java

                ClassPathRegistry classPathRegistry,
                ActionExecutionSpecFactory actionExecutionSpecFactory,
                InternalProblems problems,
                ProjectCacheDir projectCacheDir
            ) {
                return new DefaultJavaCompilerFactory(
                    workerDirectoryProvider,
                    workerDaemonFactory,
                    forkOptionsFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/GroovyServices.java

                ClassPathRegistry classPathRegistry,
                ClassLoaderRegistry classLoaderRegistry,
                ActionExecutionSpecFactory actionExecutionSpecFactory,
                ProjectCacheDir projectCacheDir,
                InternalProblems problems
            ) {
                return new GroovyCompilerFactory(
                    workerDaemonFactory,
                    inProcessWorkerFactory,
                    forkOptionsFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDirIntegrationTest.groovy

            then:
            configurationCache.assertStateLoaded()
        }
    
        def "configuration cache honours org.gradle.projectcachedir"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            when:
            configurationCacheRun 'help', '-Dorg.gradle.projectcachedir=custom-cache-dir'
    
            then:
            !file('.gradle/configuration-cache').exists()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkersServices.java

                                                CachedClasspathTransformer classpathTransformer,
                                                ProjectLayout projectLayout,
                                                ProjectCacheDir projectCacheDir
                                                ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonFactoryTest.groovy

        def workingDir = new File("some-dir")
        def projectCacheDir = new File("some-cache-dir")
        def options = Stub(DaemonForkOptions)
        def requirement = new ForkedWorkerRequirement(workingDir, projectCacheDir, options)
        def spec = Stub(IsolatedParametersActionExecutionSpec)
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top