Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 203 for Catching (0.06 sec)

  1. docs/changelogs/changelog_2x.md

     *  Fix: `OkApacheClient` now allows an empty `PUT` and `POST`.
     *  Fix: Websockets no longer rebuffer socket streams.
     *  Fix: Websockets are now better at handling close frames.
     *  Fix: Content type matching is now case insensitive.
     *  Fix: `Vary` headers are not lost with `android.net.http.HttpResponseCache`.
     *  Fix: HTTP/2 wasn't enforcing stream timeouts when writing the underlying
        connection. Now it is.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/PatternFilenameFilter.java

    import java.io.File;
    import java.io.FilenameFilter;
    import java.util.regex.Pattern;
    import java.util.regex.PatternSyntaxException;
    
    /**
     * File name filter that only accepts files matching a regular expression. This class is thread-safe
     * and immutable.
     *
     * @author Apple Chow
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    public final class PatternFilenameFilter implements FilenameFilter {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

     * This class provides functionality to load, cache, and retrieve related content
     * based on search queries and virtual host configurations. It supports both exact
     * term matching and regex pattern matching for flexible content association.
     */
    public class RelatedContentHelper extends AbstractConfigHelper {
    
        /**
         * Default constructor for RelatedContentHelper.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

         * pagination information including page numbers and result counts.
         *
         * @param fileConfigPager the pager containing search criteria and pagination settings
         * @return a list of file configurations matching the criteria
         */
        public List<FileConfig> getFileConfigList(final FileConfigPager fileConfigPager) {
    
            final PagingResultBean<FileConfig> fileConfigList = fileConfigBhv.selectPage(cb -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/MapRetrievalCache.java

    import static com.google.common.base.Preconditions.checkNotNull;
    
    import java.util.Map;
    import org.jspecify.annotations.Nullable;
    
    /**
     * A {@link MapIteratorCache} that adds additional caching. In addition to the caching provided by
     * {@link MapIteratorCache}, this structure caches values for the two most recently retrieved keys.
     *
     * @author James Sexton
     */
    final class MapRetrievalCache<K, V> extends MapIteratorCache<K, V> {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/CreateForm.java

        public Integer crudMode;
    
        /** URL expression pattern to match documents for boosting */
        @Required
        @Size(max = 10000)
        public String urlExpr;
    
        /** Boost expression to apply to matching documents */
        @Required
        @Size(max = 10000)
        public String boostExpr;
    
        /** Sort order for displaying boost configurations */
        @Required
        @Min(value = 0)
        @Max(value = 2147483647)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

        }
    
        /**
         * Retrieves related queries for a given search term.
         * The search is performed using the current virtual host context and
         * the query term is converted to lowercase for case-insensitive matching.
         *
         * @param query the search term to find related queries for
         * @return an array of related query strings, or empty array if none found
         */
        public String[] getRelatedQueries(final String query) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/RelatedContentService.java

        /**
         * Retrieves a paginated list of related content entities.
         *
         * @param relatedContentPager the pager object containing pagination and search parameters
         * @return a list of RelatedContent entities matching the specified criteria
         */
        public List<RelatedContent> getRelatedContentList(final RelatedContentPager relatedContentPager) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/query/TermQueryCommand.java

            context.addHighlightedQuery(text);
            return QueryBuilders.termQuery(field, text).boost(boost);
        }
    
        /**
         * Converts a term query to a wildcard query for URL field matching.
         *
         * @param fessConfig the Fess configuration
         * @param context the query context
         * @param termQuery the term query to convert
         * @param boost the boost value to apply
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java

        /**
         * Gets a paginated list of boost document rules.
         * @param boostDocumentRulePager The pager with search criteria and pagination settings.
         * @return List of boost document rules matching the criteria.
         */
        public List<BoostDocumentRule> getBoostDocumentRuleList(final BoostDocPager boostDocumentRulePager) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.5K bytes
    - Viewed (0)
Back to top