- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 208 for kime (2.17 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java
this.contentLength = contentLength; } /** * Gets the MIME type of the response. * * @return the MIME type, or null if not specified */ public String getMimeType() { return mimeType; } /** * Sets the MIME type of the response. * * @param contentType the MIME type to set */ public void setMimeType(final String contentType) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.text.DecimalFormat; import java.text.NumberFormat; import java.text.SimpleDateFormat; import java.time.LocalDateTime; import java.time.ZonedDateTime; import java.time.format.DateTimeFormatter; import java.util.ArrayList; import java.util.Base64; import java.util.Calendar; import java.util.Date; import java.util.Enumeration; import java.util.List;
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 25.4K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/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> * {@codeRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 23.4K bytes - Viewed (3) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/AccessResultImplTest.java
// Test create time getter/setter AccessResultImpl<Long> result = new AccessResultImpl<>(); Long createTime = System.currentTimeMillis(); result.setCreateTime(createTime); assertEquals(createTime, result.getCreateTime()); } public void test_executionTimeGetterSetter() { // Test execution time getter/setterRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 13.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.java
if (date != null) { return new Time(date.getTime()); } } final Date date = toDate(str, locale); if (date != null) { return new Time(date.getTime()); } final Time time = toSqlTimeJdbcEscape(str); if (time != null) { return time; } throw new ParseRuntimeException(str); }
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ResponseDataTest.java
assertEquals(1024L, data.getContentLength()); data.setContentLength(0L); assertEquals(0L, data.getContentLength()); } public void test_mimeTypeGetterSetter() { // Test MIME type getter/setter ResponseData data = new ResponseData(); data.setMimeType("text/html"); assertEquals("text/html", data.getMimeType()); data.setMimeType("application/json");
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
} } /** * Parses a time string in HH:MM format. * * @param time the time string to parse * @return an array containing [hour, minute] * @throws FessSystemException if the time format is invalid */ protected static int[] parseTime(final String time) { final String[] froms = time.split(":"); if (froms.length != 2) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 23 12:34:02 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
this.commandDestroyTimeout = commandDestroyTimeout; } /** * Gets file extension from MIME type for creating temp files with proper extensions. * This helps ImageMagick correctly identify file formats. * @param mimeType The MIME type of the content. * @return The file extension including the dot (e.g., ".gif"), or empty string if unknown. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 04 08:02:36 UTC 2025 - 16K bytes - Viewed (0) -
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> * {@codeRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 23.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/util/SMBUtilTest.java
byte[] src = new byte[16]; // Test with zero time SMBUtil.writeInt8(0L, src, 0); long time = SMBUtil.readTime(src, 0); assertEquals(-SmbConstants.MILLISECONDS_BETWEEN_1970_AND_1601, time); // Test with specific time value long testTime = 131768928000000000L; // Example Windows file time SMBUtil.writeInt8(testTime, src, 8);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.1K bytes - Viewed (0)