Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 945 for homes (0.06 sec)

  1. .github/workflows/people.yml

          - uses: actions/checkout@v4
          # Ref: https://github.com/actions/runner/issues/2033
          - name: Fix git safe.directory in container
            run: mkdir -p /home/runner/work/_temp/_github_home && printf "[safe]\n\tdirectory = /github/workspace" > /home/runner/work/_temp/_github_home/.gitconfig
          # Allow debugging with tmate
          - name: Setup tmate session
            uses: mxschmitt/action-tmate@v3
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 07:19:41 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

            }
    
            if (gradleUserHomeDir != context.gradleUserHomeDir) {
                // When using an isolated user home, first initialise the Gradle instance using the default user home dir
                // This sets some static state that uses files from the user home dir, such as DLLs
                connector.useGradleUserHomeDir(new File(context.gradleUserHomeDir.path))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

        /**
         * Sets the java home dir. Setting to null requests that the executer use the real default java home dir rather than the default used for testing.
         */
        GradleExecuter withJavaHome(String userHomeDir);
    
        /**
         * Sets the java home dir. Setting to null requests that the executer use the real default java home dir rather than the default used for testing.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/PropertiesToDaemonParametersConverterTest.groovy

        def "shows nice message for dummy java home"() {
            when:
            converter.convert([(DaemonBuildOptions.JavaHomeOption.GRADLE_PROPERTY): "/invalid/path"], params)
    
            then:
            def ex = thrown(IllegalArgumentException)
            ex.message.contains 'org.gradle.java.home'
            ex.message.contains '/invalid/path'
        }
    
        def "shows nice message for invalid java home"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/java/InstalledJdk.java

         * The version of the Java installation.
         *
         * @return The Java version. Never returns {@code null}.
         */
        JavaVersion getJavaVersion();
    
        /**
         * The home directory of the Java installation.
         *
         * @return The home directory. Never returns {@code null}.
         * */
        File getJavaHome();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/providers/implicitTaskInputFileDependency/tests/implicitTaskInputFileDependencyKotlin.out

    > Task :producer
    Wrote 'Hello, World!' to /home/user/gradle/samples/kotlin/output/file.txt
    
    > Task :consumer
    Read 'Hello, World!' from /home/user/gradle/samples/kotlin/output/file.txt
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 240 bytes
    - Viewed (0)
  7. maven-core/src/site/apt/configuration-management.apt

     not sure the unified source directory structure addresses this issue.
    
     Properties
    
     maven.user.config.dir (system,default=${user.home}/.m2)
     maven.home            (system,user,default=${user.home}/m2)
     maven.repo.local      (system,user,default=${maven.user.config.dir}/repository)
    
     We need to define what happens in the when things are not setup correctly
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/java/JavaRuntime.java

         *
         * @return The Java version. Never returns {@code null}.
         */
        JavaVersion getJavaVersion();
    
        /**
         * The home directory of the Java runtime installation.
         *
         * @return The home directory. Never returns {@code null}.
         * */
        File getJavaHome();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. .devcontainer/devcontainer.json

      "privileged": true,
      "remoteEnv": {
        "USE_GKE_GCLOUD_AUTH_PLUGIN": "True",
        "BUILD_WITH_CONTAINER": "0",
        "CARGO_HOME": "/home/.cargo",
        "RUSTUP_HOME": "/home/.rustup"
      },
      "features": {
        "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
        "ghcr.io/mpriscella/features/kind:1": {}
      },
      "customizations": {
        "vscode": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 879 bytes
    - Viewed (0)
  10. pkg/credentialprovider/plugin/plugin_test.go

    		{
    			name:          "positive append system env vars",
    			systemEnvVars: []string{"HOME=/home/foo", "PATH=/usr/bin"},
    			execPlugin: &execPlugin{
    				envVars: []kubeletconfig.ExecEnvVar{
    					{
    						Name:  "SUPER_SECRET_STRONG_ACCESS_KEY",
    						Value: "123456789",
    					},
    				},
    			},
    			expectedEnvVars: []string{
    				"HOME=/home/foo",
    				"PATH=/usr/bin",
    				"SUPER_SECRET_STRONG_ACCESS_KEY=123456789",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
Back to top