- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for 0000 (3.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java
if (date == null || date.isEmpty()) { return true; // Date is optional } // Basic validation for W3C Datetime format (YYYY-MM-DD or YYYY-MM-DDThh:mm:ss+00:00) // This is a simplified validation if (date.length() < 10) { if (logger.isDebugEnabled()) { logger.debug("Invalid date format (too short): {}", date); }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 14 13:19:40 UTC 2025 - 34.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
public void testCreateBulkLineWithNullId() { // Test that null ID causes exception SuggestItem item = new SuggestItem(new String[] { "text" }, new String[0][0], new String[0], 0, 0, 1.0f, new String[0], new String[0], new String[0], SuggestItem.Kind.DOCUMENT); // Explicitly set ID to null (constructor auto-generates ID) item.setId(null);
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 26.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/ResponseDataUtilTest.java
assertNotNull(tempFile); assertTrue(tempFile.exists()); assertEquals(10000, tempFile.length()); // Verify content try (FileInputStream fis = new FileInputStream(tempFile)) { byte[] buffer = new byte[10000]; int bytesRead = fis.read(buffer); assertEquals(10000, bytesRead); for (int i = 0; i < largeData.length; i++) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/StringUtilTest.java
assertEquals("010203", StringUtil.toHex(new byte[] { 1, 2, 3 })); } /** * @throws Exception */ @Test public void testToHex2() throws Exception { assertEquals("0001", StringUtil.toHex(1)); } /** * @throws Exception */ @Test public void testAppendHex() throws Exception { final StringBuilder buf = new StringBuilder();
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/resources/fess_config.properties
-XX:G1HeapRegionSize=1m\n\ -XX:MaxGCPauseMillis=60000\n\ -XX:G1NewSizePercent=5\n\ -XX:G1MaxNewSizePercent=5\n\ -Djcifs.smb.client.responseTimeout=30000\n\ -Djcifs.smb.client.soTimeout=35000\n\ -Djcifs.smb.client.connTimeout=60000\n\ -Djcifs.smb.client.sessionTimeout=60000\n\ -Djcifs.smb1.smb.client.connTimeout=60000\n\ -Djcifs.smb1.smb.client.soTimeout=35000\n\ -Djcifs.smb1.smb.client.responseTimeout=30000\n\ -Dio.netty.noUnsafe=true\n\
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
<match value="\nContent-Type:" type="string" offset="0:1000"/> <match value="\nContent-Length:" type="string" offset="0:1000"/> <match value="\nContent-Disposition:" type="string" offset="0:1000"/> <match value="\nDate:" type="string" offset="0:1000"/> <match value="\nServer:" type="string" offset="0:1000"/> </match>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Oct 16 07:46:32 UTC 2025 - 320.2K bytes - Viewed (2)