- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 21 for insertID (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/ldap/LdapManager.java
} }); } /** * Inserts or updates a user in LDAP directory. * * @param user the user object to insert or update */ public void insert(final User user) { if (!fessConfig.isLdapAdminEnabled(user.getName())) { return; }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 86.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
} /** * Inserts a new character mapping item into the dictionary file. * * @param item the character mapping item to insert */ @Override public synchronized void insert(final CharMappingItem item) { try (MappingUpdater updater = new MappingUpdater(item)) { reload(updater);Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 20 05:56:45 GMT 2025 - 15.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/BadWordService.java
* @return Optional entity containing the bad word if found. */ public OptionalEntity<BadWord> getBadWord(final String id) { return badWordBhv.selectByPK(id); } /** * Stores (inserts or updates) a bad word. * @param badWord The bad word to store. */ public void store(final BadWord badWord) { badWordBhv.insertOrUpdate(badWord, op -> op.setRefreshPolicy(Constants.TRUE));Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 8.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
public OptionalEntity<User> getUserByName(final String username) { return userBhv.selectEntity(cb -> { cb.query().setName_Equal(username); }); } /** * Stores (inserts or updates) a user in the system. * Handles user authentication setup and database persistence. * If the surname is blank, it will be set to the user's name. * * @param user the user entity to store
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Mon Nov 24 02:07:40 GMT 2025 - 9.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
} entity.setLabelTypeIds(labelTypeIds.toArray(new String[labelTypeIds.size()])); } return entity; }); } /** * Stores (inserts or updates) an elevate word and manages its associated label type mappings. * * @param elevateWord the elevate word entity to store */ public void store(final ElevateWord elevateWord) {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 18.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ingest/IngestFactory.java
/** * Default constructor. */ public IngestFactory() { // Default constructor } /** * Adds an ingester to the factory. * The ingester is inserted into the collection and the array is re-sorted by priority. * This method is thread-safe. * * @param ingester the ingester to add */ public synchronized void add(final Ingester ingester) {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 2.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
deleteTempFile(tempFile); return; } try { configParser.getWebConfig().ifPresent(c -> webConfigBhv.insert(c)); configParser.getFileConfig().ifPresent(c -> fileConfigBhv.insert(c)); labelTypeBhv.batchInsert(Arrays.stream(configParser.getLabelTypes()).collect(Collectors.toList())); if (logger.isInfoEnabled()) {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Mon Nov 24 02:07:40 GMT 2025 - 32.1K bytes - Click Count (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataService.java
super.insert(accessResult, accessResult.getId() == null ? OpType.CREATE : OpType.INDEX); } /** * Updates an access result in the OpenSearch index. * * @param accessResult The access result to update. */ @Override public void update(final OpenSearchAccessResult accessResult) { super.insert(accessResult, OpType.INDEX); } /**
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 11.1K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/HashBiMap.java
} } } /** * Returns the bucket (in either the K-to-V or V-to-K tables) where elements with the specified * hash could be found, if present, or could be inserted. */ private int bucket(int hash) { return hash & (hashTableKToV.length - 1); } /** Given a key, returns the index of the entry in the tables, or ABSENT if not found. */Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Dec 16 14:46:34 GMT 2025 - 37.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
// write log if (fessConfig.isLoggingSearchUseLogfile()) { searchLogList.forEach(this::writeSearchLogEvent); } // insert search log storeSearchLogList(searchLogList); // update suggest index if (fessConfig.isSuggestSearchLog()) {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 26.4K bytes - Click Count (0)