Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for user_home_2 (0.17 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/mvnsettings/DefaultLocalMavenRepositoryLocatorTest.groovy

            when:
            File userHome2 = tmpDir.file("user_home_2")
            1 * mavenFileLocations.getUserMavenDir() >> new File(userHome2, ".m2")
            then:
            locator.localMavenRepository == new File(userHome2, ".m2/repository")
        }
    
        def "returns value of system property if it is specified"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/resources/org/gradle/plugins/ide/idea/model/customProject.xml

        <mapping directory="" vcs="Git" />
      </component>
      <component name="libraryTable">
      <library name="scala-compiler-2.10.0">
        <CLASSES>
          <root url="jar://$USER_HOME$/lib1.jar!/" />
          <root url="jar://$USER_HOME$/lib2.jar!/" />
          <root url="jar://$USER_HOME$/lib3.jar!/" />
        </CLASSES>
        <JAVADOC />
        <SOURCES />
      </library>
    </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/ProjectLibraryTest.groovy

        <CLASSES>
          <root url="jar://\$USER_HOME\$/class/one.jar!/"/>
          <root url="jar://\$USER_HOME\$/class/two.jar!/"/>
        </CLASSES>
        <JAVADOC>
          <root url="jar://\$USER_HOME\$/javadoc/one.jar!/"/>
          <root url="jar://\$USER_HOME\$/javadoc/two.jar!/"/>
        </JAVADOC>
        <SOURCES>
          <root url="jar://\$USER_HOME\$/source/one.jar!/"/>
          <root url="jar://\$USER_HOME\$/source/two.jar!/"/>
        </SOURCES>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/lang/SystemUtilTest.java

            System.out.println(SystemUtil.OS_NAME);
            System.out.println(SystemUtil.JAVA_IO_TMPDIR);
            System.out.println(SystemUtil.USER_DIR);
            System.out.println(SystemUtil.USER_HOME);
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/SystemUtil.java

         * <code>user.dir</code> システムプロパティ。
         */
        public static final String USER_DIR = System.getProperty("user.dir");
    
        /**
         * <code>user.home</code> システムプロパティ。
         */
        public static final String USER_HOME = System.getProperty("user.home");
    
        public static long currentTimeMillis() {
            // TODO provider
            return System.currentTimeMillis();
        }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    While the Gradle Wrapper is local to the root project, the Gradle executable is found in the `GRADLE_USER_HOME`.
    
    The `GRADLE_USER_HOME`, which defaults to `USER_HOME/.gradle`, is also where Gradle stores its global configuration properties, initialization scripts, caches, log files and more.
    
    == Step 3. Review the Gradle Files
    
    The `settings.gradle(.kts)` file has two interesting lines:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    TIP: publishToMavenLocal` does not create checksum files in `$USER_HOME/.m2/repository`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        public static final String MULTIMODULE_PROJECT_DIRECTORY = "maven.multiModuleProjectDirectory";
    
        public static final String USER_HOME = System.getProperty("user.home");
    
        public static final File USER_MAVEN_CONFIGURATION_HOME = new File(USER_HOME, ".m2");
    
        public static final File DEFAULT_USER_TOOLCHAINS_FILE = new File(USER_MAVEN_CONFIGURATION_HOME, "toolchains.xml");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    `<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>`::
    Specifies the `GRADLE_USER_HOME` directory for Gradle to store its global configuration properties, initialization scripts, caches, log files and more.
    +
    Defaults to `USER_HOME/.gradle` if not set.
    
    `JAVA_HOME`::
    Specifies the JDK installation directory to use for the client VM.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top