Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for daemonBaseDir (0.27 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. subprojects/core/src/integTest/groovy/org/gradle/NativeServicesIntegrationTest.groovy

        }
    
        private void assertNoFilesInTmp() {
            assert tmpDir.testDirectory.listFiles().length == 0
        }
    
        private DaemonLogsAnalyzer getDaemons() {
            new DaemonLogsAnalyzer(executer.daemonBaseDir)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/ToolingApiGradleExecutor.java

            gradleConnector.useDistributionBaseDir(GradleUserHomeLookup.gradleUserHome());
            gradleProvider.applyTo(gradleConnector);
            gradleConnector.useGradleUserHomeDir(gradleUserHome);
            gradleConnector.daemonBaseDir(new File(gradleUserHome, TEST_KIT_DAEMON_DIR_NAME));
            gradleConnector.forProjectDirectory(projectDir);
            gradleConnector.daemonMaxIdleTime(120, TimeUnit.SECONDS);
            gradleConnector.embedded(embedded);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 14:27:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

                    }
                    classLoadingCache {
                        assertCacheHits(run)
                    }
                }
            }
            val daemonFixture = DaemonLogsAnalyzer.newAnalyzer(executer.daemonBaseDir)
            assertThat(daemonFixture.daemons).hasSize(1)
        }
    
        @Test
        fun `writes build cache entries`() {
            expectCacheEntriesWritten(2, false)
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. 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)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/RetryConditions.groovy

                println "Cause   (caught during test): " + failure?.cause
            }
    
            println "Daemons (potentially used): ${daemonsFixture?.allDaemons?.collect { it.context?.pid }} - ${daemonsFixture?.daemonBaseDir}"
    
            def targetDistVersion = extractTargetVersionFromToolingApiSpecification(specification)
            if (targetDistVersion == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            return buildOperations.all(CompileScriptBuildOperationType).size()
        }
    
        DaemonsFixture getDaemons() {
            new DaemonLogsAnalyzer(executer.daemonBaseDir)
        }
    
        void hasScript(String path, List<ClassDetails> scripts) {
            assert scripts.find { it.path == path }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top