Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for StopwordsFile (0.27 sec)

  1. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalEntity;
    
    public class StopwordsFile extends DictionaryFile<StopwordsItem> {
        private static final String STOPWORDS = "stopwords";
    
        List<StopwordsItem> stopwordsItemList;
    
        public StopwordsFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/StopwordsService.java

            }).orElse(Collections.emptyList());
        }
    
        public OptionalEntity<StopwordsFile> getStopwordsFile(final String dictId) {
            return dictionaryManager.getDictionaryFile(dictId).filter(StopwordsFile.class::isInstance)
                    .map(file -> OptionalEntity.of((StopwordsFile) file)).orElse(OptionalEntity.empty());
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords_upload.jsp

                                        <label for="stopwordsFile" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.dict_stopwords_file"/></label>
                                        <div class="col-sm-9">
                                            <input type="file" id="stopwordsFile" name="stopwordsFile" class="form-control-file"/>
                                        </div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java

            form.dictId = dictId;
            validateApi(form, messages -> {});
            final StopwordsFile file = stopwordsService.getStopwordsFile(form.dictId).orElseGet(() -> {
                throwValidationErrorApi(messages -> messages.addErrorsFailedToUploadStopwordsFile(GLOBAL));
                return null;
            });
            try (InputStream inputStream = form.stopwordsFile.getInputStream()) {
                file.update(inputStream);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/UploadForm.java

    import org.lastaflute.web.validation.Required;
    
    /**
     * @author ma2tani
     */
    public class UploadForm {
    
        @Required
        public String dictId;
    
        @Required
        public MultipartFormFile stopwordsFile;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 941 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsCreator.java

            dictionaryManager.addCreator(this);
        }
    
        @Override
        protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
            return new StopwordsFile(id, path, timestamp).manager(dictionaryManager);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

            verifyToken(() -> uploadpage(form.dictId));
            return stopwordsService.getStopwordsFile(form.dictId).map(file -> {
                try (InputStream inputStream = form.stopwordsFile.getInputStream()) {
                    file.update(inputStream);
                } catch (final IOException e) {
                    logger.warn("Failed to process a request.", e);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_de.properties

    labels.doc_score=Bewertung:
    labels.development_mode_warning=Läuft im Entwicklermodus. Bitte installieren Sie einen Standalone-OpenSearch-Server für produktiven Einsatz.
    labels.logLevel=Protokoll-Level
    labels.stopwordsFile=Stopwörter-Datei
    labels.stemmerOverrideFile=Stemmer-Override-Datei
    labels.protwordsFile=Protwords-Datei
    labels.urlExpr=Bedingung
    labels.ldapGroupFilter=Gruppen-Filter
    labels.menu_searchLog=Such-Protokoll
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_en.properties

    labels.scriptResult=Result
    labels.scriptType=Executor
    labels.segmentation=Segmentation
    labels.startTime=Start Time
    labels.target=Target
    labels.token=Token
    labels.synonymFile=Synonym File
    labels.stopwordsFile=Stopwords File
    labels.stemmerOverrideFile=Stemmer Override File
    labels.mappingFile=Mapping File
    labels.protwordsFile=Protwords File
    labels.kuromojiFile=Kuromoji File
    labels.elevateWordFile=Additional Word File
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_ru.properties

    labels.esreq_request_file=Request File
    labels.requestFile=Request File
    labels.esreq_button_upload=Send
    labels.facet_is_not_found=Нет совпадений.
    labels.expires=Expired
    labels.logLevel=Log Level
    labels.stopwordsFile=Stopwords File
    labels.stemmerOverrideFile=Stemmer Override File
    labels.protwordsFile=Protwords File
    labels.urlExpr=Condition
    labels.ldapGroupFilter=Group Filter
    labels.ldapMemberofAttribute=memberOf Attribute
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 45.6K bytes
    - Viewed (0)
Back to top