Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ProjectCacheDir (0.14 sec)

  1. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

         */
        @NonNullApi
        static class WorkerBuildSessionScopeWorkaroundServices implements ServiceRegistrationProvider {
            private final File projectCacheDir;
    
            WorkerBuildSessionScopeWorkaroundServices(File projectCacheDir) {
                this.projectCacheDir = projectCacheDir;
            }
    
            @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

        }
    
        /**
         * Sets the project's cache location. Set to null to use the default location.
         */
        public void setProjectCacheDir(@Nullable File projectCacheDir) {
            this.projectCacheDir = projectCacheDir;
        }
    
        /**
         * Returns the project's cache dir.
         *
         * <p>Note that this directory is managed by Gradle, and it assumes full ownership of its contents.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top