Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for TestGroup (1.13 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossBuildPerformanceResults.groovy

     */
    
    package org.gradle.performance.results
    
    import groovy.transform.CompileStatic
    
    @CompileStatic
    class CrossBuildPerformanceResults extends PerformanceTestResult {
        String testGroup
    
        private final Map<BuildDisplayInfo, MeasuredOperationList> buildResults = new LinkedHashMap<>()
    
        @Override
        String toString() {
            return testId
        }
    
    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/performance/src/performanceTest/groovy/org/gradle/performance/experiment/nativeplatform/NativeParallelPerformanceTest.groovy

    )
    class NativeParallelPerformanceTest extends AbstractCrossBuildPerformanceTest {
    
        def "clean assemble with parallel workers"() {
            given:
            runner.testGroup = 'parallel builds'
            runner.buildSpec {
                displayName("parallel")
                invocation {
                    tasksToRun("clean", "assemble")
                }
            }
            runner.baseline {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/ResultSpecification.groovy

            def results = new CrossBuildPerformanceResults(
                    testClass: "org.gradle.performance.MyCrossBuildPerformanceTest",
                    testId: "test-id",
                    testGroup: "test-group",
                    testProject: "test-project",
                    jvm: "java 7",
                    versionUnderTest: "Gradle 1.0",
                    operatingSystem: "windows",
                    host: "me",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/java/ParallelBuildPerformanceTest.groovy

    )
    class ParallelBuildPerformanceTest extends AbstractCrossBuildPerformanceTest {
    
        def "clean assemble with 4 parallel workers"() {
            given:
            runner.testGroup = "parallel builds"
            runner.buildSpec {
                displayName("parallel")
                invocation {
                    args("-Dorg.gradle.parallel=true", "--max-workers=4")
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/nativeplatform/NativePreCompiledHeaderPerformanceTest.groovy

    )
    class NativePreCompiledHeaderPerformanceTest extends AbstractCrossBuildPerformanceTest {
    
        def "clean assemble with precompiled headers" () {
            given:
            runner.testGroup = 'pre-compiled header builds'
            runner.buildSpec {
                displayName("Using PCH")
                invocation {
                    args("-PusePCH")
                    tasksToRun("clean", "assemble")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/TaskAvoidancePerformanceTest.groovy

    class TaskAvoidancePerformanceTest extends AbstractCrossBuildPerformanceTest {
    
        def "help with lazy and eager tasks"() {
            given:
            runner.testGroup = "configuration avoidance"
            runner.buildSpec {
                displayName("lazy")
                invocation {
                    tasksToRun("help")
                }
            }
            runner.baseline {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops_test.cc

        mlir::RegisterCommonToolingDialects(registry_);
        context_.appendDialectRegistry(registry_);
        context_.loadAllAvailableDialects();
    
        env_ = Env::Default();
        test_group_name_ = "TestGroup";
        test_dir_ = testing::TmpDir();
        setenv("TF_DUMP_GRAPH_PREFIX", test_dir_.c_str(), /*overwrite=*/1);
      }
    
      absl::Status CreateMlirModule(std::string mlir_module_filename) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:44:37 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/buildcache/LocalTaskOutputCacheCrossBuildPerformanceTest.groovy

            given:
            runner.addBuildMutator { invocationSettings ->
                new ClearBuildCacheMutator(invocationSettings.gradleUserHome, AbstractCleanupMutator.CleanupSchedule.SCENARIO)
            }
            runner.testGroup = "task output cache"
            runner.buildSpec {
                displayName("always-miss pull-only cache")
                invocation {
                    cleanTasks("clean")
                    args(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/logging_hooks_test.cc

      LoggingHooksTest() {
        mlir::RegisterCommonToolingDialects(registry_);
        context_.appendDialectRegistry(registry_);
        context_.loadAllAvailableDialects();
        env_ = Env::Default();
    
        test_group_name_ = "TestGroup";
        test_dir_ = testing::TmpDir();
        setenv("TF_DUMP_GRAPH_PREFIX", test_dir_.c_str(), 1);
      }
    
      absl::Status CreateMlirModule(std::string mlir_module_filename) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractCrossBuildPerformanceTestRunner.groovy

        final GradleDistribution gradleDistribution
        final BuildExperimentRunner experimentRunner
        final Clock clock = Time.clock()
    
        String testClassName
        String testId
        String testGroup
        String testProject
        List<BuildExperimentSpec> specs = []
        boolean measureGarbageCollection = true
    
        final DataReporter<R> reporter
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top