- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for update_config (0.21 sec)
-
scripts/docs.py
""" Verify main mkdocs.yml content to make sure it uses the latest language names. """ typer.echo("Verifying mkdocs.yml") config = get_en_config() updated_config = get_updated_config_content() if config != updated_config: typer.secho( "docs/en/mkdocs.yml outdated from docs/language_names.yml, " "update language_names.yml and run "
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 08 11:01:17 UTC 2024 - 13.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
verifyToken(() -> asHtml(path_AdminGeneral_AdminGeneralJsp)); updateConfig(fessConfig, form); saveInfo(messages -> messages.addSuccessUpdateCrawlerParams(GLOBAL)); return redirect(getClass()); } public static void updateConfig(final FessConfig fessConfig, final EditForm form) { fessConfig.setLoginRequired(isCheckboxEnabled(form.loginRequired));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/general/ApiAdminGeneralAction.java
final EditBody newBody = new EditBody(); AdminGeneralAction.updateForm(fessConfig, newBody); BeanUtil.copyBeanToBean(body, newBody, CopyOptions::excludeNull); AdminGeneralAction.updateConfig(fessConfig, newBody); return asJson(new ApiResponse().status(Status.OK).result()); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
ComponentUtil.getRelatedContentHelper().update(); ComponentUtil.getRelatedQueryHelper().update(); ComponentUtil.getKeyMatchHelper().update(); ComponentUtil.getLdapManager().updateConfig(); if (resetJobs) { ComponentUtil.getJobManager().reboot(); } updateSystemProperties(); ComponentUtil.getRankFusionProcessor().update(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 17 12:10:08 UTC 2024 - 27.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
fessConfig.getLdapAdminSecurityPrincipal(), // fessConfig.getLdapAdminSecurityCredentials()); } public void updateConfig() { isBind = false; } protected boolean validate() { if (!isBind) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 65.9K bytes - Viewed (0)