Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for daemonBaseDir (0.21 sec)

  1. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/WrapperCrossVersionIntegrationTest.groovy

        }
    
        static void cleanupDaemons(GradleExecuter executer, GradleDistribution executionVersion) {
            new DaemonLogsAnalyzer(executer.daemonBaseDir, executionVersion.version.version).killAll()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildCancellationIntegrationTest.groovy

            !daemons.daemon.log.contains(DaemonMessages.CANCELED_BUILD)
    
            cleanup:
            daemons.killAll()
        }
    
        DaemonsFixture getDaemons() {
            new DaemonLogsAnalyzer(executer.daemonBaseDir)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/initialization/InternalGradleFailuresIntegrationTest.groovy

        }
    
        def "Error message due to unwritable Gradle daemon directory is not scary"() {
            given:
            def daemonDir = executer.daemonBaseDir
            daemonDir.touch()
    
            when:
            fails 'hello'
    
            then:
            daemonDir.isFile()
            assertHasStartupFailure(failure, "Failed to create directory '${daemonDir}")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:54 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/ClientShutdownCrossVersionSpec.groovy

            toolingApi.daemons.daemon.assertIdle()
        }
    
        private GradleExecuter daemonExecutor() {
            targetDist.executer(temporaryFolder, getBuildContext())
                .withDaemonBaseDir(toolingApi.daemonBaseDir)
                .withBuildJvmOpts(buildJvmArguments)
                .useOnlyRequestedJvmOpts()
                .requireDaemon()
        }
    
        private List<String> getBuildJvmArguments() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/WrapperPropertiesLoaderCrossVersionTest.groovy

            cleanup:
            cleanupDaemons(executer, executionVersion)
        }
    
        static void cleanupDaemons(GradleExecuter executer, GradleDistribution executionVersion) {
            new DaemonLogsAnalyzer(executer.daemonBaseDir, executionVersion.version.version).killAll()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerRetryTest.groovy

            if (condition) {
                throw throwable
            }
        }
    
        private void logToFakeDaemonLog(String exceptionInDaemon) {
            def logDir = new File(daemonsFixture.daemonBaseDir, daemonsFixture.getVersion())
            logDir.mkdirs()
            def log = new File(logDir, "daemon-fake.log")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 15:10:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/SingleUseDaemonIntegrationTest.groovy

            outputDoesNotContain(SingleUseDaemonClient.MESSAGE)
            assert daemons.daemons.size() == 0
        }
    
        private def getDaemons() {
            return new DaemonLogsAnalyzer(executer.daemonBaseDir)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

        }
    
        private void withoutAgent() {
            withAgentApplied(false)
        }
    
        DaemonLogsAnalyzer getDaemons() {
            new DaemonLogsAnalyzer(executer.daemonBaseDir)
        }
    
        GradleHandle startAForegroundDaemon(Boolean shouldApplyAgent = null) {
            int currentSize = daemons.getRegistry().getAll().size()
            if (shouldApplyAgent != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

            }
            context.with(assertions)
        }
    
        def cleanup() {
            try {
                def registry = new DaemonLogsAnalyzer(executer.daemonBaseDir).registry
                sequenceBuilder.build(registry).run()
            } finally {
                stopDaemonsNow()
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/CrossVersionToolingApiSpecificationRetryTest.groovy

            if (condition) {
                throw throwable
            }
        }
    
        private void logToFakeDaemonLog(String exceptionInDaemon) {
            def logDir = new File(daemonsFixture.daemonBaseDir, daemonsFixture.getVersion())
            logDir.mkdirs()
            def log = new File(logDir, "daemon-fake.log")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top