Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 10 for isto (0.02 seconds)

  1. src/main/resources/fess_message_de.properties

    constraints.Mod11Check.message = Die Modulo-11-Prüfsumme von {value} ist falsch.
    constraints.ModCheck.message = Die {modType}-Prüfsumme von {value} ist falsch.
    constraints.NotBlank.message = {item} ist erforderlich.
    constraints.NotEmpty.message = {item} ist erforderlich.
    constraints.ParametersScriptAssert.message = Der Skriptausdruck "{script}" ist nicht wahr.
    constraints.Range.message = {item} muss zwischen {min} und {max} liegen.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  2. src/main/resources/fess_label_it.properties

    labels.searchoptions_menu_lang=Lingua
    labels.searchoptions_menu_labels=Etichette
    labels.error_title=Errore
    labels.system_error_title=Errore di sistema
    labels.contact_site_admin=Contatta l'amministratore del sito.
    labels.request_error_title=Formato richiesta non valido.
    labels.bad_request=La richiesta all'URL non è valida.
    labels.page_not_found_title=Pagina non trovata.
    labels.check_url=Controlla l'URL.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 52K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/exec/Crawler.java

             */
            protected Options() {
                // nothing
            }
    
            /**
             * Parses the web configuration IDs string into a list.
             *
             * @return list of web configuration IDs, or null if none specified
             */
            protected List<String> getWebConfigIdList() {
                if (StringUtil.isNotBlank(webConfigIds)) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 32.4K bytes
    - Click Count (0)
  4. src/main/resources/fess_label_de.properties

    labels.chat_thinking=Denkt nach...
    labels.chat_error=Ein Fehler ist aufgetreten. Bitte versuchen Sie es erneut.
    labels.chat_error_rate_limit=Es ist derzeit sehr ausgelastet. Bitte warten Sie einen Moment und versuchen Sie es erneut.
    labels.chat_error_auth=Die Authentifizierung beim KI-Dienst ist fehlgeschlagen. Bitte kontaktieren Sie den Administrator.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 52.3K bytes
    - Click Count (1)
  5. src/main/java/org/codelibs/fess/util/LogNotificationAppender.java

    import org.codelibs.fess.helper.LogNotificationHelper;
    import org.codelibs.fess.helper.LogNotificationHelper.LogNotificationEvent;
    
    /**
     * Custom Log4j2 Appender that captures log events into a buffer for notification purposes.
     */
    @Plugin(name = "LogNotificationAppender", category = Core.CATEGORY_NAME, elementType = Appender.ELEMENT_TYPE, printObject = true)
    public class LogNotificationAppender extends AbstractAppender {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 6K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/job/LogNotificationJob.java

            }
    
            return "Sent log notifications: " + events.size() + " events.";
        }
    
        /**
         * Formats a list of log notification events into a human-readable summary string.
         *
         * @param events the list of log notification events
         * @param maxDetailsLength the maximum length of the details string
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

         *
         * <p>This method caches compiled Script classes per script text.
         * Each evaluation creates a new Script instance to ensure thread-safe binding isolation.
         * The DI container is automatically injected into the binding map as "container".</p>
         *
         * @param template the Groovy script to evaluate (null-safe, returns null if empty)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

            } catch (final Exception e) {
                logger.warn("Failed to serialize JSON.", e);
                return "{}";
            }
        }
    
        /**
         * Parses a JSON string into a map.
         *
         * @param json the JSON string to parse.
         * @return the parsed map, or an empty map on failure.
         */
        protected Map<String, Object> parseJson(final String json) {
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 33.3K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            return configIndex + "." + new SimpleDateFormat(Constants.DOCUMENT_INDEX_SUFFIX_PATTERN).format(new Date());
        }
    
        /**
         * Inserts bulk data from a file into an index.
         *
         * @param fessConfig  the Fess configuration
         * @param configIndex the target index name
         * @param dataPath    the path to the bulk data file
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
  10. src/main/java/org/codelibs/fess/Constants.java

        // ============================================================
    
        /** Default datetime format pattern without timezone. */
        public static final String DEFAULT_DATETIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ss";
    
        /** ISO datetime format pattern with milliseconds and UTC timezone. */
        public static final String ISO_DATETIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'";
    
        /** Date optional time format identifier. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 35.8K bytes
    - Click Count (0)
Back to Top