- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 46 for Pdf (0.08 sec)
-
src/test/java/jcifs/smb1/util/MimeMapTest.java
void testCaseInsensitiveExtensions() throws IOException { assertEquals("application/pdf", mimeMap.getMimeType("PDF")); assertEquals("application/pdf", mimeMap.getMimeType("Pdf")); assertEquals("application/pdf", mimeMap.getMimeType("pDf")); assertEquals("text/html", mimeMap.getMimeType("HTML")); assertEquals("text/html", mimeMap.getMimeType("HtMl"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/FileTypeHelperTest.java
} public void test_add_overwrite() { fileTypeHelper.add("application/pdf", "pdf"); assertEquals("pdf", fileTypeHelper.get("application/pdf")); fileTypeHelper.add("application/pdf", "document"); assertEquals("document", fileTypeHelper.get("application/pdf")); } public void test_add_withNullMimetype() { fileTypeHelper.add(null, "test");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 5.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java
testFileTypeHelper.setTypes(new String[] { "pdf", "doc" }); // Add existing file type query facetQueryView.addQuery("existing_pdf", "filetype:pdf"); facetQueryView.addQuery("label1", "filetype:html"); facetQueryView.init(); Map<String, String> queryMap = facetQueryView.getQueryMap(); // Should not duplicate existing pdf query
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
} public void test_createTask_withValidParams() { // Test task creation with valid parameters String path = "/path/to/document.pdf"; Map<String, Object> docMap = new HashMap<>(); docMap.put("mimetype", "application/pdf"); docMap.put("title", "Test Document"); Tuple3<String, String, String> task = thumbnailGenerator.createTask(path, docMap); assertNotNull(task);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.4K bytes - Viewed (0) -
docs/debugging/README.md
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java
assertEquals("filetype:\"pdf\"", getAsQuery(Collections.singletonMap(k, new String[] { "pdf" }))); assertEquals("filetype:\"doc\"", getAsQuery(Collections.singletonMap(k, new String[] { " doc " }))); assertEquals("filetype:\"pdf\" filetype:\"doc\"", getAsQuery(Collections.singletonMap(k, new String[] { "pdf", "doc" }))); } public void test_conditions_sitesearch() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 16.5K bytes - Viewed (0) -
cmd/erasure-sets_test.go
testCases := []struct { objectName string sipHash int }{ // cases which should pass the test. // passing in valid object name. {"object", 37}, {"The Shining Script <v1>.pdf", 38}, {"Cost Benefit Analysis (2009-2010).pptx", 59}, {"117Gn8rfHL2ACARPAhaFd0AGzic9pUbIA/5OCn5A", 35}, {"SHØRT", 49}, {"There are far too many object names, and far too few bucket names!", 8}, {"a/b/c/", 159},
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java
DataStoreParams paramMap = new DataStoreParams(); paramMap.put("url_exclude_pattern", ".*\\.pdf$"); boolean result1 = indexUpdateCallback.isUrlCrawlable(paramMap, "http://example.com/test.html"); boolean result2 = indexUpdateCallback.isUrlCrawlable(paramMap, "http://example.com/test.pdf"); assertTrue(result1); assertFalse(result2);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 23:31:00 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
} } /** * Adds or updates a MIME type to file type mapping. * * @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); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/test/resources/jcifs/smb1/util/mime.map
application/msword doc # Microsoft Word application/octet-stream bin exe ani # Binary File application/oda oda application/pagemaker pm5 pt5 pm # PageMaker application/pdf pdf # Adobe Acrobat application/postscript ai eps ps # Postscript File application/rtf rtf # Rich Text File application/toolbook tbk # Toolbook
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.9K bytes - Viewed (0)