Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GroupsBean (0.18 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestScenarioDefinition.groovy

             * groups : [{"testProject":"largeJavaMultiProject","coverage":{"test":["linux","windows"]}}]
             */
            String testId
            List<GroupsBean> groups
    
            PerformanceTestsBean() {
            }
    
            PerformanceTestsBean(String testId, List<GroupsBean> groups) {
                this.testId = testId
                this.groups = groups
            }
    
            @Override
            String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/annotations/RunFor.groovy

            assert scenario.testProjects().length != 0 && scenario.operatingSystems().length != 0: "Invalid scenario: $scenario"
        }
    
        private static GroupsBean createGroup(Scenario scenario, String testProject) {
            return new GroupsBean(
                testProject: testProject,
                coverage: [(scenario.type().toString().toLowerCase()): scenario.operatingSystems().collect { it.coverageName }] as TreeMap,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top