Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getCurrentHostOperatingSystemFamilyDsl (0.29 sec)

  1. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/AbstractNativeLanguageComponentIntegrationTest.groovy

        protected abstract SourceElement getComponentUnderTest()
    
        protected abstract String getTaskNameToAssembleDevelopmentBinary()
    
        protected String getCurrentHostOperatingSystemFamilyDsl() {
            String osFamily = DefaultNativePlatform.getCurrentOperatingSystem().toFamilyName()
            if (osFamily == OperatingSystemFamily.MACOS) {
                return "macOS"
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/AbstractVisualStudioProjectIntegrationTest.groovy

            if (toolChain.visualCpp) {
                return ""
            } else {
                return configurationName.startsWith("release") ? "stripped/" : ""
            }
        }
    
        protected String getCurrentHostOperatingSystemFamilyDsl() {
            String osFamily = DefaultNativePlatform.getCurrentOperatingSystem().toFamilyName()
            if (osFamily == OperatingSystemFamily.MACOS) {
                return "macOS"
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/fixtures/AbstractXcodeIntegrationSpec.groovy

            def includePathElements = Splitter.on('"').splitToList(String.valueOf(includePath))
            return includePathElements.grep({ !it.trim().empty }).collect { new TestFile(it) }
        }
    
        protected String getCurrentHostOperatingSystemFamilyDsl() {
            String osFamily = DefaultNativePlatform.getCurrentOperatingSystem().toFamilyName()
            if (osFamily == OperatingSystemFamily.MACOS) {
                return "macOS"
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftComponentIntegrationTest.groovy

            failure.assertHasDescription("A problem occurred configuring root project '${testDirectory.name}'.")
            failure.assertHasCause("A target machine needs to be specified")
        }
    
        protected String getCurrentHostOperatingSystemFamilyDsl() {
            String osFamily = DefaultNativePlatform.getCurrentOperatingSystem().toFamilyName()
            if (osFamily == OperatingSystemFamily.MACOS) {
                return "macOS"
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
Back to top