Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for daemonBaseDir (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

                assert daemon.log.count("Handling VFS change MODIFIED ${sourceFile.absolutePath}") == 1
            }
        }
    
        private DaemonFixture getDaemon() {
            new DaemonLogsAnalyzer(executer.daemonBaseDir).daemon
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top