Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for testForkEvery (0.35 sec)

  1. testing/performance/src/templates/project-with-source/gradle.properties

    testRunnerMemory=<% if (binding.hasVariable("testRunnerMemory")) { %>${binding.getVariable("testRunnerMemory")}<% } else { %>1g<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 742 bytes
    - Viewed (0)
  2. testing/performance/src/templates/project-with-source/build.gradle

            }
        <% } %>
    }
    
    String compilerMemory = getProperty('compilerMemory')
    String testRunnerMemory = getProperty('testRunnerMemory')
    int testForkEvery = getProperty('testForkEvery') as Integer
    
    tasks.withType(JavaCompile) {
        options.fork = true
        options.forkOptions.memoryInitialSize=compilerMemory
        options.forkOptions.memoryMaximumSize=compilerMemory
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/root-project/gradle.properties

    testRunnerMemory=<% if (binding.hasVariable("testRunnerMemory")) { %>${binding.getVariable("testRunnerMemory")}<% } else { %>1g<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 742 bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/TestProjectGeneratorConfiguration.groovy

        String compilerMemory
        String testRunnerMemory
        Map<String, String> systemProperties
        String[] featurePreviews
        boolean parallel
        int maxWorkers
        int maxParallelForks
        int testForkEvery
        boolean useTestNG
        Map<String, String> fileToChangeByScenario
    }
    
    @Builder(prefix = "with",
        builderStrategy = ExternalStrategy,
        forClass = TestProjectGeneratorConfiguration,
        excludes = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/GroovyDslFileContentGenerator.groovy

        protected String tasksConfiguration() {
            """
            String compilerMemory = getProperty('compilerMemory')
            String testRunnerMemory = getProperty('testRunnerMemory')
            int testForkEvery = getProperty('testForkEvery') as Integer
            List<String> javaCompileJvmArgs = findProperty('javaCompileJvmArgs')?.tokenize(';') ?: []
    
            tasks.withType(AbstractCompile).configureEach {
                options.fork = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/KotlinDslFileContentGenerator.groovy

            return ""
        }
    
    
        @Override
        protected String tasksConfiguration() {
            """
            val compilerMemory: String by project
            val testRunnerMemory: String by project
            val testForkEvery: String by project
    
            tasks.withType<JavaCompile> {
                options.isFork = true
                options.isIncremental = true
                options.forkOptions.memoryInitialSize = compilerMemory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

            org.gradle.parallel=${config.parallel}
            org.gradle.workers.max=${config.maxWorkers}
            compilerMemory=${config.compilerMemory}
            testRunnerMemory=${config.testRunnerMemory}
            testForkEvery=${config.testForkEvery}
            ${->
                config.systemProperties.entrySet().collect { "systemProp.${it.key}=${it.value}" }.join("\n")
            }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DeclarativeDslTestProjectGenerator.groovy

            org.gradle.parallel=${config.parallel}
            org.gradle.workers.max=${config.maxWorkers}
            compilerMemory=${config.compilerMemory}
            testRunnerMemory=${config.testRunnerMemory}
            testForkEvery=${config.testForkEvery}
            ${->
                config.systemProperties.entrySet().collect { "systemProp.${it.key}=${it.value}" }.join("\n")
            }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top