Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 289 for pattern2 (0.04 sec)

  1. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java

        private static final Logger logger = LogManager.getLogger(ProtwordsCreator.class);
    
        /**
         * Constructor for ProtwordsCreator.
         * Initializes the creator with a pattern to match protwords files.
         */
        public ProtwordsCreator() {
            super("protwords.*\\.txt");
        }
    
        /**
         * Registers this creator with the dictionary manager.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingSortedSetMultimap.java

     * Subclasses should override one or more methods to modify the behavior of the backing multimap as
     * desired per the <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ForwardingListenableFuture.java

     * should override one or more methods to modify the behavior of the backing future as desired per
     * the <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p>Most subclasses can just use {@link SimpleForwardingListenableFuture}.
     *
     * @author Shardul Deo
     * @since 4.0
     */
    @GwtCompatible
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/PathMapPager.java

        /** The number of records per page. */
        private int pageSize;
    
        /** The current page number. */
        private int currentPageNumber;
    
        /** The ID. */
        public String id;
    
        /** The regex pattern. */
        public String regex;
    
        /** The replacement string. */
        public String replacement;
    
        /** The process type. */
        public String processType;
    
        /** The sort order. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ForwardingMapEntry.java

     * one or more methods to modify the behavior of the backing map entry as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>Warning:</b> The methods of {@code ForwardingMapEntry} forward <i>indiscriminately</i> to
     * the methods of the delegate. For example, overriding {@link #getValue} alone <i>will not</i>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

        }
    
        public void test_parse_escaped_quotes() {
            String value;
            String[] result;
    
            // Escaped quotes within quoted value - DOES NOT get unquoted because pattern doesn't match
            value = "\"value with \"\"escaped\"\" quotes\"";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(1, result.length);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

                    + facetResponse + "]";
        }
    
        /**
         * Builder class for constructing SearchResult instances using the builder pattern.
         *
         * This builder provides a fluent interface for setting the various properties
         * of a SearchResult before creating the final immutable instance.
         */
        static class SearchResultBuilder {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/UpdateLabelJob.java

    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.script.Script;
    
    /**
     * Job class for updating label information in the search index.
     * This job processes documents and updates their label fields based on URL pattern matching.
     */
    public class UpdateLabelJob {
    
        private static final Logger logger = LogManager.getLogger(UpdateLabelJob.class);
    
        /**
         * Query builder for filtering documents to be processed.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ForwardingObject.java

    import com.google.common.annotations.GwtCompatible;
    import java.io.Serializable;
    
    /**
     * An abstract base class for implementing the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>. The {@link
     * #delegate()} method must be overridden to return the instance being decorated.
     *
     * <p>This class does <i>not</i> forward the {@code hashCode} and {@code equals} methods through to
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

         *
         * @param convertUrlMap the map of regex patterns to replacement strings
         */
        public void setConvertUrlMap(final Map<String, String> convertUrlMap) {
            this.convertUrlMap.putAll(convertUrlMap);
        }
    
        /**
         * Adds a URL conversion rule.
         *
         * @param regex the regular expression pattern to match
         * @param replacement the replacement string
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
Back to top