Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for addProjectState (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

        private val projectPathToExecutedTaskPaths: ConcurrentMultiMap<String, String> = ConcurrentMultiMap()
        private val projectPathToFailedTaskPaths: ConcurrentMultiMap<String, String> = ConcurrentMultiMap()
    
        fun addProjectState(projectPath: String, projectBuildDir: Provider<File>, reportOnly: Provider<Boolean>) {
            require(projectPath !in projectStates.keys) { "Project state already added for $projectPath" }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 11 11:05:07 GMT 2026
    - 14.3K bytes
    - Click Count (1)
  2. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ci-reporting.gradle.kts

                testFilesCleanupServiceProvider.get().onTaskGraphReady()
            }
        }
        val testFilesCleanupService = testFilesCleanupServiceProvider.get()
        testFilesCleanupService.addProjectState(project.path, project.layout.buildDirectory.asFile, testFilesCleanup.reportOnly)
    
        project.tasks.configureEach {
            if (this is Test) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 11 09:36:42 GMT 2026
    - 3.1K bytes
    - Click Count (0)
Back to Top