Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getArchitectureName (0.36 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/XcodeBinary.java

            return buildConfigurationName;
        }
    
        public Provider<? extends FileSystemLocation> getOutputFile() {
            return outputFile;
        }
    
        public String getArchitectureName() {
            return architectureName;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/DefaultNativePlatform.java

        }
    
        public static ArchitectureInternal getCurrentArchitecture() {
            String architectureName;
            try {
                architectureName = NativeServices.getInstance().get(SystemInfo.class).getArchitectureName();
            } catch (NativeIntegrationUnavailableException e) {
                architectureName = System.getProperty("os.arch");
            }
            return Architectures.forInput(architectureName);
        }
    
    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