Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for cacheAction (0.31 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)
  4. src/cmd/go/internal/work/action.go

    		}
    	}
    	return
    }
    
    // cacheAction looks up {mode, p} in the cache and returns the resulting action.
    // If the cache has no such action, f() is recorded and returned.
    // TODO(rsc): Change the second key from *load.Package to interface{},
    // to make the caching in linkShared less awkward?
    func (b *Builder) cacheAction(mode string, p *load.Package, f func() *Action) *Action {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top