Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for suppressCleanupErrors (1.03 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/AbstractTestDirectoryProvider.java

        private boolean suppressCleanupErrors = false;
    
        protected AbstractTestDirectoryProvider(TestFile root, Class<?> testClass) {
            this.root = root;
            this.className = shortenPath(testClass.getSimpleName(), 16);
        }
    
        @Override
        public void suppressCleanup() {
            cleanup = false;
        }
    
        @Override
        public void suppressCleanupErrors() {
            suppressCleanupErrors = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/InProcessGroovyCompilerIntegrationTest.groovy

    @IntegrationTestTimeout(300)
    class InProcessGroovyCompilerIntegrationTest extends AbstractApiGroovyCompilerIntegrationSpec {
    
        def setup() {
            if (groovyVersionNumber < "2.0") {
                testDirectoryProvider.suppressCleanupErrors()
            }
        }
    
        String compilerConfiguration() {
    '''
        tasks.withType(GroovyCompile) {
            groovyOptions.fork = false
        }
    '''
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestDirectoryProvider.java

        /**
         * The directory to use, guaranteed to exist.
         *
         * @return The directory to use, guaranteed to exist.
         */
        TestFile getTestDirectory();
    
        void suppressCleanup();
    
        void suppressCleanupErrors();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/fixtures/PluginUnderTest.groovy

            @Override
            TestFile getTestDirectory() {
                return projectDir
            }
    
            @Override
            void suppressCleanup() {
    
            }
    
            @Override
            void suppressCleanupErrors() {
    
            }
        }
    
        private final int num
        private final TestFile projectDir
        private List<File> implClasspath = []
    
        PluginUnderTest(TestFile projectDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top