Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 160 for system (0.15 sec)

  1. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

                            elevateWord.setPermissions(permissions);
                            elevateWord.setBoost(StringUtil.isBlank(boost) ? 1.0f : Float.parseFloat(boost));
                            elevateWord.setCreatedBy(Constants.SYSTEM_USER);
                            elevateWord.setCreatedTime(now);
                            elevateWordBhv.insert(elevateWord);
                            final String id = elevateWord.getId();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    			<li class="nav-item has-treeview <c:if test="${param.menuCategoryType=='system'}">menu-open</c:if>">
    				<a href="#" class="nav-link <c:if test="${param.menuCategoryType=='system'}">active</c:if>">
    					<em class='nav-icon fa fa-laptop'>
    					<p>
    						<la:message key="labels.menu_system" />
    						<i class="right fas fa-angle-left"></i>
    					</p>
    				</a>
    				<ul class="nav nav-treeview">
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 15 20:55:28 GMT 2021
    - 17.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/admin/SystemInfoTests.java

            final Map<String, Object> res = JsonPath.from(response).getMap("response");
            assertTrue(res.containsKey("env_props"));
            assertTrue(res.containsKey("system_props"));
            assertTrue(res.containsKey("fess_props"));
            assertTrue(res.containsKey("bug_report_props"));
            assertEquals(new Integer(0), JsonPath.from(response).get("response.status"));
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/error/notFound.jsp

    <html>
    <head profile="http://a9.com/-/spec/opensearch/1.1/">
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title><la:message key="labels.system_error_title" /></title>
    <link href="${fe:url('/css/bootstrap.min.css')}" rel="stylesheet"
    	type="text/css" />
    <link href="${fe:url('/css/style.css')}" rel="stylesheet"
    	type="text/css" />
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  5. 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)....
    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)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_not_found_on_file_system = "{errors.not_found_on_file_system}";
    
        /** The key of the message: Could not open {0}. &lt;br/&gt;Please check if the file is associated with an application. */
        public static final String ERRORS_could_not_open_on_system = "{errors.could_not_open_on_system}";
    
        /** The key of the message: No more results could be displayed. */
    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/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_edit.jsp

    <div class="wrapper">
        <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="system"/>
            <jsp:param name="menuType" value="scheduler"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jan 16 12:54:35 GMT 2023
    - 9.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_ja.properties

    errors.design_file_is_unsupported_type = このファイルの種類はサポートされていません。
    errors.failed_to_create_crawling_config_at_wizard = クロール設定の作成に失敗しました。
    errors.design_editor_disabled = この機能は無効です。
    errors.not_found_on_file_system = 見つかりません。原因:  {0}
    errors.could_not_open_on_system = {0} を開くことができません。<br>ファイルがアプリケーションに関連付けられているか確認してください。
    errors.result_size_exceeded = これ以上の結果は表示できません。
    errors.target_file_does_not_exist = ファイル {0} が存在しません。
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 15.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

            return redirect(getClass()); // no-op
        }
    
        protected void asyncImport(final String fileName, final File tempFile) {
            final int fileType;
            if (fileName.startsWith("system") && fileName.endsWith(".properties")) {
                fileType = 1;
            } else if (fileName.startsWith("gsa") && fileName.endsWith(".xml")) {
                fileType = 2;
            } else if (fileName.endsWith(".bulk")) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/wizard/admin_wizard.jsp

    <div class="wrapper">
        <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="system"/>
            <jsp:param name="menuType" value="wizard"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 3.5K bytes
    - Viewed (0)
Back to top