Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cacheAction (0.18 sec)

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

                    cacheAction == STORE && !hasProblems -> log("Configuration cache entry stored.")
                    cacheAction == STORE -> log("Configuration cache entry stored with {}.", problemCountString)
                    cacheAction == UPDATE && !hasProblems -> log("Configuration cache entry updated for {}, {} up-to-date.", updatedProjectsString, reusedProjectsString)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                    buildDisplayName: String?,
                    cacheAction: String,
                    requestedTasks: String?,
                    totalProblemCount: Int
                ): Pair<State, File?> {
    
                    val reportFile = try {
                        executor
                            .submit(Callable {
                                closeHtmlReport(buildDisplayName, cacheAction, requestedTasks, totalProblemCount)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            get() = host.service()
    
        override val isLoaded: Boolean
            get() = cacheAction == ConfigurationCacheAction.LOAD
    
        override fun initializeCacheEntry() {
            cacheAction = determineCacheAction()
            problems.action(cacheAction)
            // TODO:isolated find a way to avoid this late binding
            modelSideEffectExecutor.sideEffectStore = buildTreeModelSideEffects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top