Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 393 for Runner (0.21 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/RealWorldNativePluginPerformanceTest.groovy

        def setup() {
            runner.minimumBaseVersion = "4.0"
        }
    
        def "build with #parallelWorkers parallel workers"() {
            given:
            runner.tasksToRun = ['build']
            runner.warmUpRuns = 5
            runner.runs = 10
    
            runner.args += ["-Dorg.gradle.parallel=${parallelWorkers ? true : false}"]
            if (parallelWorkers) {
                runner.args += ["--max-workers=$parallelWorkers".toString()]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIDETaskExecutionPerformanceTest.groovy

            }
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressedWithHighRelativeMedianDifference()
        }
    
        private setupRunner() {
            def iterations = determineIterations()
            runner.warmUpRuns = iterations
            runner.runs = iterations
        }
    
        private determineIterations() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaConfigurationCachePerformanceTest.groovy

            given:
            runner.tasksToRun = ["assemble"]
            // use the deprecated property so it works with previous versions
            runner.args = ["-D${ConfigurationCacheOption.DEPRECATED_PROPERTY_NAME}=true"]
    
            and:
            runner.useDaemon = daemon == hot
            runner.addBuildMutator { configurationCacheInvocationListenerFor(it, action, stateDirectory) }
            runner.warmUpRuns = daemon == hot ? 20 : 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/SwiftBuildPerformanceTest.groovy

        def setup() {
            runner.minimumBaseVersion = '4.6'
        }
    
        def "up-to-date assemble (swift)"() {
            given:
            runner.tasksToRun = ["assemble"]
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    
        def "incremental compile"() {
            given:
            runner.tasksToRun = ["assemble"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/suggest/settings/ElevateWordSettingsTest.java

                    .pluginTypes("org.codelibs.opensearch.extension.ExtensionPlugin"));
            runner.ensureYellow();
        }
    
        @AfterClass
        public static void afterClass() throws Exception {
            runner.close();
            runner.clean();
        }
    
        @Before
        public void before() throws Exception {
            try {
                runner.admin().indices().prepareDelete("_all").execute().actionGet();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/suggest/settings/BadWordSettingsTest.java

                    .pluginTypes("org.codelibs.opensearch.extension.ExtensionPlugin"));
            runner.ensureYellow();
        }
    
        @AfterClass
        public static void afterClass() throws Exception {
            runner.close();
            runner.clean();
        }
    
        @Before
        public void before() throws Exception {
            try {
                runner.admin().indices().prepareDelete("_all").execute().actionGet();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/AbstractCrossVersionPerformanceTest.groovy

                    buildContext
            )
            runner.workingDir = temporaryFolder.testDirectory
            runner.current = new UnderDevelopmentGradleDistribution(buildContext)
            performanceTestIdProvider.testSpec = runner
        }
    
        CrossVersionPerformanceTestRunner getRunner() {
            runner
        }
    
        void applyDevelocityPlugin() {
            runner.addBuildMutator { invocationSettings ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AndroidTestProject.groovy

            def version = AGP_VERSIONS.latestStableOrRC
            configureForAgpVersion(runner, version)
            version
        }
    
        private static void configureForAgpVersion(CrossVersionPerformanceTestRunner runner, String agpVersion) {
            runner.args.add("-DagpVersion=${agpVersion}")
    
            def javaVersion = AGP_VERSIONS.getMinimumJavaVersionFor(agpVersion)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/AbstractIncrementalExecutionPerformanceTest.groovy

        def setup() {
            runner.useToolingApi = true
            if (OperatingSystem.current().linux) {
                runner.warmUpRuns = 10
                runner.runs = 40
            } else {
                // Reduce the number of iterations on Windows and macOS, since the performance tests are slower there
                runner.warmUpRuns = 5
                runner.runs = 20
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. pkg/volume/flexvolume/plugin.go

    		},
    		runner:   runner,
    		spec:     spec,
    		readOnly: readOnly,
    	}, nil
    }
    
    // NewUnmounter is part of the volume.VolumePlugin interface.
    func (plugin *flexVolumePlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    	return plugin.newUnmounterInternal(volName, podUID, plugin.host.GetMounter(plugin.GetPluginName()), plugin.runner)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top