Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getTeamCityBuildId (0.43 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/DefaultPerformanceExecutionDataProvider.java

            List<String> teamcityBuildIds = teamCityExecutionsOfSameScenario
                .stream()
                .map(PerformanceTestExecutionResult::getTeamCityBuildId)
                .filter(StringUtils::isNotBlank)
                .collect(toList());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossBuildPerformanceTestHistory.java

                return String.valueOf(Math.abs(getVcsCommits() != null ? getVcsCommits().hashCode() : hashCode()));
            }
    
            @Override
            public String getTeamCityBuildId() {
                return results.getTeamCityBuildId();
            }
    
            @Override
            public String getVersionUnderTest() {
                return results.getVersionUnderTest();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceTestHistory.java

                return String.valueOf(Math.abs(getVcsCommits() != null ? getVcsCommits().hashCode() : hashCode()));
            }
    
            @Override
            public String getTeamCityBuildId() {
                return result.getTeamCityBuildId();
            }
    
            @Override
            public String getVersionUnderTest() {
                return result.getVersionUnderTest();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestExecution.java

     */
    public interface PerformanceTestExecution {
        /**
         * Returns a unique identifier for this execution, suitable to be used as HTML id
         */
        String getExecutionId();
    
        String getTeamCityBuildId();
    
        String getVersionUnderTest();
        String getVcsBranch();
        long getStartTime();
        long getEndTime();
    
        List<String> getVcsCommits();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestResult.java

        }
    
        public String getTestProject() {
            return testProject;
        }
    
        public void setTestProject(String testProject) {
            this.testProject = testProject;
        }
    
        public String getTeamCityBuildId() {
            return teamCityBuildId;
        }
    
        public void setTeamCityBuildId(String teamCityBuildId) {
            this.teamCityBuildId = teamCityBuildId;
        }
    
        public List<String> getPreviousTestIds() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/PerformanceExecutionDataProvider.java

                int size = nonEmptyExecutions.size();
                return new PerformanceReportScenarioHistoryExecution(
                    performanceTestExecution.getStartTime(),
                    performanceTestExecution.getTeamCityBuildId(),
                    getCommit(performanceTestExecution),
                    nonEmptyExecutions.get(size - 2),
                    nonEmptyExecutions.get(size - 1)
                );
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top