Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for yerine (0.39 sec)

  1. docs/de/README.md

    Fess basiert auf [OpenSearch](https://github.com/opensearch-project/OpenSearch), aber es ist kein Wissen oder Erfahrung mit OpenSearch erforderlich. Fess bietet eine einfach zu bedienende Administrations-GUI zur Konfiguration des Systems über Ihren Browser.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Tue Nov 11 22:42:32 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/AbstractIntervalController.java

     *   <li>While waiting for new URLs to be added to the queue ({@link #delayForWaitingNewUrl()})</li>
     * </ul>
     *
     * <p>
     * Subclasses are responsible for implementing the abstract methods to define the actual delay
     * mechanism for each of these stages.
     * </p>
     *
     * <p>
     * The class also provides a mechanism to ignore exceptions that may occur during the delay process.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 08:58:39 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/suggest/SuggesterResourceLoadingTest.java

                // Verify expected fields exist
                assertTrue("Should contain text field", mappings.contains("text"));
                assertTrue("Should define field types", mappings.contains("type"));
            }
    
            // Test settings content
            try (InputStream is = getClass().getClassLoader().getResourceAsStream("suggest_indices/suggest.json")) {
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

    import org.dbflute.optional.OptionalEntity;
    
    /**
     * Character mapping file handler for managing character mapping dictionaries.
     * 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
     */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/job/ExecJob.java

     * This class provides common functionality for job execution including process management,
     * logging configuration, JVM options, and timeout handling.
     *
     * <p>Subclasses must implement the abstract methods to define specific job behavior
     * and execution type identification.</p>
     *
     * @version 1.0
     */
    public abstract class ExecJob {
    
        /** Logger instance for this class */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_de.properties

    labels.search_result_time=({0} Sekunden)
    labels.prev_page=Zurück
    labels.next_page=Weiter
    labels.did_not_match=Ihre Suche - <b>{0}</b> - ergab keine Übereinstimmungen mit Dokumenten.
    labels.search_title=Fess
    labels.search_popular_word_word=Beliebte Wörter:
    labels.search_related_queries=Verwandte Abfragen:
    labels.search_result_select_sort=- Sortieren -
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 46.9K bytes
    - Viewed (1)
  7. MIGRATION.md

    Map Solr configuration to Fess:
    
    | Solr Feature | Fess Equivalent |
    |--------------|----------------|
    | Solr Core | Fess doesn't use cores; all documents in one index |
    | Schema Fields | Define in crawl configuration or use default fields |
    | RequestHandlers | Use Fess JSON API with parameters |
    | Facet Fields | Configure in Fess search settings |
    | Highlighting | Built-in in Fess search results |
    
    ---
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exec/Crawler.java

            if (StringUtil.isNotBlank(msg)) {
                errors.offer(msg);
            }
        }
    
        /**
         * Command-line options container for the crawler application.
         * This class uses args4j annotations to define command-line arguments
         * and provides methods to parse and access configuration values.
         */
        public static class Options {
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 31.4K bytes
    - Viewed (0)
Back to top