Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CachedBuildState (0.23 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CachedBuildState.kt

     */
    internal
    sealed class CachedBuildState(
        val identityPath: Path,
    )
    
    
    /**
     * A build in the tree whose projects were loaded. May or may not have work scheduled.
     */
    internal
    sealed class BuildWithProjects(
        identityPath: Path,
        val rootProjectName: String,
        val projects: List<CachedProjectState>
    ) : CachedBuildState(identityPath)
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

        }
    
        private
        fun DefaultReadContext.readBuildInvocationId(): String =
            readString()
    
        private
        fun identifyBuild(state: CachedBuildState) {
            val identityPath = state.identityPath.toString()
    
            eventEmitter.emitNowForCurrent(BuildIdentifiedProgressDetails { identityPath })
    
            if (state is BuildWithProjects) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top