Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/org/codelibs/fess/app/web/cache/CacheAction.java

    import org.lastaflute.web.response.StreamResponse;
    
    public class CacheAction extends FessSearchAction {
    
        // ===================================================================================
        //                                                                            Constant
        //
        private static final Logger logger = LogManager.getLogger(CacheAction.class);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/HtmlReportWriter.kt

            writer.append(htmlTemplate.first)
            beginReportData()
            jsonModelWriter.beginModel()
        }
    
        fun endHtmlReport(buildDisplayName: String?, cacheAction: String, requestedTasks: String?, totalProblemCount: Int) {
            jsonModelWriter.endModel(buildDisplayName, cacheAction, requestedTasks, totalProblemCount)
            endReportData()
            writer.append(htmlTemplate.second)
        }
    
        private
        fun beginReportData() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriter.kt

            }
            if (requestedTasks != null) {
                comma()
                property("requestedTasks", requestedTasks)
            }
            comma()
            property("cacheAction", cacheAction)
            comma()
            property("documentationLink", documentationRegistry.getDocumentationFor("configuration_cache"))
    
            endObject()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummary.kt

            }.toString()
        }
    
        private
        fun StringBuilder.appendSummaryHeader(
            cacheAction: String,
            totalProblemCount: Int
        ) {
            append(totalProblemCount)
            append(if (totalProblemCount == 1) " problem was found " else " problems were found ")
            append(cacheAction)
            append(" the configuration cache")
            if (overflowed) {
                append(", only the first ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptor.java

        public Action<? super ArtifactResolutionDetails> toContentFilter() {
            if (cachedAction != null) {
                return cachedAction;
            }
            locked = true;
            if (includeSpecs == null && excludeSpecs == null) {
                // no filtering in place
                return Actions.doNothing();
            }
            cachedAction = new RepositoryFilterAction(createSpecMatchers(includeSpecs), createSpecMatchers(excludeSpecs));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top