Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for beforeBuild (0.1 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

                'testDebugUnitTest',
                'connectedDebugAndroidTest',
                "-Pandroid.injected.invoked.from.ide=$ide"
            )
    
            when: 'first build'
            SantaTrackerConfigurationCacheWorkaround.beforeBuild(runner.projectDir, IntegrationTestBuildContext.INSTANCE.gradleUserHomeDir)
            def result = runner.build()
    
            then:
            result.task(':app:compileDebugJavaWithJavac').outcome == TaskOutcome.SUCCESS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentRunner.java

            public DelayBeforeBuildMutator(long delay, TimeUnit unit) {
                this.unit = unit;
                this.delay = delay;
            }
    
            @Override
            public void beforeBuild(BuildContext context) {
                try {
                    unit.sleep(delay);
                } catch (InterruptedException e) {
                    throw new RuntimeException(e);
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top