Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 328 for valide (0.05 seconds)

  1. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

        }
    
        @Test
        public void test_buildFilePath_consistentHashForSameUrl() {
            final Path result1 = indexExportJob.buildFilePath("/export", "not valid %%%", new HtmlIndexExportFormatter());
            final Path result2 = indexExportJob.buildFilePath("/export", "not valid %%%", new HtmlIndexExportFormatter());
            assertEquals(result1, result2);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

         *
         * @param form the edit form
         * @return HTML response for the edit page
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
            validate(form, messages -> {}, this::asListHtml);
            final String id = form.id;
            keyMatchService.getKeyMatch(id).ifPresent(entity -> {
                copyBeanToBean(entity, form, op -> {});
            }).orElse(() -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 16.2K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java

         * Show the edit page.
         * @param form The edit form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
            validate(form, messages -> {}, this::asListHtml);
            final String id = form.id;
            badWordService.getBadWord(id).ifPresent(entity -> {
                copyBeanToBean(entity, form, op -> {});
            }).orElse(() -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 23 23:57:26 GMT 2026
    - 18K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/script/ScriptEngineFactory.java

         * @return The script engine.
         */
        public ScriptEngine getScriptEngine(final String name) {
            if (name == null) {
                throw new ScriptEngineException("Script engine name parameter is null. A valid script engine name must be provided.");
            }
            final ScriptEngine scriptEngine = scriptEngineMap.get(name.toLowerCase(Locale.ROOT));
            if (scriptEngine != null) {
                return scriptEngine;
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

         * Show the edit page.
         * @param form The edit form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
            validate(form, messages -> {}, this::asListHtml);
            final String id = form.id;
            dataConfigService.getDataConfig(id).ifPresent(entity -> {
                copyBeanToBean(entity, form, copyOp -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 21K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/AdminBoostdocAction.java

         * Show the edit page.
         * @param form The edit form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
            validate(form, messages -> {}, this::asListHtml);
            final String id = form.id;
            boostDocumentRuleService.getBoostDocumentRule(id).ifPresent(entity -> {
                copyBeanToBean(entity, form, op -> {});
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java

         * @return HTML response for the job edit form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
            validate(form, messages -> {}, this::asListHtml);
            final String id = form.id;
            scheduledJobService.getScheduledJob(id).ifPresent(entity -> {
                loadScheduledJob(form, entity);
            }).orElse(() -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 21.8K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

            }
            return facetFieldSet != null && facetFieldSet.contains(field);
        }
    
        /**
         * Checks if the specified sort value is valid for facet sorting.
         *
         * @param sort the sort value to check
         * @return true if the sort value is valid for facets ("count" or "index"), false otherwise
         */
        public boolean isFacetSortValue(final String sort) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 21.9K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreatorTest.java

            assertNull(config.getMailFromName());
            assertNull(config.getMailFromAddress());
            assertNull(config.getMailHostname());
        }
    
        // Test creator instance creation with valid config
        @Test
        public void test_multipleCreatorInstances() {
            FessConfig config = new FessConfig.SimpleImpl() {
                private static final long serialVersionUID = 1L;
            };
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/AdminRelatedcontentAction.java

         * @return HTML response for the edit form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
            validate(form, messages -> {}, this::asListHtml);
            final String id = form.id;
            relatedContentService.getRelatedContent(id).ifPresent(entity -> {
                copyBeanToBean(entity, form, op -> {});
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 15.5K bytes
    - Click Count (0)
Back to Top