Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 23 for Moment (0.05 seconds)

  1. src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java

                } catch (InterruptedException e) {
                    Thread.currentThread().interrupt();
                }
            });
            writerThread.start();
    
            // Give threads a moment to reach the latch
            Thread.sleep(50);
    
            // Release all threads to start simultaneously
            startLatch.countDown();
    
            // Wait for writer thread to complete
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.8K bytes
    - Click Count (1)
  2. src/main/resources/fess_label_en.properties

    labels.chat_new_chat=New Chat
    labels.chat_input_placeholder=Ask a question...
    labels.chat_thinking=Thinking...
    labels.chat_error=An error occurred. Please try again.
    labels.chat_error_rate_limit=It's currently busy. Please wait a moment and try again.
    labels.chat_error_auth=AI service authentication failed. Please contact the administrator.
    labels.chat_error_service_unavailable=The AI service is temporarily unavailable. Please try again later.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  3. src/main/webapp/js/chat.js

                    fetch: 'Retrieving content...',
                    answer: 'Generating answer...'
                },
                errors: {
                    rate_limit: 'It\'s currently busy. Please wait a moment and try again.',
                    auth_error: 'AI service authentication failed. Please contact the administrator.',
                    service_unavailable: 'The AI service is temporarily unavailable. Please try again later.',
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  4. src/main/resources/fess_label.properties

    labels.chat_new_chat=New Chat
    labels.chat_input_placeholder=Ask a question...
    labels.chat_thinking=Thinking...
    labels.chat_error=An error occurred. Please try again.
    labels.chat_error_rate_limit=It's currently busy. Please wait a moment and try again.
    labels.chat_error_auth=AI service authentication failed. Please contact the administrator.
    labels.chat_error_service_unavailable=The AI service is temporarily unavailable. Please try again later.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  5. src/main/resources/fess_label_fr.properties

    labels.chat_thinking=Réflexion en cours...
    labels.chat_error=Une erreur s'est produite. Veuillez réessayer.
    labels.chat_error_rate_limit=Le service est actuellement surchargé. Veuillez patienter un moment et réessayer.
    labels.chat_error_auth=L'authentification au service IA a échoué. Veuillez contacter l'administrateur.
    labels.chat_error_service_unavailable=Le service IA est temporairement indisponible. Veuillez réessayer plus tard.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 54.4K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: An error occurred. Please try again. */
        public static final String LABELS_chat_error = "{labels.chat_error}";
    
        /** The key of the message: It's currently busy. Please wait a moment and try again. */
        public static final String LABELS_chat_error_rate_limit = "{labels.chat_error_rate_limit}";
    
        /** The key of the message: AI service authentication failed. Please contact the administrator. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 172.6K bytes
    - Click Count (0)
  7. 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)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. Fess <br>
         * comment: The title of the domain for logging and display.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getDomainTitle();
    
        /**
         * Get the value for the key 'search_engine.type'. <br>
         * The value is, e.g. default <br>
         * comment: The type of search engine backend (e.g., default, opensearch).
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  9. src/main/java/org/codelibs/fess/mylasta/mail/LogNotificationPostcard.java

         * Set the value of level, used in parameter comment. <br>
         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param level The parameter value of level. (NotNull)
         */
        public void setLevel(String level) {
            registerVariable("level", level);
        }
    
        /**
         * Set the value of hostname, used in parameter comment. <br>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java

        }
    
        // Test reload with InputStream
        @Test
        public void test_reload_withComments() {
            String content = "# This is a comment\n" + "word1\n" + "\n" + // empty line
                    "word2\n" + "# Another comment\n" + "word3\n";
    
            InputStream is = new ByteArrayInputStream(content.getBytes(StandardCharsets.UTF_8));
            stopwordsFile.reload(null, is);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18K bytes
    - Click Count (0)
Back to Top