- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 45 for mimeTypes (0.07 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
default boolean isHtmlMimetypeForCache(final String mimetype) { final String[] mimetypes = getCrawlerDocumentCacheHtmlMimetypes().split(","); if (mimetypes.length == 1 && StringUtil.isBlank(mimetypes[0])) { return true; } return stream(mimetypes).get(stream -> stream.anyMatch(s -> s.equalsIgnoreCase(mimetype))); } String getCrawlerDocumentCacheSupportedMimetypes();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 86.5K bytes - Viewed (0) -
cmd/config-migrate.go
switch cfg.Version { case "29": // V29 -> V30 cfg.Compression.Enabled = false cfg.Compression.Extensions = strings.Split(compress.DefaultExtensions, config.ValueSeparator) cfg.Compression.MimeTypes = strings.Split(compress.DefaultMimeTypes, config.ValueSeparator) case "30": // V30 -> V31 cfg.OpenID = openid.Config{} cfg.Policy.OPA = opa.Args{ URL: &xnet.URL{}, AuthToken: "", }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 5.4K bytes - Viewed (0) -
cmd/object_api_suite_test.go
} } func enableCompression(t *testing.T, encrypt bool, mimeTypes []string, extensions []string) { // Enable compression and exec... globalCompressConfigMu.Lock() globalCompressConfig.Enabled = true globalCompressConfig.MimeTypes = mimeTypes globalCompressConfig.Extensions = extensions globalCompressConfig.AllowEncrypted = encrypt globalCompressConfigMu.Unlock()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 34.5K bytes - Viewed (0) -
cmd/object-api-utils.go
// Filter compression includes. if len(cfg.Extensions) == 0 && len(cfg.MimeTypes) == 0 { // Nothing to filter, include everything. return false } if len(cfg.Extensions) > 0 && hasStringSuffixInSlice(objStr, cfg.Extensions) { // Matched an extension to compress, do not exclude. return false } if len(cfg.MimeTypes) > 0 && hasPattern(cfg.MimeTypes, contentType) { // Matched an MIME type to compress, do not exclude.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Jun 25 15:08:54 UTC 2025 - 37.3K bytes - Viewed (0) -
src/main/resources/fess_config.properties
index.field.created=created # Field name for timestamp in the index. index.field.timestamp=timestamp # Field name for label in the index. index.field.label=label # Field name for MIME type in the index. index.field.mimetype=mimetype # Field name for parent ID in the index. index.field.parent_id=parent_id # Field name for important content in the index. index.field.important_content=important_content # Field name for content in the index.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. text/html */ String CRAWLER_DOCUMENT_CACHE_SUPPORTED_MIMETYPES = "crawler.document.cache.supported.mimetypes"; /** The key of the configuration. e.g. text/html */ String CRAWLER_DOCUMENT_CACHE_HTML_MIMETYPES = "crawler.document.cache.html.mimetypes"; /** The key of the configuration. e.g. true */ String INDEXER_THREAD_DUMP_ENABLED = "indexer.thread.dump.enabled";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1) -
src/main/resources/fess_thumbnail.xml
<arg>"mimetype"</arg> <arg>"application/vnd.ms-excel.sheet.3"</arg> </postConstruct> <postConstruct name="addCondition"> <arg>"mimetype"</arg> <arg>"application/vnd.ms-excel.sheet.4"</arg> </postConstruct> <postConstruct name="addCondition"> <arg>"mimetype"</arg> <arg>"application/vnd.ms-excel.workspace.3"</arg> </postConstruct> <postConstruct name="addCondition"> <arg>"mimetype"</arg>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Oct 11 21:34:52 UTC 2019 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessActionAdjustmentProvider.java
final String mimeType; if (response instanceof HtmlResponse) { mimeType = "text/html"; } else if (response instanceof JsonResponse) { mimeType = "application/json"; } else if (response instanceof XmlResponse) { mimeType = "text/xml"; } else if (response instanceof StreamResponse) { mimeType = "application/octet-stream";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
* * @param mimetype the MIME type to map (e.g., "application/pdf") * @param filetype the file type classification (e.g., "pdf") */ public void add(final String mimetype, final String filetype) { mimetypeMap.put(mimetype, filetype); } /** * Retrieves the file type for a given MIME type. * * @param mimetype the MIME type to look up
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0)