Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for OperatingSystem$Solaris (0.22 sec)

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

            when:
            System.properties['os.name'] = 'SunOS'
    
            then:
            OperatingSystem.current() instanceof OperatingSystem.Solaris
    
            when:
            System.properties['os.name'] = 'solaris'
    
            then:
            OperatingSystem.current() instanceof OperatingSystem.Solaris
        }
    
        def "uses os.name property to determine if linux"() {
            System.properties['os.name'] = 'Linux'
    
    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/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            where:
            type                           | config
            "unavailable architecture"     | "architecture 'sparc'"
            "unavailable operating system" | "operatingSystem 'solaris'"
            "unknown architecture"         | "architecture 'unknown'"
            "unknown operating system"     | "operatingSystem 'unknown'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top