Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 82 for INVALID (0.15 sec)

  1. src/main/resources/fess_message_fr.properties

    errors.failed_to_process_sso_request=Échec du traitement de la requête : {0}
    
    errors.invalid_query_unknown=La requête donnée a une condition inconnue.
    errors.invalid_query_parse_error=La requête donnée n'est pas valide.
    errors.invalid_query_sort_value=Le tri donné ({0}) n'est pas valide.
    errors.invalid_query_unsupported_sort_field=Le tri donné ({0}) n'est pas pris en charge.
    errors.invalid_query_unsupported_sort_order=L'ordre de tri donné ({0}) n'est pas pris en charge.
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Feb 06 22:59:17 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  2. src/main/resources/fess_message_de.properties

    errors.invalid_query_sort_value=Die angegebene Sortierung ({0}) ist ungültig.
    errors.invalid_query_unsupported_sort_field=Die angegebene Sortierung ({0}) wird nicht unterstützt.
    errors.invalid_query_unsupported_sort_order=Die angegebene Sortierreihenfolge ({0}) wird nicht unterstützt.
    
    errors.crud_invalid_mode=Ungültiger Modus (erwarteter Wert ist {0}, aber er ist {1}).
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Oct 29 15:01:03 GMT 2019
    - 11.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

                    logger.warn("{} is invalid path.", path, response.getContentException());
                } else {
                    logger.warn("{} is invalid path. The response is {}", path, response.getContentAsString());
                }
            } catch (final IOException e) {
                logger.warn("{} is invalid path.", path, e);
            }
            return null;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 46.9K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    storage.max.items.in.page=1000
    
    
    # ----------------------------------------------------------
    #                                                   Password
    #                                                     ------
    password.invalid.admin.passwords=\
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

            try {
                form.content = new String(FileUtil.readBytes(jspFile), Constants.UTF_8);
            } catch (final UnsupportedEncodingException e) {
                throw new FessSystemException("Invalid encoding", e);
            }
            saveToken();
            return asEditHtml(form);
        }
    
        @Execute
        @Secured({ ROLE })
        public HtmlResponse editAsUseDefault(final EditForm form) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/GeoInfo.java

                                                    messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY),
                                                    "Invalid geo point: " + pt);
                                        }
                                        try {
                                            final double lat = Double.parseDouble(values[0]);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 1000 */
        String STORAGE_MAX_ITEMS_IN_PAGE = "storage.max.items.in.page";
    
        /** The key of the configuration. e.g. admin */
        String PASSWORD_INVALID_ADMIN_PASSWORDS = "password.invalid.admin.passwords";
    
        /**
         * Get the value of property as {@link String}.
         * @param propertyKey The key of the property. (NotNull)
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  8. src/main/java/org/codelibs/fess/es/log/exbhv/SearchLogBhv.java

                    return LocalDateTime.ofInstant(instant, ZoneId.systemDefault());
                } catch (final DateTimeParseException e) {
                    logger.debug("Invalid date format: {}", value, e);
                }
            }
            return DfTypeUtil.toLocalDateTime(value);
        }
    
        @SuppressWarnings("unchecked")
        @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/main/assemblies/files/service.bat

    set SCRIPT_DIR=%~dp0
    for %%I in ("%SCRIPT_DIR%..") do set FESS_HOME=%%~dpfI
    
    rem Detect JVM version to figure out appropriate executable to use
    if not exist "%JAVA_HOME%\bin\java.exe" (
    echo JAVA_HOME points to an invalid Java installation (no java.exe found in "%JAVA_HOME%"^). Exiting...
    goto:eof
    )
    
    "%JAVA_HOME%\bin\java" -Xmx50M -version > nul 2>&1
    
    if errorlevel 1 (
    Batch File
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionAggregation.java

            aggregationAggregationBuilderList.add(builder);
        }
    
        // ===================================================================================
        //                                                                 Invalid Aggregation
        //                                                                       =============
        protected void checkEsInvalidAggregation(String name, Object value) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.4K bytes
    - Viewed (0)
Back to top