- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 66 for pDf (0.01 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) -
okhttp/src/jvmTest/kotlin/okhttp3/MultipartBodyTest.kt
|Content-Type: application/pdf; charset=utf-8 | |Jesse’s Resumé |--AaB03x-- | """.trimMargin().replace("\n", "\r\n") val body = MultipartBody .Builder("AaB03x") .setType(MultipartBody.FORM) .addFormDataPart( "attachment", "resumé.pdf",
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 10.5K 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) -
.github/pull_request_template.md
- [ ] You have run the [Core IT][core-its] successfully. If your pull request is about ~20 lines of code you don't need to sign an [Individual Contributor License Agreement](https://www.apache.org/licenses/icla.pdf) if you are unsure please ask on the developers list. To make clear that you license your contribution under the [Apache License Version 2.0, January 2004](http://www.apache.org/licenses/LICENSE-2.0)
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:30:05 UTC 2025 - 1.5K 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)