Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for GRADLE_USER_HOME (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    1. Clean the cache directory to avoid any hits from previous builds (`rm -rf $GRADLE_USER_HOME/caches/build-cache-*`)
    2. Run the build (e.g. `./gradlew --build-cache clean assemble`), so that all the results from cacheable tasks get stored in the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    By default, the Gradle User Home (`~/.gradle` or `C:\Users\<USERNAME>\.gradle`) stores global configuration properties, initialization scripts, caches, and log files.
    
    It can be set with the environment variable `GRADLE_USER_HOME`.
    
    TIP: Not to be confused with the `GRADLE_HOME`, the optional installation directory for Gradle.
    
    It is roughly structured as follows:
    
    [listing]
    ----
    ├── caches // <1>
    │   ├── 4.8 // <2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

             */
            ALL
        }
    
        /**
         * Specifies how the wrapper path should be interpreted.
         */
        public enum PathBase {
            PROJECT, GRADLE_USER_HOME
        }
    
        private Object scriptFile = WrapperDefaults.SCRIPT_PATH;
        private Object jarFile = WrapperDefaults.JAR_FILE_PATH;
        private String distributionPath = DEFAULT_DISTRIBUTION_PARENT_NAME;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

            this.testOutputDir = testOutputDir;
        }
    
        /**
         * The variables to be used for replacing absolute paths in the iml entries.
         * For example, you might add a {@code GRADLE_USER_HOME} variable to point to the Gradle user home dir.
         * <p>
         * For example see docs for {@link IdeaModule}
         */
        public Map<String, File> getPathVariables() {
            return pathVariables;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

        - $<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>/caches/modules-2/files-2.1/com.google.j2objc/j2objc-annotations/1.1/976d8d30bebc251db406f2bdb3eb01962b5685b3/j2objc-annotations-1.1.jar (signature: GRADLE_USER_HOME/caches/modules-2/files-2.1/com.google.j2objc/j2objc-annotations/1.1/82e922e14f57d522de465fd144ec26eb7da44501/j2objc-annotations-1.1.jar.asc)
    
      GRADLE_USER_HOME = /home/jiraya/.gradle
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ==== Missing files specified with relative paths when running Checkstyle
    
    Gradle 7.5 consistently sets the current working directory for the Checkstyle task to `$<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>/workers`.
    This may cause problems with custom Checkstyle tasks or Checkstyle configuration files that assume a different directory for relative paths.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Change the encoding of daemon log files
    In previous versions of Gradle, the daemon log file, located at `$<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>/daemon/{gradleVersion}/`, was encoded with the default JVM encoding.
    To prevent clients that may use different default encoding from reading data incorrectly, this file is now always encoded with UTF-8.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top