Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 243 for operatingSystems (0.29 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/DefaultNativePlatform.java

            this.name = name;
            this.architecture = architecture;
            this.operatingSystem = operatingSystem;
        }
    
        public static DefaultOperatingSystem getCurrentOperatingSystem() {
            return new DefaultOperatingSystem(System.getProperty("os.name"), OperatingSystem.current());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/InstallExecutableIntegrationTest.groovy

    model {
        platforms {
            windows {
                operatingSystem "windows"
                architecture "x86"
            }
            linux {
                operatingSystem "linux"
                architecture "x86"
            }
        }
        toolChains {
            ${toolChain.id} {
                target('${installOS}') {
                    if (${!OperatingSystem.current().windows}) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/platform/internal/DefaultBuildPlatform.java

                return OperatingSystem.WINDOWS;
            } else if (org.gradle.internal.os.OperatingSystem.MAC_OS == operatingSystem) {
                return OperatingSystem.MAC_OS;
            } else  if (org.gradle.internal.os.OperatingSystem.SOLARIS == operatingSystem) {
                return OperatingSystem.SOLARIS;
            } else if (org.gradle.internal.os.OperatingSystem.FREE_BSD == operatingSystem) {
                return OperatingSystem.FREE_BSD;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 08:12:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-monolithic/common.gradle

                architecture "x86"
                operatingSystem "windows"
            }
    
            windows64 {
                architecture "x64"
                operatingSystem "windows"
            }
    
            macosx32 {
                architecture "x86"
                operatingSystem "osx"
            }
            macosx64 {
                architecture "x64"
                operatingSystem "osx"
            }
    
            linux64 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceExperimentOnOs.java

        private final PerformanceExperiment performanceExperiment;
        private final OperatingSystem operatingSystem;
    
        public PerformanceExperimentOnOs(PerformanceExperiment performanceExperiment, OperatingSystem operatingSystem) {
            this.performanceExperiment = performanceExperiment;
            this.operatingSystem = operatingSystem;
        }
    
        public PerformanceExperiment getPerformanceExperiment() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/LinuxInstallationSupplierTest.groovy

            given:
            def supplier = new LinuxInstallationSupplier(OperatingSystem.LINUX, nonExistent)
    
            when:
            def directories = supplier.get()
    
            then:
            directories.isEmpty()
        }
    
    
        def "supplies no installations for empty directory"() {
            given:
            def supplier = new LinuxInstallationSupplier(OperatingSystem.LINUX, emptyDir)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/testFixtures/groovy/org/gradle/api/reporting/components/NativeComponentReportOutputFormatter.groovy

                .replaceAll('(?m)(build/libs/.+/)lib(\\w+).dylib$') { it[1] + OperatingSystem.current().getSharedLibraryName(it[2]) }
                .replaceAll('(?m)(build/libs/.+/)lib(\\w+).a$') { it[1] + OperatingSystem.current().getStaticLibraryName(it[2]) }
                .replaceAll('(?m)(build/exe/.+/)(\\w+)$') { it[1] + OperatingSystem.current().getExecutableName(it[2]) }
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 25 01:52:21 UTC 2015
    - 1.9K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCrossCompilationIntegrationTest.groovy

    }
    """
    
            when:
            run 'mainExe'
    
            then:
            file(OperatingSystem.WINDOWS.getStaticLibraryName("build/libs/hello/static/hello")).file
            file(OperatingSystem.WINDOWS.getExecutableName("build/exe/main/main")).file
    
            when:
            run 'helloSharedLib'
    
            then:
            file(OperatingSystem.WINDOWS.getSharedLibraryName("build/libs/hello/shared/hello")).file
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppToolChainTest.groovy

        }
        final UcrtLocator ucrtLocator = Stub(UcrtLocator) {
            locateComponent(_) >> ucrtLookup
        }
    	final OperatingSystem operatingSystem = Stub(OperatingSystem) {
            isWindows() >> true
        }
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/NativePlatform.java

         */
        @Nested
        OperatingSystem getOperatingSystem();
    
        /**
         * Sets the operating system being targeted.
         * <p>
         * The operating system is provided as a string name, which is translated into one of the supported operating system types.
         * </p>
         * @see OperatingSystem Supported notations.
         */
        void operatingSystem(String name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top