- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 945 for mime (0.03 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
* It also integrates with other Fess Crawler components, such as {@link ContentLengthHelper} and * {@link MimeTypeHelper}, to handle content length checks and MIME type detection. * </p> * * <p> * The class uses JCIFS properties to configure the SMB connection. * </p> * * <p> * Usage example: * </p> * * <pre> * {@code
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 23K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
assertNotNull(emptyGenerator); // Test that multiple conditions can be added without errors emptyGenerator.addCondition("type", "document"); emptyGenerator.addCondition("mime", "text/.*"); } public void test_setDirectoryNameLength() { // Initialize without container emptyGenerator = new EmptyGenerator(); // Test default value
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/TextTransformer.java
/** * TextTransformer is a class that transforms a ResponseData object into a ResultData object containing the extracted text content. * It uses an Extractor to extract the text from the response body based on the MIME type. * The extracted text is then converted into a byte array using the specified charset encoding. * It also provides a method to retrieve the extracted data as a String from an AccessResultData object. * * <p>
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
private static final Logger logger = LogManager.getLogger(AbstractDataStore.class); /** * The script type. */ protected static final String SCRIPT_TYPE = "script_type"; /** * The mime type. */ public String mimeType = "application/datastore"; /** * The flag to check if the data store is alive. */ protected boolean alive = true; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchAccessResult.java
*/ public static final String METHOD = "method"; /** * Field name for MIME type. */ public static final String MIME_TYPE = "mimeType"; /** * Field name for creation time. */ public static final String CREATE_TIME = "createTime"; /** * Field name for execution time. */ public static final String EXECUTION_TIME = "executionTime"; /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java
*/ @Override public Logger getLogger() { return logger; } /** * Gets the appropriate extractor for the given response data. * Selects an extractor based on the MIME type or falls back to the Tika extractor. * * @param responseData the response data containing the document to extract * @return the extractor instance for processing the document
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.8K bytes - Viewed (0) -
cmd/s3-zip-handlers.go
// You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "bytes" "context" "errors" "io" "mime" "net/http" "path/filepath" "sort" "strings" "github.com/minio/minio/internal/auth" "github.com/minio/minio/internal/crypto" xhttp "github.com/minio/minio/internal/http"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultImpl.java
/** The HTTP method used for the access. */ protected String method; /** The MIME type of the accessed resource. */ protected String mimeType; /** The creation time of the access result. */ protected Long createTime; /** The execution time of the access. */ protected Integer executionTime; /** The content length of the accessed resource. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TarExtractor.java
} /** * Returns a text from the input stream. * * @param in The input stream. * @param mimeTypeHelper The mime type helper. * @param extractorFactory The extractor factory. * @return A text. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
buf.append('\"').append(StringEscapeUtils.escapeJson(obj.toString())).append('\"'); } return buf.toString(); } /** * Sets the MIME type. * @param mimeType The MIME type. */ public void setMimeType(final String mimeType) { this.mimeType = mimeType; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (1)