Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for withDaemonIdleTimeoutSecs (0.33 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

            dir
        }
    
        void startBuild(String javaHome = null, String buildEncoding = null) {
            run {
                executer.withTasks("watch")
                executer.withDaemonIdleTimeoutSecs(daemonIdleTimeout)
                executer.withArguments(
                    "-Dorg.gradle.daemon.healthcheckinterval=${periodicCheckInterval * 1000}",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

        }
    
        def "file watching works with many changes between two builds"() {
            // Use 40 minutes idle timeout since the test may be running longer with an idle daemon
            executer.withDaemonIdleTimeoutSecs(2400)
            def numberOfChangedSourcesFilesPerBatch = maxFileChangesWithoutOverflow
            def numberOfChangeBatches = 500
    
            when:
            succeeds("assemble")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        }
    
        @Override
        public GradleExecuter copyTo(GradleExecuter executer) {
            executer.withGradleUserHomeDir(gradleUserHomeDir);
            executer.withDaemonIdleTimeoutSecs(daemonIdleTimeoutSecs);
            executer.withDaemonBaseDir(daemonBaseDir);
    
            if (workingDir != null) {
                executer.inDirectory(workingDir);
            }
            if (projectDir != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

        GradleExecuter withDefaultLocale(Locale defaultLocale);
    
        /**
         * Set the number of seconds an idle daemon should live for.
         *
         * @return this executer
         */
        GradleExecuter withDaemonIdleTimeoutSecs(int secs);
    
        /**
         * Set the working space for any daemons used by the builds.
         *
         * This value is persistent across executions by this executer.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top