Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 207 for catching (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/main/java/org/codelibs/fess/crawler/service/FessUrlQueueService.java

    import org.opensearch.search.sort.SortBuilders;
    import org.opensearch.search.sort.SortOrder;
    
    /**
     * Fess-specific URL queue service that extends OpenSearch URL queue functionality.
     * This service provides customized URL fetching strategies including sequential and random ordering
     * based on crawling configuration parameters.
     */
    public class FessUrlQueueService extends OpenSearchUrlQueueService {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4K bytes
    - Viewed (0)
  7. 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)
  8. CHANGELOG/CHANGELOG-1.32.md

    users can delete their corresponding node object by patching themselves with an OwnerReference to a cluster-scoped resource. If the OwnerReference resource does not exist or is subsequently deleted, the given node object will be deleted via garbage collection. By default, node users are authorized for create and patch requests but not delete requests against their node object. Since the NodeRestriction admission controller does not prevent patching OwnerReferences, a compromised node could leverage...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top