Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Marche (0.05 sec)

  1. ViewHelper.java

    doc.put(QUERIES, queries); L573: L574: String cache = DocumentUtil.getValue(doc, fessConfig.getIndexFieldCache(), String.class); L575: if (cache != null) { L576: final String mimetype = DocumentUtil.getValue(doc, fessConfig.getIndexFieldMimetype(), String.class); L577: if (!ComponentUtil.getFessConfig().isHtmlMimetypeForCache(mimetype)) { L578: cache = StringEscapeUtils.escapeHtml4(cache); L579: } L580: cache = Component...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      40.2K bytes
  2. AdminBackupAction.java

    ", "fess.json"); L394: } L395: L396: private StreamResponse writeNdjsonResponse(final String id, final Consumer<Writer> writeCall) { L397: return asStream(id)// L398: .header("Pragma", "no-cache")// L399: .header("Cache-Control", "no-cache")// L400: .header("Expires", "Thu, 01 Dec 1994 16:00:00 GMT")// L401: .header("Content-Type", "application/x-ndjson")// L402: .stream(out -> { L403: try (final...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      28.5K bytes
  3. FessConfig.java

    configuration. e.g. true */ L479: String CRAWLER_DOCUMENT_CACHE_ENABLED = "crawler.document.cache.enabled"; L480: L481: /** The key of the configuration. e.g. 2621440 */ L482: String CRAWLER_DOCUMENT_CACHE_MAX_SIZE = "crawler.document.cache.max.size"; L483: L484: /** The key of the configuration. e.g. text/html */ L485: String CRAWLER_DOCUMENT_CACHE_SUPPORTED_MIMETYPES = "crawler.document.cache.supported.mimetypes"; L486: L487: /** The key of the configuration. e.g. text/html */ L488:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      468.5K bytes
  4. fess_config.properties

    L262:crawler.document.file.default.exclude.index.patterns= L263:crawler.document.file.default.include.search.patterns= L264:crawler.document.file.default.exclude.search.patterns= L265: L266:# cache L267:crawler.document.cache.enabled=true L268:crawler.document.cache.max.size=2621440 L269:crawler.document.cache.supported.mimetypes=text/html L270:#,text/plain,application/xml,application/pdf,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/vnd.ms-...
    github.com/codelibs/fess/src/main/resources/fes...
    Tue Oct 01 14:13:38 UTC 2024
      30.9K bytes
  5. FieldConfigs.java

    StreamUtil.split(value, Pattern.quote("|")).get(stream -> stream.map(String::trim).toArray(n -> new String[n])); L48: } L49: L50: public boolean isCache() { L51: for (final String value : values) { L52: if ("cache".equalsIgnoreCase(value)) { L53: return true; L54: } L55: } L56: // backward compatibility L57: if (values.length == 1 && Constants.TRUE.equalsIgnoreCase(values[0])) { L58: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      2.3K bytes
  6. jquery-3.7.1.min.js

    unction(e){var t=e[this.expando];return t||(t={},$(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[F(t)]=n;else for(r in t)i[F(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][F(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Sat Oct 26 01:07:52 UTC 2024
      85.5K bytes
  7. SystemHelper.java

    er; L82:import org.lastaflute.web.util.LaServletContextUtil; L83:import org.lastaflute.web.validation.ActionValidator; L84:import org.opensearch.monitor.os.OsProbe; L85: L86:import com.google.common.cache.CacheBuilder; L87:import com.google.common.cache.CacheLoader; L88:import com.google.common.cache.LoadingCache; L89:import com.ibm.icu.util.ULocale; L90: L91:import jakarta.annotation.PostConstruct; L92:import jakarta.annotation.PreDestroy; L93: L94:public class SystemHelper { L95: L96: private...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 17 12:10:08 UTC 2024
      27.2K bytes
  8. PluginHelper.java

    org.w3c.dom.NodeList; L59:import org.xml.sax.SAXException; L60: L61:import com.fasterxml.jackson.databind.ObjectMapper; L62:import com.fasterxml.jackson.dataformat.yaml.YAMLMapper; L63:import com.google.common.cache.CacheBuilder; L64:import com.google.common.cache.CacheLoader; L65:import com.google.common.cache.LoadingCache; L66: L67:public class PluginHelper { L68: private static final Logger logger = LogManager.getLogger(PluginHelper.class); L69: L70: protected LoadingCache<ArtifactType, Artifact[]>...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 01:47:10 UTC 2024
      17.8K bytes
  9. ApiAdminBackupAction.java

    Body(); // no-op L121: } L122: L123: private StreamResponse writeNdjsonResponse(final String id, final Consumer<Writer> writeCall) { L124: return asStream(id)// L125: .header("Pragma", "no-cache")// L126: .header("Cache-Control", "no-cache")// L127: .header("Expires", "Thu, 01 Dec 1994 16:00:00 GMT")// L128: .header("Content-Type", "application/x-ndjson")// L129: .stream(out -> { L130: try (final...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      6.1K bytes
  10. IndexUpdater.java

    imeAsLong() - startTime; L375: docList.addProcessingTime(processingTime); L376: if (logger.isDebugEnabled()) { L377: logger.debug("Added the document({}, {}ms). The number of a document cache is {} (size: {}).", L378: MemoryUtil.byteCountToDisplaySize(contentSize), processingTime, docList.size(), docList.getContentSize()); L379: } L380: L381: if (docList.getContentSize()...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      24.2K bytes
Back to top