- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 756 for mime (0.04 sec)
-
src/test/resources/jcifs/smb1/util/mime.map
Shinsuke Sugaya <******@****.***> 1755149504 +0900
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/MimeTypeHelperImpl.java
public class MimeTypeHelperImpl implements MimeTypeHelper { /** The resource name for the MIME types configuration file. */ protected static final String MIME_TYPES_RESOURCE_NAME = "/org/codelibs/fess/crawler/mime/tika-mimetypes.xml"; /** The MimeTypes instance for detecting MIME types. */ protected MimeTypes mimeTypes; /** Whether to use the filename for MIME type detection. */ protected boolean useFilename = false;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.5K bytes - Viewed (0) -
cmd/api-headers.go
"encoding/xml" "fmt" "mime" "net/http" "strconv" "strings" "time" "github.com/minio/minio-go/v7/pkg/tags" "github.com/minio/minio/internal/crypto" xhttp "github.com/minio/minio/internal/http" xxml "github.com/minio/xxml" ) // Returns a hexadecimal representation of time at the // time response is sent to the client. func mustGetRequestID(t time.Time) string {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
/** * Helper class for managing file type mappings based on MIME types. * This class provides functionality to map MIME types to file types and * retrieve appropriate file type classifications for documents during indexing. * * The mappings are loaded from configuration and can be dynamically modified * at runtime. When a MIME type is not found in the mapping, a default value * is returned. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorBuilder.java
* The builder allows setting parameters such as MIME type, filename, extractor name, maximum content length, * and cache file size to optimize the extraction process. * * <p> * The main purpose of this class is to simplify the extraction process by providing a fluent interface * for configuring the extraction parameters and handling the underlying complexities of content processing,
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10.1K bytes - Viewed (0) -
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
</mime-type> <mime-type type="application/ecmascript"> <glob pattern="*.ecma"/> </mime-type> <mime-type type="application/edi-consent"/> <mime-type type="application/edi-x12"/> <mime-type type="application/edifact"/> <mime-type type="application/emma+xml"> <glob pattern="*.emma"/> </mime-type> <mime-type type="application/envi.hdr">
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Mar 13 08:18:01 UTC 2025 - 320.1K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResult.java
/** * Returns the MIME type of the accessed resource. * * @return the MIME type */ String getMimeType(); /** * Sets the MIME type of the accessed resource. * * @param mimeType the MIME type */ void setMimeType(String mimeType); /** * Returns the creation time of the access result. *
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
}); } /** * Checks if the response data contains an image MIME type that can be processed * for thumbnail generation. * * @param responseData the response data containing MIME type information * @return true if the MIME type represents a supported image format, false otherwise */ protected boolean isImageMimeType(final ResponseData responseData) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/MimeMap.java
*/ package jcifs.smb1.util; import java.io.IOException; import java.io.InputStream; /** * MIME type mapping utility for file extensions. * Provides mappings between file extensions and their corresponding MIME types * by reading from a resource file containing extension-to-MIME-type mappings. */ public class MimeMap { private static final int IN_SIZE = 7000;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/ContentLengthHelper.java
/** Map to store maximum content lengths for specific MIME types */ protected Map<String, Long> maxLengthMap = new HashMap<>(); /** * Adds a maximum content length for a specific MIME type. * @param mimeType The MIME type for which to set the maximum length * @param maxLength The maximum content length in bytes * @throws CrawlerSystemException if the MIME type is blank or maxLength is negative */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.3K bytes - Viewed (0)