- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for favorite_log (0.14 sec)
-
src/main/java/org/codelibs/fess/es/log/bsbhv/BsFavoriteLogBhv.java
return createOptionalEntity(doSelectByPK(id, tp), id); } @Override protected Class<? extends FavoriteLog> typeOfSelectedEntity() { return FavoriteLog.class; } @Override protected Class<FavoriteLog> typeOfHandlingEntity() { return FavoriteLog.class; } @Override protected Class<FavoriteLogCB> typeOfHandlingConditionBean() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/FavoriteLogDbm.java
{ setupEpg(_epgMap, et -> ((FavoriteLog) et).getCreatedAt(), (et, vl) -> ((FavoriteLog) et).setCreatedAt(DfTypeUtil.toLocalDateTime(vl)), "createdAt"); setupEpg(_epgMap, et -> ((FavoriteLog) et).getDocId(), (et, vl) -> ((FavoriteLog) et).setDocId(DfTypeUtil.toString(vl)), "docId"); setupEpg(_epgMap, et -> ((FavoriteLog) et).getQueryId(), (et, vl) -> ((FavoriteLog) et).setQueryId(DfTypeUtil.toString(vl)),
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/bsentity/BsFavoriteLog.java
@Override public FavoriteLogDbm asDBMeta() { return FavoriteLogDbm.getInstance(); } @Override public String asTableDbName() { return "favorite_log"; } // =================================================================================== // Source
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.6K bytes - Viewed (0) -
src/main/resources/esclient.xml
</postConstruct> <!-- fess_log index --> <postConstruct name="addIndexConfig"> <arg>"fess_log.click_log/click_log"</arg> </postConstruct> <postConstruct name="addIndexConfig"> <arg>"fess_log.favorite_log/favorite_log"</arg> </postConstruct> <postConstruct name="addIndexConfig"> <arg>"fess_log.search_log/search_log"</arg> </postConstruct> <postConstruct name="addIndexConfig">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Oct 21 12:20:52 UTC 2024 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/cbean/bs/BsFavoriteLogCB.java
@Override public FavoriteLogDbm asDBMeta() { return FavoriteLogDbm.getInstance(); } @Override public String asTableDbName() { return "favorite_log"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java
} if ("click_log".equals(name)) { return writeNdjsonResponse(id, getClickLogNdjsonWriteCall()); } if ("favorite_log".equals(name)) { return writeNdjsonResponse(id, getFavoriteLogNdjsonWriteCall()); } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:15 UTC 2024 - 6.1K 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<FavoriteLog>() { @Override public void handle(final FavoriteLog entity) { final StringBuilder buf = new StringBuilder(); buf.append('{');
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 28.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsFavoriteLogCQ.java
// ============= @Override public String asTableDbName() { return "favorite_log"; } @Override public String xgetAliasName() { return "favorite_log"; } // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 42.7K bytes - Viewed (0) -
src/main/resources/fess_config.properties
file.role.from.file=true ftp.role.from.file=true # backup index.backup.targets=fess_basic_config.bulk,fess_config.bulk,fess_user.bulk,system.properties,fess.json,doc.json index.backup.log.targets=click_log.ndjson,favorite_log.ndjson,search_log.ndjson,user_info.ndjson index.backup.log.load.timeout=60000 # logging logging.search.docs.enabled=true
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Oct 01 14:13:38 UTC 2024 - 30.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/exentity/FavoriteLog.java
import java.time.format.DateTimeFormatter; import java.util.Map; import org.codelibs.fess.entity.SearchLogEvent; import org.codelibs.fess.es.log.bsentity.BsFavoriteLog; /** * @author FreeGen */ public class FavoriteLog extends BsFavoriteLog implements SearchLogEvent { private static final long serialVersionUID = 1L; private Map<String, Object> fields; @Override public String getId() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.7K bytes - Viewed (0)