Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getTestId (0.14 sec)

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

        }
    
        @Override
        public void report(CrossVersionPerformanceResults results) {
            if (!testIds.add(results.getTestId())) {
                throw new IllegalArgumentException(String.format("Multiple performance test executions with id '%s' found.", results.getTestId()));
            }
            for (DataReporter<CrossVersionPerformanceResults> reporter : reporters) {
                reporter.report(results);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestSpec.java

     */
    
    package org.gradle.performance.fixture;
    
    public class PerformanceTestSpec {
        String testId;
        String testClassName;
        Integer runs;
        Integer warmUpRuns;
    
        public String getTestId() {
            return testId;
        }
    
        public void setTestId(String testId) {
            this.testId = testId;
        }
    
        public String getTestClassName() {
            return testClassName;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestResult.java

        }
    
        public String getTestClass() {
            return testClass;
        }
    
        public void setTestClass(String testClass) {
            this.testClass = testClass;
        }
    
        public String getTestId() {
            return testId;
        }
    
        public void setTestId(String testId) {
            this.testId = testId;
        }
    
        public String getTestProject() {
            return testProject;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/BaseModel.groovy

        String getVeryDeepMessage()
    }
    
    interface ShallowChildModel extends BaseModel {
        String getShallowMessage()
    }
    
    interface SideModel extends BaseModel {
    }
    
    interface CompositeModel {
        BaseModel getNested()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:42:16 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/BuildOperationNotificationsFixtureTest.groovy

            String output() { "output" }
        }
    
        static trait SimpleResult {
            String simpleResultMethod() { "simpleResultValue" }
        }
    
        static trait NestedResult {
            Nested getNested() { new Object().withTraits(Nested) }
        }
    
        static trait Nested {
            String getNestedValue() { "nestedValue" }
    
            String toString() { "Nested" }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ToolingApiPolymorphismCrossVersionTest.groovy

                    private final DefaultModel nested
                    DefaultCompositeModel(DefaultModel nested) { this.nested = nested }
                    BaseModel getNested() { nested }
                }
            """
        }
    
        def "supports model polymorphism"() {
            given:
            file("plugins/src/main/groovy/my/MyModelBuilder.groovy") << """
                package my
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:03:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top