Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,202 for other (0.16 sec)

  1. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java

                return false;
            }
            final KuromojiItem other = (KuromojiItem) obj;
            if (!Objects.equals(pos, other.pos) || !Objects.equals(reading, other.reading) || !Objects.equals(segmentation, other.segmentation)
                    || !Objects.equals(token, other.token)) {
                return false;
            }
            return true;
        }
    
        @Override
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

            }
            if ((obj == null) || (getClass() != obj.getClass())) {
                return false;
            }
            final CharMappingItem other = (CharMappingItem) obj;
            sort();
            other.sort();
            if (!Arrays.equals(inputs, other.inputs) || !output.equals(other.getOutput())) {
                return false;
            }
            return true;
        }
    
        @Override
        public String toString() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                    searchLog.setAccessType(Constants.SEARCH_LOG_ACCESS_TYPE_GSA);
                } else if (Constants.SEARCH_LOG_ACCESS_TYPE_OTHER.equals(accessType)) {
                    searchLog.setAccessType(Constants.SEARCH_LOG_ACCESS_TYPE_OTHER);
                } else if (Constants.SEARCH_LOG_ACCESS_TYPE_ADMIN.equals(accessType)) {
                    searchLog.setAccessType(Constants.SEARCH_LOG_ACCESS_TYPE_ADMIN);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20.8K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/FessBoot.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess;
    
    // DO NOT DEPEND OTHER JARs
    
    import java.io.File;
    import java.util.List;
    import java.util.Properties;
    
    import org.apache.catalina.Container;
    import org.apache.catalina.Context;
    import org.apache.catalina.Host;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/packaging/deb/init.d/fess

    PID_DIR=${packaging.fess.pid.dir}
    
    # End of variables that can be overwritten in $DEFAULT
    
    # overwrite settings from default file
    if [ -f "$DEFAULT" ]; then
    	. "$DEFAULT"
    fi
    
    # Define other required variables
    PID_FILE="$PID_DIR/$NAME.pid"
    DAEMON=$FESS_HOME/bin/fess
    DAEMON_OPTS="-d -p $PID_FILE --default.path.conf=$CONF_DIR --default.path.home=$FESS_HOME --default.path.logs=$LOG_DIR --default.path.data=$DATA_DIR"
    
    Shell Script
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                return FormatType.PING;
            }
            if ("suggest-words".equals(type)) {
                return FormatType.SUGGEST;
            }
            // default
            return FormatType.OTHER;
        }
    
        @Override
        public boolean matches(final HttpServletRequest request) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            if (!fessConfig.isWebApiJson()) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K bytes
    - Viewed (0)
  7. dbflute_fess/dfprop/outsideSqlMap.dfprop

        # o sqlPackage: (NotRequired - Default all packages)
        #  The package of SQL file for outsideSql.
        #  This is basically for narrowing SQL-searching target,
        #  for example, when the project has SQL files for other framework.
        #  So basically you don't need this.
        #
        #  You can use variable '$$PACKAGE_BASE$$' that means 'packageBase'.
        #  But you need to make SQL files at 'exbhv' under the set package
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/suggest/SuggestForm.java

    /*
     * Copyright 2012-2024 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 700 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/wizard/StartCrawlingForm.java

    /*
     * Copyright 2012-2024 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 706 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/util/BooleanFunction.java

    /*
     * Copyright 2012-2024 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 739 bytes
    - Viewed (0)
Back to top