Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for Captions (0.07 sec)

  1. README.md

    L1:# Fess: Servidor de Busca Empresarial L2:[![Java CI with Maven](https://github.com/codelibs/fess/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/fess/actions/workflows/maven.yml) L3:[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.codelibs.fess/fess/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.codelibs.fess/fess) L4:[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/gitbucket/gitbucket/blob/master/LICENSE)...
    github.com/codelibs/fess/docs/pt-BR/README.md
    Sat Oct 12 07:19:47 UTC 2024
      7.4K bytes
  2. PythonJob.java

    L106: L107: try { L108: L109: final File baseDir = new File(servletContext.getRealPath("/WEB-INF")).getParentFile(); L110: L111: if (logger.isInfoEnabled()) { L112: logger.info("Python: \nDirectory={}\nOptions={}", baseDir, cmdList); L113: } L114: L115: final JobProcess jobProcess = processHelper.startProcess(sessionId, cmdList, pb -> { L116: pb.directory(baseDir); L117: pb.redirectErrorStream(true);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.9K bytes
  3. fess.in.bat

    L2: L3:if DEFINED JAVA_HOME goto cont L4: L5::err L6:ECHO JAVA_HOME environment variable must be set! 1>&2 L7:EXIT /B 1 L8: L9::cont L10:set SCRIPT_DIR=%~dp0 L11:for %%I in ("%SCRIPT_DIR%..") do set FESS_HOME=%%~dpfI L12: L13: L14:REM ***** JAVA options ***** L15: L16:if "%FESS_MIN_MEM%" == "" ( L17:set FESS_MIN_MEM=256m L18:) L19: L20:if "%FESS_MAX_MEM%" == "" ( L21:set FESS_MAX_MEM=1g L22:) L23: L24:if NOT "%FESS_HEAP_SIZE%" == "" ( L25:set FESS_MIN_MEM=%FESS_HEAP_SIZE% L26:set FESS_MAX_MEM=%FESS_HEAP_SIZE%...
    github.com/codelibs/fess/src/main/assemblies/fi...
    Sun Jan 15 06:32:15 UTC 2023
      4.2K bytes
  4. README.md

    L1:# Fess: エンタープライズ検索サーバー L2:[![Java CI with Maven](https://github.com/codelibs/fess/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/fess/actions/workflows/maven.yml) L3:[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.codelibs.fess/fess/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.codelibs.fess/fess) L4:[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/gitbucket/gitbucket/blob/master/LICENSE)...
    github.com/codelibs/fess/docs/ja/README.md
    Sat Oct 12 07:19:47 UTC 2024
      8.3K bytes
  5. fess_config.properties

    L20:app.cipher.algorism=aes L21:app.cipher.key=___change__me___ L22:app.digest.algorism=sha256 L23:app.encrypt.property.pattern=.*password|.*key|.*token|.*secret L24: L25:app.extension.names= L26: L27:app.audit.log.format= L28: L29:# JVM options L30:jvm.crawler.options=\ L31:-Djava.awt.headless=true\n\ L32:-Dfile.encoding=UTF-8\n\ L33:-Djna.nosys=true\n\ L34:-Djdk.io.permissionsUseCanonicalPath=true\n\ L35:-Dhttp.maxConnections=20\n\ L36:-Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager\n\...
    github.com/codelibs/fess/src/main/resources/fes...
    Tue Oct 01 14:13:38 UTC 2024
      30.9K bytes
  6. IndexingHelperTest.java

    @Override L92: public BulkResponse addAll(final String index, final List<Map<String, Object>> docList, L93: final BiConsumer<Map<String, Object>, IndexRequestBuilder> options) { L94: sentIndex.set(index); L95: docList.forEach(x -> options.accept(x, new IndexRequestBuilder(this, IndexAction.INSTANCE))); L96: sentDocList.addAll(docList); L97: return new BulkResponse(new BulkItemResponse[0], documentSizeByQuery);...
    github.com/codelibs/fess/src/test/java/org/code...
    Wed Jul 24 08:54:24 UTC 2024
      23.4K bytes
  7. bootstrap.min.css.map

    @include transition($carousel-indicator-transition);\n }\n\n .active {\n opacity: 1;\n }\n}\n\n\n// Optional captions\n//\n//\n\n.carousel-caption {\n position: absolute;\n right: (100% - $carousel-caption-width) * .5;\n bottom: 20px;\n left: (100% - $carousel-caption-width) * .5;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: $carousel-caption-color;\n text-align: center;\n}\n","@mixin clearfix() {\n &::after {\n display: block;\n clear: both;\n content:...
    github.com/codelibs/fess/src/main/webapp/css/ad...
    Sat Oct 26 01:49:09 UTC 2024
      639.3K bytes
  8. QueryHelper.java

    if (queryBuilder != null) { L155: queryContext.setQueryBuilder(queryBuilder); L156: } else { L157: queryContext.setQueryBuilder(QueryBuilders.matchAllQuery()); L158: } L159: // TODO options query L160: context.accept(queryContext); L161: } catch (final QueryParseException e) { L162: throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryParseError(UserMessages.GLOBAL_PROPERTY_KEY), L163:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      11.9K bytes
  9. CrawlJob.java

    createSystemProperties(cmdList, propFile); L344: L345: final File baseDir = new File(servletContext.getRealPath("/WEB-INF")).getParentFile(); L346: L347: if (logger.isInfoEnabled()) { L348: logger.info("Crawler: \nDirectory={}\nOptions={}", baseDir, cmdList); L349: } L350: L351: final JobProcess jobProcess = processHelper.startProcess(sessionId, cmdList, pb -> { L352: pb.directory(baseDir); L353: pb.redirectErrorStream(true);...
    github.com/codelibs/fess/src/main/java/org/code...
    Sun Jun 23 04:13:47 UTC 2024
      15.1K bytes
  10. fess_label.properties

    onfirm_new_password=Confirm New Password L365:labels.top.search=Search L366:labels.index_title=Fess L367:labels.index_form_search_btn=Search L368:labels.index_osdd_title=Search L369:labels.index_form_option_btn=Options L370:labels.index_help=Help L371:labels.search_options=Search Options L372:labels.search_options_close=Close L373:labels.search_options_clear=Clear L374:labels.search_cache_msg=This is a cache of {0}. It is a snapshot of the page at {1}. L375:labels.search_unknown=Unknown L376:lab...
    github.com/codelibs/fess/src/main/resources/fes...
    Fri Mar 22 11:58:34 UTC 2024
      40.7K bytes
Back to top