Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for TestGroup (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUError.h

    /*
     *  Contains CUnit error codes which can be used externally.
     *
     *  Aug 2001      Initial implementation.  (AK)
     *
     *  02/Oct/2001   Added proper Eror Codes. (AK)
     *
     *  13-Oct-2001   Added Error Codes for Duplicate TestGroup and Test. (AK)
     *
     *  03-Aug-2004   Converted error code macros to an enum, doxygen comments, moved
     *                error handing code here, changed file name from Errno.h, added
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top