Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 151 - 160 of 167 for invalidAt (0.2 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractBehavior.java

            final BulkItemResponse[] itemResponses = response.getItems();
            if (itemResponses.length != entityList.size()) {
                throw new IllegalStateException("Invalid response size: " + itemResponses.length + " != " + entityList.size());
            }
            final int[] results = new int[itemResponses.length];
            for (int i = 0; i < itemResponses.length; i++) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 26.4K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                }
                accessResult.setStatus(Constants.DONE_STATUS);
                accessResultList.add(accessResult);
    
                if (accessResult.getHttpStatusCode() != 200) {
                    // invalid page
                    if (logger.isDebugEnabled()) {
                        logger.debug("Skipped: httpStatusCode={}", accessResult.getHttpStatusCode());
                    }
                    continue;
                }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 32.9K bytes
    - Click Count (0)
  3. src/main/resources/fess_label_fr.properties

    labels.chat_error_model_not_found=Le modèle d'IA est introuvable. Veuillez contacter l'administrateur.
    labels.chat_error_invalid_response=Réponse invalide reçue du service d'IA. Veuillez réessayer.
    labels.chat_error_connection=Impossible de se connecter au service d'IA. Veuillez vérifier la connexion réseau.
    labels.chat_sources=Sources
    labels.chat_ai_mode=Mode IA
    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)
  4. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

        }
    
        @Test
        public void test_normalizeCanonicalUrl_malformedReturnsNull() throws Exception {
            final FessXpathTransformer transformer = new FessXpathTransformer();
            // Completely invalid base URL should return null
            final String value = transformer.normalizeCanonicalUrl("not-a-url", "/page");
            assertNull(value);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 62.9K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/exec/Crawler.java

                        dayForCleanup = Integer.parseInt(dayForCleanupStr);
                    } catch (final NumberFormatException e) {
                        if (logger.isDebugEnabled()) {
                            logger.debug("Invalid expires value, using default: value={}, error={}", dayForCleanupStr, e.getMessage());
                        }
                    }
                } else {
    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)
  6. src/main/webapp/js/chat.js

                    model_not_found: 'The AI model was not found. Please contact the administrator.',
                    invalid_response: 'Received an invalid response from the AI service. Please try again.',
                    connection_error: 'Unable to connect to the AI service. Please check the network connection.',
                    unknown: 'An error occurred. Please try again.'
    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)
  7. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

                    if (value > 0) {
                        return value;
                    }
                } catch (final NumberFormatException e) {
                    logger.warn("Invalid config value for key={}. Using default: {}", key, defaultValue);
                }
            }
            return defaultValue;
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/Constants.java

        /** Document crawler format identifier. */
        public static final String DCF = "dcf";
    
        /** Constant representing all languages. */
        public static final String ALL_LANGUAGES = "all";
    
        /** Invalid numeric parameter value. */
        public static final String INVALID_NUMERIC_PARAMETER = "-1";
    
        // ============================================================
        // Facet and Query Constants
    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)
  9. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                throw new FessSystemException("configId is null in document. docId: " + docId);
            }
            if (configId.length() < 2) {
                throw new FessSystemException("Invalid configId length: " + configId + ". ConfigId must be at least 2 characters long.");
            }
            final CrawlingConfig config = crawlingConfigHelper.getCrawlingConfig(configId);
            if (config == null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 52.6K bytes
    - Click Count (0)
  10. src/main/resources/fess_config.properties

    # ----------------------------------------------------------
    #                                                   Password
    #                                                     ------
    
    # List of invalid admin passwords.
    password.invalid.admin.passwords=\
    admin
    
    # Minimum password length (0 to disable).
    password.min.length=8
    
    # Require uppercase letters in password.
    password.require.uppercase=false
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
Back to Top