- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 600 for caches (0.16 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java
/** * Describes a tag used by the model builder to access a {@link ModelCache}. This interface basically aggregates a name * and a class to provide some type safety when working with the otherwise untyped cache. * * @param <T> The type of data associated with the tag. * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") interface ModelCacheTag<T> { /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
.github/workflows/maven_build_itself.yml
with: persist-credentials: false - uses: actions/setup-java@v4 with: java-version: ${{ matrix.java }} distribution: 'temurin' cache: 'maven' - name: Set up Maven run: mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper "-Dmaven=3.9.7" - name: Build with Maven
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Jun 03 17:58:28 UTC 2024 - 2.8K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/bug_report.yaml
multiple: true options: - com.google.common.annotations - com.google.common.base - com.google.common.cache - com.google.common.collect - com.google.common.escape - com.google.common.eventbus - com.google.common.graph - com.google.common.hash - com.google.common.io
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 16 20:08:25 UTC 2024 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
} private StreamResponse writeNdjsonResponse(final String id, final Consumer<Writer> writeCall) { return asStream(id)// .header("Pragma", "no-cache")// .header("Cache-Control", "no-cache")// .header("Expires", "Thu, 01 Dec 1994 16:00:00 GMT")// .header("Content-Type", "application/x-ndjson")// .stream(out -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 28.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
import org.xml.sax.SAXException; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.dataformat.yaml.YAMLMapper; import com.google.common.cache.CacheBuilder; import com.google.common.cache.CacheLoader; import com.google.common.cache.LoadingCache; public class PluginHelper { private static final Logger logger = LogManager.getLogger(PluginHelper.class);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 17.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java
if (accessTimeoutParam != null) { accessTimeout = accessTimeoutParam; } // max cached content size final Long maxCachedContentSizeParam = getInitParameter(MAX_CACHED_CONTENT_SIZE, null, Long.class); if (maxCachedContentSizeParam != null) { maxCachedContentSize = maxCachedContentSizeParam;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 5.9K bytes - Viewed (0) -
docs/zh/docs/deployment/docker.md
首先仅复制requirements.txt文件,而不复制其余代码。 由于此文件**不经常更改**,Docker 将检测到它并在这一步中使用**缓存**,从而为下一步启用缓存。 4. 安装需求文件中的包依赖项。 `--no-cache-dir` 选项告诉 `pip` 不要在本地保存下载的包,因为只有当 `pip` 再次运行以安装相同的包时才会这样,但在与容器一起工作时情况并非如此。 /// note | 笔记 `--no-cache-dir` 仅与 `pip` 相关,与 Docker 或容器无关。 /// `--upgrade` 选项告诉 `pip` 升级软件包(如果已经安装)。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 31.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/TestingRemovalListeners.java
* or implied. See the License for the specific language governing permissions and limitations under * the License. */ package com.google.common.cache; import com.google.common.annotations.GwtCompatible; import com.google.common.annotations.GwtIncompatible; import java.util.concurrent.ConcurrentLinkedQueue; import java.util.concurrent.atomic.AtomicInteger; /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java
final String cache = content.trim().replaceAll("[ \\t\\x0B\\f]+", " "); // text cache putResultDataBody(dataMap, fessConfig.getIndexFieldCache(), cache); putResultDataBody(dataMap, fessConfig.getIndexFieldHasCache(), Constants.TRUE); } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 23.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/searchResults.jsp
</c:if> <c:if test="${doc.has_cache=='true'}"> <div class="d-sm-none"></div> <span class="d-none d-sm-inline"> </span> <la:link href="/cache/?docId=${doc.doc_id}${appendHighlightParams}" class="cache"> <la:message key="labels.search_result_cache" /> </la:link> </c:if> <c:if test="${doc.similar_docs_count!=null&&doc.similar_docs_count>1}">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 09 04:29:42 UTC 2022 - 9K bytes - Viewed (0)