Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 292 for evicting (0.15 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

                        form.name = null;
                    });
                    form.crudMode = CrudMode.CREATE;
                });
            });
        }
    
        /**
         * Displays the form for editing an existing web crawler configuration.
         *
         * @param form the edit form containing web config ID
         * @return HTML response for the web config edit form
         */
        @Execute
        @Secured({ ROLE })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

                    form.crudMode = CrudMode.CREATE;
                });
            }).renderWith(data -> {
                registerLabels(data);
            });
        }
    
        /**
         * Shows the form for editing an existing elevate word.
         *
         * @param form edit form containing the elevate word ID
         * @return HTML response for the edit elevate word form
         */
        @Execute
        @Secured({ ROLE })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.5.md

        - [Client Binaries](#client-binaries-8)
        - [Server Binaries](#server-binaries-8)
      - [Major Themes](#major-themes)
      - [Features](#features)
      - [Known Issues](#known-issues)
      - [Notable Changes to Existing Behavior](#notable-changes-to-existing-behavior)
      - [Deprecations](#deprecations)
      - [Action Required Before Upgrading](#action-required-before-upgrading)
      - [External Dependency Version Information](#external-dependency-version-information)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java

                    form.crudMode = CrudMode.CREATE;
                });
            }).renderWith(data -> {
                registerWebConfigItems(data);
            });
        }
    
        /**
         * Displays the form for editing an existing request header item.
         *
         * @param form the edit form containing the ID of the item to edit
         * @return HTML response for the edit form
         */
        @Execute
        @Secured({ ROLE })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

                    form.crudMode = CrudMode.CREATE;
                });
            }).renderWith(data -> {
                registerForms(data);
            });
        }
    
        /**
         * Displays the form for editing an existing user.
         *
         * @param form the edit form containing user ID
         * @return HTML response for the user edit form
         */
        @Execute
        @Secured({ ROLE })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                    form.dictId = dictId;
                });
            });
        }
    
        /**
         * Displays the form for editing an existing synonym item.
         *
         * @param form the edit form containing synonym item data
         * @return HTML response for the edit synonym form
         */
        @Execute
        @Secured({ ROLE })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

                });
            }).renderWith(data -> {
                registerProtocolSchemeItems(data);
                registerWebConfigItems(data);
            });
        }
    
        /**
         * Displays the form for editing an existing web authentication configuration.
         *
         * @param form the edit form containing web authentication ID
         * @return HTML response for the web authentication edit form
         */
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/entity/QueryContextTest.java

            // Should not throw exception
        }
    
        // Test addFieldLog with existing field
        public void test_addFieldLog_existingField() {
            Map<String, List<String>> fieldLogMap = new HashMap<>();
            List<String> existingList = new ArrayList<>();
            existingList.add("existing");
            fieldLogMap.put("field", existingList);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  9. src/packaging/common/scripts/preinst

        install|upgrade)
    
            # Create fess group if not existing
            if ! getent group "$FESS_GROUP" > /dev/null 2>&1 ; then
                echo -n "Creating $FESS_GROUP group..."
                addgroup --quiet --system "$FESS_GROUP"
                echo " OK"
            fi
    
            # Create fess user if not existing
            if ! id $FESS_USER > /dev/null 2>&1 ; then
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 01 09:48:15 UTC 2016
    - 2.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

            getDoc(form).ifPresent(entity -> {
                form.doc = fessConfig.convertToEditableDoc(entity);
            });
            return asEditHtml();
        }
    
        /**
         * Displays the form for editing an existing document.
         *
         * @param form the edit form containing document ID
         * @return HTML response for the document edit form
         */
        @Execute
        @Secured({ ROLE })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.1K bytes
    - Viewed (1)
Back to top