Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Commit (0.22 sec)

  1. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

                        } else {
                            itemList.add(item);
                        }
                    }
                }
                if (updater != null) {
                    final ProtwordsItem item = updater.commit();
                    if (item != null) {
                        itemList.add(item);
                    }
                }
                protwordsItemList = itemList;
            } catch (final IOException e) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

                        }
                    } else {
                        itemList.add(item);
                    }
                }
                if (updater != null) {
                    final StemmerOverrideItem item = updater.commit();
                    if (item != null) {
                        itemList.add(item);
                    }
                }
                stemmerOverrideItemList = itemList;
            } catch (final IOException e) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                        deleteDocuments();
                    }
                }
            }
            return true;
        }
    
        @Override
        public void commit() {
            try {
                if (logger.isDebugEnabled()) {
                    logger.debug("Shutting down thread executor.");
                }
                executor.shutdown();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

                    logger.warn("Failed to process Ingest[{}]", ingester.getClass().getSimpleName(), e);
                }
            }
            return target;
        }
    
        @Override
        public void commit() {
            synchronized (docList) {
                if (!docList.isEmpty()) {
                    final IndexingHelper indexingHelper = ComponentUtil.getIndexingHelper();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

                        }
                    } else {
                        itemList.add(item);
                    }
                }
                if (updater != null) {
                    final KuromojiItem item = updater.commit();
                    if (item != null) {
                        itemList.add(item);
                    }
                }
                kuromojiItemList = itemList;
            } catch (final IOException e) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

                        } else {
                            itemList.add(item);
                        }
                    }
                }
                if (updater != null) {
                    final StopwordsItem item = updater.commit();
                    if (item != null) {
                        itemList.add(item);
                    }
                }
                stopwordsItemList = itemList;
            } catch (final IOException e) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallback.java

    public interface IndexUpdateCallback {
    
        void store(DataStoreParams paramMap, Map<String, Object> dataMap);
    
        long getDocumentSize();
    
        long getExecuteTime();
    
        void commit();
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 924 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

                        }
                    } else {
                        itemList.add(item);
                    }
                }
                if (updater != null) {
                    final CharMappingItem item = updater.commit();
                    if (item != null) {
                        itemList.add(item);
                    }
                }
                mappingItemList = itemList;
            } catch (final IOException e) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

                                itemList.add(item);
                            }
                        }
                    }
                }
                if (updater != null) {
                    final SynonymItem item = updater.commit();
                    if (item != null) {
                        itemList.add(item);
                    }
                }
                synonymItemList = itemList;
            } catch (final IOException e) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. true */
        String INDEXER_FAVORITE_COUNT_ENABLED = "indexer.favorite.count.enabled";
    
        /** The key of the configuration. e.g. 5000 */
        String INDEXER_WEBFS_COMMIT_MARGIN_TIME = "indexer.webfs.commit.margin.time";
    
        /** The key of the configuration. e.g. 3600 */
        String INDEXER_WEBFS_MAX_EMPTY_LIST_COUNT = "indexer.webfs.max.empty.list.count";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
Back to top