Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for getOperatingSystem (0.27 sec)

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

    public interface NativePlatformInternal extends NativePlatform {
        @Override
        ArchitectureInternal getArchitecture();
    
        @Override
        OperatingSystemInternal getOperatingSystem();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 919 bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/plugins/NativeBinariesTestPluginTest.groovy

                            it.installDirectory = new File(".")
                            it.executableFile = new File("exe")
                            it.targetPlatform = Mock(NativePlatform) {
                                getOperatingSystem() >> Mock(OperatingSystem) {
                                    getName() >> "test"
                                }
                            }
                        }
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jansi/JansiLibraryFactory.java

        void setJansiRuntimeResolver(JansiRuntimeResolver jansiRuntimeResolver) {
            this.jansiRuntimeResolver = jansiRuntimeResolver;
        }
    
        public JansiLibrary create() {
            String os = jansiRuntimeResolver.getOperatingSystem();
            JansiOperatingSystemSupport osSupport = JansiOperatingSystemSupport.forIdentifier(os);
    
            if (osSupport == null) {
                return null;
            }
    
            switch (osSupport) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceExperimentOnOs.java

            this.operatingSystem = operatingSystem;
        }
    
        public PerformanceExperiment getPerformanceExperiment() {
            return performanceExperiment;
        }
    
        public OperatingSystem getOperatingSystem() {
            return operatingSystem;
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/NativeToolChainInternal.java

            public static String identify(NativeToolChainInternal toolChain, NativePlatformInternal platform) {
                return toolChain.getOutputType() + ":" + platform.getArchitecture().getName() + ":" + platform.getOperatingSystem().getName();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/DefaultNativeToolChainRegistry.java

            }
    
            @Override
            public PlatformToolProvider select(NativePlatformInternal targetPlatform) {
                return new UnavailablePlatformToolProvider(targetPlatform.getOperatingSystem(), failure);
            }
    
            @Override
            public PlatformToolProvider select(NativeLanguage sourceLanguage, NativePlatformInternal targetMachine) {
                return select(targetMachine);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/NativePlatform.java

        /**
         * The operating system being targeted.
         * Defaults to the default operating system targeted by the tool chain (normally the current operating system).
         */
        @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>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/objectivec/tasks/ObjectiveCPreCompiledHeaderCompileTest.groovy

            then:
            _ * toolChain.outputType >> "c"
            platform.getName() >> "testPlatform"
            platform.getArchitecture() >> Mock(ArchitectureInternal) { getName() >> "arch" }
            platform.getOperatingSystem() >> Mock(OperatingSystemInternal) { getName() >> "os" }
            1 * toolChain.select(platform) >> platformToolChain
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppInstall.java

            // TODO:MPUT - ARM also if the target OS is Windows RT or Windows Phone/Mobile/CE
            // TODO:ADAM - IA64 only if the target OS is Windows 2008 or earlier
            if (!targetPlatform.getOperatingSystem().isWindows()) {
                return null;
            }
            return platforms.get(getPlatformArchitecture(targetPlatform));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestExecution.java

        List<String> getVcsCommits();
    
        /**
         * Returns the results of the scenarios executed as part of this performance test.
         */
        List<MeasuredOperationList> getScenarios();
    
        String getOperatingSystem();
    
        String getHost();
    
        String getJvm();
    
        /**
         * The test project name. Null if not known or not constant for all experiments
         */
        @Nullable
        String getTestProject();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top