Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for invocationCount (0.23 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenBuildExperimentSpec.groovy

            }
    
            MavenBuilder warmUpCount(Integer warmUpCount) {
                this.warmUpCount = warmUpCount
                this
            }
    
            MavenBuilder invocationCount(Integer invocationCount) {
                this.invocationCount = invocationCount
                this
            }
    
            MavenBuilder addBuildMutator(Function<InvocationSettings, BuildMutator> buildMutator) {
                this.buildMutators.add(buildMutator)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentSpec.groovy

            }
    
            GradleBuilder warmUpCount(Integer warmUpCount) {
                this.warmUpCount = warmUpCount
                this
            }
    
            GradleBuilder invocationCount(Integer invocationCount) {
                this.invocationCount = invocationCount
                this
            }
    
            GradleBuilder invocation(@DelegatesTo(GradleInvocationSpec.InvocationBuilder) Closure<?> conf) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/BuildExperimentSpec.groovy

        final Integer warmUpCount
        @Nullable
        final Integer invocationCount
        final ImmutableList<Function<InvocationSettings, BuildMutator>> buildMutators
    
        BuildExperimentSpec(String displayName,
                            String projectName,
                            File workingDirectory,
                            Integer warmUpCount,
                            Integer invocationCount,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/buildcache/LocalTaskOutputCacheCrossBuildPerformanceTest.groovy

                }
                warmUpCount = 2
                invocationCount = 4
            }
            runner.baseline {
                displayName("fully up-to-date")
            }
            runner.baseline {
                displayName("non-cached")
                invocation {
                    cleanTasks('clean')
                }
                warmUpCount = 2
                invocationCount = 4
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-plugin-performance/src/performanceTest/groovy/org/gradle/performance/BuildScanPluginPerformanceTest.groovy

            given:
            def jobArgs = ['--continue', '-Dscan.capture-task-input-files'] + scenarioArgs
    
            runner.baseline {
                warmUpCount WARMUPS
                invocationCount INVOCATIONS
                displayName(WITHOUT_PLUGIN_LABEL)
                invocation {
                    // Increase client VM heap memory because of a huge amount of output events
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 09:04:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/java/ParallelBuildPerformanceTest.groovy

            results
        }
    
        @Override
        protected void defaultSpec(GradleBuildExperimentSpec.GradleBuilder builder) {
            super.defaultSpec(builder)
            builder.warmUpCount = 2
            builder.invocationCount = 3
            builder.invocation {
                tasksToRun("clean", "assemble")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/TaskAvoidancePerformanceTest.groovy

        }
    
        @Override
        protected void defaultSpec(GradleBuildExperimentSpec.GradleBuilder builder) {
            super.defaultSpec(builder)
            builder
                .warmUpCount(5)
                .invocationCount(10)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleVsMavenPerformanceTestRunner.groovy

            baseline {
                warmUpCount = warmUpRuns
                invocationCount = runs
                projectName(testProject).displayName("Gradle $commonBaseDisplayName").invocation {
                    tasksToRun(gradleTasks).jvmArgs(jvmOpts.collect { it.toString() })
                }
            }
            mavenBuildSpec {
                warmUpCount = warmUpRuns
                invocationCount = runs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInvocationTest.groovy

    class ArtifactTransformInvocationTest extends AbstractProjectBuilderSpec {
        public static final AtomicInteger INVOCATION_COUNT = new AtomicInteger()
        public static final String SELECTED_PATH = "selected.txt"
    
        def artifactType = Attribute.of('artifactType', String)
    
        def setup() {
            INVOCATION_COUNT.set(0)
        }
    
        def "input artifact selection is restored when using the in-memory cache"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top