Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for stopWords (0.06 sec)

  1. src/main/resources/esclient.xml

    		</postConstruct>
    		<postConstruct name="addConfigFile">
    			<arg>"fess"</arg>
    			<arg>"cs/stopwords.txt"</arg>
    		</postConstruct>
    		<postConstruct name="addConfigFile">
    			<arg>"fess"</arg>
    			<arg>"da/stopwords.txt"</arg>
    		</postConstruct>
    		<postConstruct name="addConfigFile">
    			<arg>"fess"</arg>
    			<arg>"de/stopwords.txt"</arg>
    		</postConstruct>
    		<postConstruct name="addConfigFile">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Oct 21 12:20:52 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

    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
        public String getType() {
            return STOPWORDS;
        }
    
        @Override
        public String getPath() {
            return path;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.dict.stopwords;
    
    import org.apache.commons.lang3.StringUtils;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.dict.DictionaryItem;
    
    public class StopwordsItem extends DictionaryItem {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    online.help.name.reqheader=reqheader
    online.help.name.dict.synonym=synonym
    online.help.name.dict=dict
    online.help.name.dict.kuromoji=kuromoji
    online.help.name.dict.protwords=protwords
    online.help.name.dict.stopwords=stopwords
    online.help.name.dict.stemmeroverride=stemmeroverride
    online.help.name.dict.mapping=mapping
    online.help.name.webconfig=webconfig
    online.help.name.searchlist=searchlist
    online.help.name.log=log
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Oct 01 14:13:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. protwords */
        String ONLINE_HELP_NAME_DICT_PROTWORDS = "online.help.name.dict.protwords";
    
        /** The key of the configuration. e.g. stopwords */
        String ONLINE_HELP_NAME_DICT_STOPWORDS = "online.help.name.dict.stopwords";
    
        /** The key of the configuration. e.g. stemmeroverride */
        String ONLINE_HELP_NAME_DICT_STEMMEROVERRIDE = "online.help.name.dict.stemmeroverride";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (1)
Back to top