Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for getOperatingSystem (0.46 sec)

  1. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jansi/DefaultJansiRuntimeResolver.java

     *
     * @see <a href="https://github.com/fusesource/hawtjni">HawtJNI</a>
     */
    public class DefaultJansiRuntimeResolver implements JansiRuntimeResolver {
    
        @Override
        public String getOperatingSystem() {
            String name = System.getProperty("os.name").toLowerCase(Locale.ROOT).trim();
    
            if (name.startsWith("linux")) {
                return LINUX.getIdentifier();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/PlatformInOutputNormalizer.groovy

     */
    class PlatformInOutputNormalizer implements OutputNormalizer {
        def static internalOs = OperatingSystem.current()
        def static os = DefaultBuildPlatform.getOperatingSystem(internalOs)
        def static arch = getArchitectureString()
    
        private static getArchitectureString() {
            def archProperty = System.getProperty("os.arch")
            if (archProperty == "amd64") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossBuildPerformanceTestHistory.java

                return builds.stream().map(specification -> results.buildResult(specification.getDisplayName())).collect(Collectors.toList());
            }
    
            @Override
            public String getOperatingSystem() {
                return results.getOperatingSystem();
            }
    
            @Override
            public String getHost() {
                return results.getHost();
            }
    
            @Override
            public String getJvm() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceTestHistory.java

                return getKnownVersions().stream().map(version -> result.version(version).getResults()).collect(Collectors.toList());
            }
    
            @Override
            public String getOperatingSystem() {
                return result.getOperatingSystem();
            }
    
            @Override
            public String getHost() {
                return result.getHost();
            }
    
            @Override
            public String getJvm() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestRuntimesGenerator.java

                                it -> it.getKey().getPerformanceExperiment().getTestProject(),
                                LinkedHashMap::new,
                                toMap(it -> it.getKey().getOperatingSystem(), Map.Entry::getValue)
                            ));
                        return new PerformanceScenarioDurations(
                            scenario.getClassName() + "." + scenario.getTestName(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestResult.java

        public List<String> getVcsCommits() {
            return vcsCommits;
        }
    
        public void setVcsCommits(List<String> vcsCommits) {
            this.vcsCommits = vcsCommits;
        }
    
        public String getOperatingSystem() {
            return operatingSystem;
        }
    
        public void setOperatingSystem(String operatingSystem) {
            this.operatingSystem = operatingSystem;
        }
    
        public String getJvm() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                statement.setTimestamp(5, new Timestamp(results.getEndTime()));
                statement.setString(6, results.getVersionUnderTest());
                statement.setString(7, results.getOperatingSystem());
                statement.setString(8, results.getJvm());
                statement.setString(9, results.getVcsBranch());
                statement.setString(10, Joiner.on(",").join(results.getVcsCommits()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

                    end();
    
                    renderSamplesForExperiment(results.getScenarios());
                    textCell(results.getVersionUnderTest());
                    textCell(results.getOperatingSystem());
                    textCell(results.getHost());
                    textCell(results.getJvm());
                    textCell(results.getTestProject());
                    textCell(results.getTasks());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top