Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for analysis (0.05 sec)

  1. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.query.parser;
    
    import java.util.ArrayList;
    import java.util.List;
    
    import org.apache.lucene.analysis.Analyzer;
    import org.apache.lucene.analysis.core.WhitespaceAnalyzer;
    import org.apache.lucene.queryparser.classic.ParseException;
    import org.apache.lucene.queryparser.classic.QueryParser.Operator;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/CrawlJob.java

     *   <li>Concurrent crawler process management with configurable limits</li>
     *   <li>Selective crawling based on configuration IDs</li>
     *   <li>Document expiration handling</li>
     *   <li>Hot thread monitoring for performance analysis</li>
     *   <li>Process isolation with separate JVM</li>
     * </ul>
     */
    public class CrawlJob extends ExecJob {
    
        private static final Logger logger = LogManager.getLogger(CrawlJob.class);
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        @Min(0)
        @Max(100)
        @ValidateTypeFailure
        public Integer crawlingThreadCount;
    
        /**
         * Enable or disable search query logging.
         * When enabled, user search queries are logged for analysis.
         */
        @Size(max = 10)
        public String searchLog;
    
        /**
         * Enable or disable user information tracking.
         * When enabled, user information is stored and tracked.
         */
        @Size(max = 10)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

     * This class provides functionality to load, parse, and manage character mapping
     * rules that define how input characters should be transformed to output characters
     * during text analysis and search processing.
     *
     * Character mapping files contain mapping rules in the format:
     * input1,input2,... => output
     */
    public class CharMappingFile extends DictionaryFile<CharMappingItem> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess.json

          "refresh_interval": "1s",
          "number_of_shards": "${fess.index.number_of_shards}",
          "number_of_replicas": 0,
          "auto_expand_replicas": "${fess.index.auto_expand_replicas}"
        },
        "analysis": {
          "char_filter": {
            "mapping_fa_filter": {
              "type": "mapping",
              "mappings_path": "${fess.dictionary.path}fa/mapping.txt"
            },
            "mapping_ja_filter": {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jun 06 14:17:42 UTC 2025
    - 39.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/InternetDomainName.java

    import java.util.List;
    import org.jspecify.annotations.Nullable;
    
    /**
     * An immutable well-formed internet domain name, such as {@code com} or {@code foo.co.uk}. Only
     * syntactic analysis is performed; no DNS lookups or other network interactions take place. Thus
     * there is no guarantee that the domain actually exists on the internet.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableSet.java

         * operations take expected O(1) time but with high probability take O(log n) for at least some
         * element. (https://en.wikipedia.org/wiki/Linear_probing#Analysis)
         *
         * <p>This method may return {@code true} even on truly random input, but {@code
         * ImmutableSetTest} tests that the probability of that is low.
         */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

     * This class handles user identification through cookies, session management, and query tracking.
     * It provides functionality for generating unique user codes, managing user sessions,
     * and tracking search result document IDs for analytics and personalization.
     *
     */
    public class UserInfoHelper {
    
        /**
         * Default constructor for UserInfoHelper.
         */
        public UserInfoHelper() {
            // Default constructor
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing search logs and related analytics.
     *
     * This service provides functionality for querying, aggregating, and managing
     * various types of search logs including search logs, click logs, favorite logs,
     * and user information logs. It supports different aggregation types for
     * analytics and reporting purposes.
     */
    public class SearchLogService {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top