Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getMacOS (0.23 sec)

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

         */
        TargetMachineBuilder getLinux();
    
        /**
         * Returns a {@link TargetMachineBuilder} for the macOS operating system family and the architecture of the current host.
         */
        TargetMachineBuilder getMacOS();
    
        /**
         * Returns a {@link TargetMachineBuilder} representing the specified operating system and the architecture of the current host.
         */
        TargetMachineBuilder os(String operatingSystemFamily);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultTargetMachineFactory.java

            return new TargetMachineImpl(objectFactory.named(OperatingSystemFamily.class, OperatingSystemFamily.LINUX), getDefaultArchitecture());
        }
    
        @Override
        public TargetMachineBuilder getMacOS() {
            return new TargetMachineImpl(objectFactory.named(OperatingSystemFamily.class, OperatingSystemFamily.MACOS), getDefaultArchitecture());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top