Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OperatingSystem$MacOs (0.21 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/os/OperatingSystemTest.groovy

            then:
            OperatingSystem.current() instanceof OperatingSystem.MacOs
    
            when:
            System.properties['os.name'] = 'Darwin'
    
            then:
            OperatingSystem.current() instanceof OperatingSystem.MacOs
    
            when:
            System.properties['os.name'] = 'osx'
    
            then:
            OperatingSystem.current() instanceof OperatingSystem.MacOs
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            then:
            jvm.toString().contains('dummyFolder')
        }
    
        def "locates MAC OS JDK9 install when java.home points to an EAP JDK 1.9 installation"() {
            given:
            OperatingSystem macOs = new OperatingSystem.MacOs()
            TestFile software = tmpDir.createDir('software')
            //http://openjdk.java.net/jeps/220
            software.create {
                Contents {
                    Home {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.os.OperatingSystem$Linux> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (OperatingSystem.java:0)
    Class <org.gradle.internal.os.OperatingSystem$MacOs> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (OperatingSystem.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top