- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 1,208 for Insert (0.18 sec)
-
src/main/java/org/codelibs/fess/es/user/bsentity/BsRole.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/bsbhv/BsSearchLogBhv.java
// ====== public void insert(SearchLog entity) { doInsert(entity, null); } public void insert(SearchLog entity, RequestOptionCall<IndexRequestBuilder> opLambda) { entity.asDocMeta().indexOption(opLambda); doInsert(entity, null); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java
return userInfoBhv.selectByPK(userCode).map(userInfo -> { final FavoriteLog favoriteLog = new FavoriteLog(); favoriteLogLambda.accept(userInfo, favoriteLog); favoriteLogBhv.insert(favoriteLog); if (fessConfig.isLoggingSearchUseLogfile()) { ComponentUtil.getSearchLogHelper().writeSearchLogEvent(favoriteLog); } return true; }).orElse(false);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsCrawlingInfoParam.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/synonym/SynonymFileTest.java
assertEquals(5, itemList1.size()); final SynonymItem synonymItem1 = new SynonymItem(0, new String[] { "z1", "z2" }, new String[] { "Z1", "Z2" }); synonymFile.insert(synonymItem1); final PagingList<SynonymItem> itemList2 = synonymFile.selectList(0, 20); assertEquals(6, itemList2.size()); assertEquals("z1", itemList2.get(5).getInputs()[0]);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/bsentity/BsFavoriteLog.java
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/java/org/codelibs/fess/app/service/GroupService.java
ComponentUtil.getLdapManager().apply(g); return g; }); } public void store(final Group group) { ComponentUtil.getLdapManager().insert(group); groupBhv.insertOrUpdate(group, op -> { op.setRefreshPolicy(Constants.TRUE); }); } public void delete(final Group group) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleService.java
} public OptionalEntity<Role> getRole(final String id) { return roleBhv.selectByPK(id); } public void store(final Role role) { ComponentUtil.getLdapManager().insert(role); roleBhv.insertOrUpdate(role, op -> { op.setRefreshPolicy(Constants.TRUE); }); } public void delete(final Role role) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CharMappingService.java
} public void store(final String dictId, final CharMappingItem charMappingItem) { getCharMappingFile(dictId).ifPresent(file -> { if (charMappingItem.getId() == 0) { file.insert(charMappingItem); } else { file.update(charMappingItem); } }); } public void delete(final String dictId, final CharMappingItem charMappingItem) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ProtwordsService.java
} public void store(final String dictId, final ProtwordsItem protwordsItem) { getProtwordsFile(dictId).ifPresent(file -> { if (protwordsItem.getId() == 0) { file.insert(protwordsItem); } else { file.update(protwordsItem); } }); } public void delete(final String dictId, final ProtwordsItem protwordsItem) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.1K bytes - Viewed (0)