Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for Jasmin (0.06 sec)

  1. FessConfig.java

    String INDEX_ADMIN_LONG_FIELDS = "index.admin.long.fields"; L738: L739: /** The key of the configuration. e.g. boost */ L740: String INDEX_ADMIN_FLOAT_FIELDS = "index.admin.float.fields"; L741: L742: /** The key of the configuration. e.g. */ L743: String INDEX_ADMIN_DOUBLE_FIELDS = "index.admin.double.fields"; L744: L745: /** The key of the configuration. e.g. url,title,role,boost */ L746: String INDEX_ADMIN_REQUIRED_FIELDS = "index.admin.required.fields"; L747: L748: /** The...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      468.5K bytes
  2. index.jsp

    content="IE=edge"> L7:<title><la:message key="labels.login.title" /></title> L8:<link href="${fe:url('/css/admin/bootstrap.min.css')}" rel="stylesheet" type="text/css" /> L9:<link href="${fe:url('/css/admin/font-awesome.min.css')}" rel="stylesheet" type="text/css" /> L10:<link href="${fe:url('/css/admin/adminlte.min.css')}" rel="stylesheet" type="text/css" /> L11:<link href="${fe:url('/css/admin/style.css')}" rel="stylesheet" type="text/css" /> L12:<!--[if lt IE 9]> L13:<script src="${fe:url('/css/...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 26 01:07:52 UTC 2024
      3K bytes
  3. README.md

    UI](https://fess.codelibs.org/_images/fess_search_result1.png) L48: L49:- Admin UI: http://localhost:8080/admin/ (default username/password is admin/admin) L50: L51:![Admin UI](https://fess.codelibs.org/_images/fess_admin_dashboard.png) L52: L53:You can register crawling targets in the Admin UI on the (Web, File, Data Store) crawler configuration pages, and then start the Crawler manually on the [Scheduler page](https://fess.codelibs.org/14.17/admin/scheduler-guide.html). L54: L55:## Migration from another search...
    github.com/codelibs/fess/README.md
    Sat Oct 12 07:19:47 UTC 2024
      7.3K bytes
  4. index.jsp

    content="IE=edge"> L7:<title><la:message key="labels.profile.title" /></title> L8:<link href="${fe:url('/css/admin/bootstrap.min.css')}" rel="stylesheet" type="text/css" /> L9:<link href="${fe:url('/css/admin/font-awesome.min.css')}" rel="stylesheet" type="text/css" /> L10:<link href="${fe:url('/css/admin/adminlte.min.css')}" rel="stylesheet" type="text/css" /> L11:<link href="${fe:url('/css/admin/style.css')}" rel="stylesheet" type="text/css" /> L12:<!--[if lt IE 9]> L13:<script src="${fe:url('/css/...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 26 01:07:52 UTC 2024
      3.6K bytes
  5. README.md

    sistema a través de tu navegador. L11:Fess también incluye un rastreador (crawler), que puede rastrear documentos en un [servidor web](https://fess.codelibs.org/14.17/admin/webconfig-guide.html), [sistema de archivos](https://fess.codelibs.org/14.17/admin/fileconfig-guide.html), o [almacenamiento de datos](https://fess.codelibs.org/14.17/admin/dataconfig-guide.html) (como un archivo CSV o base de datos). Se admiten muchos formatos de archivos, incluidos (pero no limitados a): Microsoft Office, PDF y zip....
    github.com/codelibs/fess/docs/es/README.md
    Sat Oct 12 07:19:47 UTC 2024
      7.6K bytes
  6. README.md

    http://localhost:8080/ L45: L46:![Search UI](https://fess.codelibs.org/_images/fess_search_result1.png) L47: L48:- 管理者UI: http://localhost:8080/admin/ (デフォルトのユーザー名/パスワードはadmin/adminです) L49: L50:![Admin UI](https://fess.codelibs.org/_images/fess_admin_dashboard.png) L51: L52:管理者UIでは、(Web、ファイル、データストア)クローラの設定ページでクロール対象を登録し、[スケジューラページ](https://fess.codelibs.org/14.17/admin/scheduler-guide.html)から手動でクローラを開始できます。 L53: L54:## 他の検索プロバイダーからの移行 L55: L56:[MIGRATION.md](MIGRATION.md)を参照してください。 L57: L58:## データストア L59:...
    github.com/codelibs/fess/docs/ja/README.md
    Sat Oct 12 07:19:47 UTC 2024
      8.3K bytes
  7. SearchEngineClient.java

    iteResponse.Result; L89:import org.opensearch.action.admin.cluster.health.ClusterHealthResponse; L90:import org.opensearch.action.admin.indices.alias.IndicesAliasesRequestBuilder; L91:import org.opensearch.action.admin.indices.create.CreateIndexResponse; L92:import org.opensearch.action.admin.indices.exists.indices.IndicesExistsResponse; L93:import org.opensearch.action.admin.indices.flush.FlushResponse; L94:import org.opensearch.action.admin.indices.get.GetIndexResponse; L95:import org.opensear...
    github.com/codelibs/fess/src/main/java/org/code...
    Sun Oct 20 02:08:03 UTC 2024
      86.1K bytes
  8. AdminMaintenanceAction.java

    searchEngineClient.flushConfigFiles(() -> { L122: final String docIndex = fessConfig.getIndexDocumentUpdateIndex(); L123: searchEngineClient.admin().indices().prepareClose(docIndex).execute(ActionListener.wrap(res -> { L124: logger.info("Close {}", docIndex); L125: searchEngineClient.admin().indices().prepareOpen(docIndex).execute( L126: ActionListener.wrap(res2 -> logger.info("Open {}", docIndex), e -> logger.warn("Failed to...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      14K bytes
  9. AdminBackupAction.java

    IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.admin.backup; L17: L18:import static org.codelibs.core.stream.StreamUtil.stream; L19: L20:import java.io.BufferedReader; L21:import java.io.BufferedWriter; L22:import java.io.ByteArrayInputStream; L23:import java.io.ByteArrayOutputStream; L24:import java.io.File;...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      28.5K bytes
  10. index.jsp

    <la:link href="/profile" styleClass="dropdown-item"> L56: <la:message key="labels.profile" /> L57: </la:link> L58: </c:if> L59: <c:if test="${adminUser == true}"> L60: <la:link href="/admin" styleClass="dropdown-item"> L61: <la:message key="labels.administration" /> L62: </la:link> L63: </c:if> L64: <la:link href="/logout/" styleClass="dropdown-item"> L65: <la:message key="labels.logout"...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 26 01:07:52 UTC 2024
      6.9K bytes
Back to top