Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for home_1 (0.43 sec)

  1. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectoryTest.groovy

        def "handles non-existing jdk directory when listing java homes"() {
            given:
            def jdkCacheDirectory = new DefaultJdkCacheDirectory(newHomeDirProvider(), Mock(FileOperations), mockLockManager(), mockDetector(), tmpFileProvider())
    
    
            when:
            def homes = jdkCacheDirectory.listJavaHomes()
    
            then:
            homes.isEmpty()
        }
    
        def "list java homes on MacOs"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

        }
    
        /**
         * Creates JVM instance for given java home. Attempts to validate if provided javaHome is a valid jdk or jre location.
         * This method is intended to be used for user supplied java homes.
         *
         * @param javaHome - location of your jdk or jre (jdk is safer), cannot be null
         * @return jvm for given java home
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. pkg/controller/daemon/util/daemonset_util_test.go

    									{
    										Key:      v1.LabelHostname,
    										Operator: v1.NodeSelectorOpIn,
    										Values:   []string{"host_1"},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    			hostname: "host_1",
    			expected: &v1.Affinity{
    				NodeAffinity: &v1.NodeAffinity{
    					RequiredDuringSchedulingIgnoredDuringExecution: &v1.NodeSelector{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    xen-1.1.1.jar:/home/tcagent1/agent/lib/duplicator-util.jar:/home/tcagent1/agent/lib/nuget-utils.jar:/home/tcagent1/agent/lib/annotations.jar:/home/tcagent1/agent/lib/serviceMessages.jar:/home/tcagent1/agent/lib/util.jar:/home/tcagent1/agent/lib/patches-impl.jar:/home/tcagent1/agent/lib/xml-rpc-wrapper.jar:/home/tcagent1/agent/lib/inspections-util.jar:/home/tcagent1/agent/lib/common.jar:/home/tcagent1/agent/lib/messages.jar:/home/tcagent1/agent/lib/commons-logging.jar:/home/tcagent1/agent/lib/com...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

            [:]
        }
    
        private static Map<String, String> invalidVersion() {
            // emulates a valid binary that would not return the correct version number
            ['java.home': "java-home",
             'java.version': "bad luck",
             'java.vendor': "Oracle Corporation",
             'os.arch': "amd64",
             'java.vm.name': "OpenJDK 64-Bit Server VM",
             'java.vm.version': "25.40-b25",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    ====
    
    As another example, you can configure the _Java Home_ for a task as follows:
    
    ====
    include::sample[dir="snippets/java/toolchain-config-task/kotlin/",files="build.gradle.kts[tags=java-home]"]
    include::sample[dir="snippets/java/toolchain-config-task/groovy/",files="build.gradle[tags=java-home]"]
    ====
    
    If you require a path to a specific tool such as Java compiler, you can obtain it as follows:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            }
    
            then:
            home.file(theOs.getExecutableName("jre/bin/javadoc")).absolutePath ==
                Jvm.forHome(home.file("jre")).getExecutable("javadoc").absolutePath
        }
    
        def "finds tools.jar if java home supplied"() {
            System.properties['java.vm.vendor'] = 'Sun'
    
            when:
            def home = tmpDir.createDir("home")
            home.create {
                jdk {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            // file
            assertUrlLink("file:/home/taro/test.txt", //
                    "file://home/taro/test.txt");
            assertUrlLink("file:/home/taro/あ.txt", //
                    "file://home/taro/あ.txt");
            assertUrlLink("file:/home/taro/%E3%81%82.txt", //
                    "file://home/taro/あ.txt");
    
            // smb->file
            assertUrlLink("smb:/home/taro/test.txt", //
                    "file://home/taro/test.txt");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/FileHierarchySetTest.groovy

            ['/var', '/home']              | '/usr'               | false
            ['/var/log', '/var/home', '/'] | '/usr'               | true
            ['/', '/home']                 | '/'                  | true
            ['/home', '/']                 | '/'                  | true
            ['/home', '/']                 | '/home'              | true
            ['/', '/home']                 | '/home'              | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    This effectively couples the configuration of cache cleanup to the Gradle User Home those settings apply to and limits the possibility of different conflicting settings from different projects being applied to the same directory.
    
    [[dir:gradle_user_home:multi_version_cache_cleanup]]
    ==== Multiple versions of Gradle sharing a Gradle User Home
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top