Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for projectStates (0.14 seconds)

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

            projectStates.values.forEach { projectState ->
                cleanUp(projectState.tmpExtractedResourcesDirs())
            }
    
            // Second run: collect and archive leftover files
            projectStates.forEach { (projectPath: String, projectState: TestFilesCleanupProjectState) ->
                val tmpTestFiles = projectState.tmpTestFiles()
    
    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. architecture/build-state-model.md

    ### Project state
    
    The "project state" holds the state for a project for a single build execution, and is contained by the build state (and not the state of the parent project).
    
    The project state is managed by the `ProjectState` class.
    It is created for each project in the build definition, once per build execution and is discarded at the end of the execution.
    
    ## Composition by architecture modules
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed May 22 13:39:49 GMT 2024
    - 3.4K bytes
    - Click Count (0)
Back to Top