Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for guid (3.01 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

        /**
         * The simple implementation for configuration.
         * @author FreeGen
         */
        public static class SimpleImpl extends ObjectiveConfig implements FessEnv {
    
            /** The serial version UID for object serialization. (Default) */
            private static final long serialVersionUID = 1L;
    
            public String getLastaDiSmartDeployMode() {
                return get(FessEnv.lasta_di_SMART_DEPLOY_MODE);
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_ja.properties

    labels.file_auth_password=パスワード
    labels.file_auth_parameters=パラメーター
    labels.file_auth_file_crawling_config=ファイルクロール設定
    labels.file_auth_scheme_samba=Samba
    labels.file_auth_scheme_ftp=FTP
    labels.pagination_page_guide_msg={0}/{1} ({2} 件)
    labels.list_could_not_find_crud_table=登録されていません。
    labels.scheduledjob_configuration=ジョブスケジューラ
    labels.scheduledjob_title_details=ジョブ
    labels.scheduledjob_name=名前
    labels.scheduledjob_target=対象
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  3. src/main/java/org/codelibs/fess/helper/QueryHelper.java

    import static org.codelibs.core.stream.StreamUtil.stream;
    
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.UUID;
    import java.util.function.Consumer;
    
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpSession;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String LDAP_ATTR_DEPARTMENT_NUMBER = "ldap.attr.departmentNumber";
    
        /** The key of the configuration. e.g. uidNumber */
        String LDAP_ATTR_UID_NUMBER = "ldap.attr.uidNumber";
    
        /** The key of the configuration. e.g. gidNumber */
        String LDAP_ATTR_GID_NUMBER = "ldap.attr.gidNumber";
    
        /** The key of the configuration. e.g. homeDirectory */
        String LDAP_ATTR_HOME_DIRECTORY = "ldap.attr.homeDirectory";
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  5. src/main/java/org/codelibs/fess/helper/SystemHelper.java

    import java.util.List;
    import java.util.Locale;
    import java.util.Map;
    import java.util.Map.Entry;
    import java.util.Properties;
    import java.util.Set;
    import java.util.TimeZone;
    import java.util.UUID;
    import java.util.concurrent.ExecutionException;
    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.atomic.AtomicBoolean;
    import java.util.concurrent.atomic.AtomicInteger;
    import java.util.function.Supplier;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

    import org.lastaflute.core.message.UserMessage;
    
    /**
     * The keys for message.
     * @author FreeGen
     */
    public class FessMessages extends FessLabels {
    
        /** The serial version UID for object serialization. (Default) */
        private static final long serialVersionUID = 1L;
    
        /** The key of the message:  */
        public static final String ERRORS_front_header = "{errors.front_header}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

    package org.codelibs.fess.api.engine;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.util.Locale;
    import java.util.UUID;
    
    import javax.annotation.PostConstruct;
    import javax.servlet.FilterChain;
    import javax.servlet.ServletException;
    import javax.servlet.ServletInputStream;
    import javax.servlet.ServletOutputStream;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  8. README.md

    Fess also contains a Crawler, which can crawl documents on a [web server](https://fess.codelibs.org/14.12/admin/webconfig-guide.html), [file system](https://fess.codelibs.org/14.12/admin/fileconfig-guide.html), or [Data Store](https://fess.codelibs.org/14.12/admin/dataconfig-guide.html) (such as a CSV or database). Many file formats are supported including (but not...
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Feb 25 00:40:07 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.direction.sponsor;
    
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.io.StringWriter;
    import java.util.UUID;
    import java.util.function.Supplier;
    import java.util.stream.Collectors;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.Date;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Locale;
    import java.util.Map;
    import java.util.UUID;
    import java.util.function.Supplier;
    
    import javax.annotation.PostConstruct;
    import javax.servlet.FilterChain;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServletRequest;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K bytes
    - Viewed (0)
Back to top