- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for UserInfo (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
searchLog.getUserInfo().ifPresent(userInfo -> { final String code = userInfo.getId(); final UserInfo oldUserInfo = userInfoMap.get(code); if (oldUserInfo != null) { userInfo.setCreatedAt(oldUserInfo.getCreatedAt()); } userInfoMap.put(code, userInfo); });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
bhv.selectCursor(cb -> { cb.query().matchAll(); cb.query().addOrderBy_CreatedAt_Asc(); }, new LogEntityRowHandler<UserInfo>() { @Override public void handle(final UserInfo entity) { final StringBuilder buf = new StringBuilder(); buf.append('{'); appendJson("id", entity.getId(), buf).append(',');
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
} else if (e instanceof final FavoriteLog favoriteLog) { favoriteLogBhv.delete(favoriteLog); } else if (e instanceof final UserInfo userInfo) { userInfoBhv.delete(userInfo); } else if (e instanceof final SearchLog searchLog) { searchLogBhv.delete(searchLog); } else { throw new FessSystemException("Unknown log entity: " + e); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp
<la:errors property="userInfo"/> <div class="form-check"> <la:checkbox styleId="userInfo" styleClass="form-check-input" property="userInfo"/> <label for="userInfo" class="form-check-label">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 14 00:36:40 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
fessConfig.setCrawlingThreadCount(form.crawlingThreadCount); fessConfig.setSearchLog(isCheckboxEnabled(form.searchLog)); fessConfig.setUserInfo(isCheckboxEnabled(form.userInfo)); fessConfig.setUserFavorite(isCheckboxEnabled(form.userFavorite)); fessConfig.setWebApiJson(isCheckboxEnabled(form.webApiJson)); fessConfig.setAppValue(form.appValue);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
public String searchLog; /** * Enable or disable user information tracking. * When enabled, user information is stored and tracked. */ @Size(max = 10) public String userInfo; /** * Enable or disable user favorite functionality. * When enabled, users can save favorite search results. */ @Size(max = 10) public String userFavorite; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.searchLog=Search Log labels.sort=Sort labels.start=Start labels.loginRequired=Login Required labels.loginLink=Show Login Link labels.threadName=Thread Name labels.url=URL labels.userFavorite=Favorite Log labels.userInfo=User Info labels.webApiJson=JSON Response labels.webConfigName=Web Crawl Config Name labels.allLanguages=All Languages labels.dictId=Dictionary ID labels.docId=Document ID labels.endTime=End Time labels.hq=hq
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
src/main/resources/fess_label_zh_TW.properties
labels.queryId=查詢ID labels.rt=rt labels.searchLog=搜尋日誌 labels.sort=排序 labels.start=開始位置 labels.loginRequired=需要登入 labels.loginLink=顯示登入連結 labels.threadName=執行緒名稱 labels.url=URL labels.userFavorite=收藏日誌 labels.userInfo=使用者資訊 labels.webApiJson=JSON響應 labels.webConfigName=Web爬網配置名稱 labels.allLanguages=所有語言 labels.dictId=字典ID labels.docId=文檔ID labels.endTime=結束時間 labels.hq=hq labels.inputs=輸入 labels.jobLogging=日誌記錄
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
okhttp/src/jvmTest/resources/web-platform-test-urltestdata.txt
data:example.com/ s:data p:example.com/ javascript:example.com/ s:javascript p:example.com/ mailto:example.com/ s:mailto p:example.com/ # Based on http://trac.webkit.org/browser/trunk/LayoutTests/fast/url/segments-userinfo-vs-host.html http:@www.example.com about:blank s:http h:www.example.com p:/ http:/@www.example.com s:http h:www.example.com p:/ http://@www.example.com s:http h:www.example.com p:/
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
public static final String PURGE_SEARCH_LOG_DAY_PROPERTY = "purge.searchlog.day"; /** Property key for user info purge day configuration. */ public static final String PURGE_USER_INFO_DAY_PROPERTY = "purge.userinfo.day"; /** Property key for job log purge day configuration. */ public static final String PURGE_JOB_LOG_DAY_PROPERTY = "purge.joblog.day"; /** Property key for bot-based purge configuration. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0)