- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 183 for machine (2.34 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt
* .maxStale(365, TimeUnit.DAYS) * .build()) * .url("http://publicobject.com/helloworld.txt") * .build(); * ``` * * The [CacheControl] class can configure request caching directives and parse response caching * directives. It even offers convenient constants [CacheControl.FORCE_NETWORK] and * [CacheControl.FORCE_CACHE] that address the use cases above. * * [rfc_7234]: http://tools.ietf.org/html/rfc7234
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
* Retrieves a paginated list of failure URLs based on the provided pager criteria. * * @param failureUrlPager the pager containing search criteria and pagination settings * @return a list of FailureUrl entities matching the criteria */ public List<FailureUrl> getFailureUrlList(final FailureUrlPager failureUrlPager) { final PagingResultBean<FailureUrl> failureUrlList = failureUrlBhv.selectPage(cb -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ErrorToWarnRewritePolicy.java
*/ public ErrorToWarnRewritePolicy(final String[] loggerNames) { this.loggerNames = loggerNames; } /** * Rewrites log events by converting ERROR level to WARN level for matching loggers. * * @param event the log event to potentially rewrite * @return the original event or a new event with WARN level if conversion applied */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/de/stopwords.txt
indem ins ist jede jedem jeden jeder jedes jene jenem jenen jener jenes jetzt kann kein keine keinem keinen keiner keines können könnte machen man manche manchem manchen mancher manches mein meine meinem meinen meiner meines mit muss musste nach nicht nichts noch nun nur ob
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Nov 27 12:59:36 UTC 2023 - 1.5K bytes - Viewed (0) -
README.md
* HTTP/2 support allows all requests to the same host to share a socket. * Connection pooling reduces request latency (if HTTP/2 isn’t available). * Transparent GZIP shrinks download sizes. * Response caching avoids the network completely for repeat requests. OkHttp perseveres when the network is troublesome: it will silently recover from common connection
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java
import org.opensearch.index.query.QueryBuilders; /** * Query command for handling wildcard queries. * Converts Lucene WildcardQuery objects to OpenSearch QueryBuilder objects, * supporting wildcard pattern matching with configurable case sensitivity. */ public class WildcardQueryCommand extends QueryCommand { /** * Default constructor. */ public WildcardQueryCommand() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/InputStreamThread.java
} /** * Checks if the buffer contains a line that matches the specified value (after trimming). * * @param value the value to search for in the buffered lines * @return true if a matching line is found, false otherwise */ public boolean contains(final String value) { for (final String line : list) { if (line.trim().equals(value)) { return true;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
guava/src/com/google/common/cache/Cache.java
* * <ul> * <li>{@linkplain LoadingCache#get(Object) awaiting the result of a pending load} rather than * starting a redundant one * <li>eliminating the error-prone caching boilerplate * <li>tracking load {@linkplain #stats statistics} * </ul> * * <p>Among the further improvements that {@code LoadingCache} can provide but this method cannot: * * <ul>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
* by sort order, creation time, regular name, and duplicate hostname.</p> * * @param duplicateHostPager the pager containing search criteria and pagination settings * @return a list of DuplicateHost entities matching the search criteria * @throws IllegalArgumentException if duplicateHostPager is null */ public List<DuplicateHost> getDuplicateHostList(final DuplicateHostPager duplicateHostPager) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
boolQuery.filter(roleQuery); } /** * Builds boost query functions to modify document scoring based on various factors. * This method adds field value factors, key matching boosts, and custom boost functions. * * @param queryContext the query context to add boost functions to */ protected void buildBoostQuery(final QueryContext queryContext) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0)