- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 35 for pDf (0.01 sec)
-
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) -
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) -
src/test/java/jcifs/smb/FileEntryTest.java
void fakeImplementation_happyPath() { // Arrange FileEntry e = new TestFileEntry("doc.pdf", 2, 0x10, 10L, 20L, 30L, 4096L, 3); // Act & Assert: getters return exactly what was provided assertAll(() -> assertEquals("doc.pdf", e.getName()), () -> assertEquals(2, e.getType()), () -> assertEquals(0x10, e.getAttributes()), () -> assertEquals(10L, e.createTime()),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImplTest.java
} @Test @DisplayName("Test decode with valid single entry") void testDecodeValidSingleEntry() throws SMBProtocolDecodingException { String fileName = "document.pdf"; int action = FileNotifyInformation.FILE_ACTION_MODIFIED; byte[] buffer = createValidNotificationBuffer(fileName, action); int bytesRead = notifyInfo.decode(buffer, 0, buffer.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
final String tempPath = "/tmp/source.pdf"; final String outputPath = "/tmp/thumbnail.jpg"; final String expandedCommand = testCommand.replace("${url}", tempPath).replace("${outputFile}", outputPath); assertEquals("convert /tmp/source.pdf -resize 100x100 /tmp/thumbnail.jpg", expandedCommand);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/advance.jsp
<option value="html" <c:if test="${as.filetype.contains('html')}">selected</c:if>><la:message key="labels.advance_search_filetype_html" /></option> <option value="pdf" <c:if test="${as.filetype.contains('pdf')}">selected</c:if>><la:message key="labels.advance_search_filetype_pdf" /></option> <option value="word" <c:if test="${as.filetype.contains('word')}">selected</c:if>><la:message
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/advance.jsp
<option value="html" <c:if test="${as.filetype.contains('html')}">selected</c:if>><la:message key="labels.advance_search_filetype_html" /></option> <option value="pdf" <c:if test="${as.filetype.contains('pdf')}">selected</c:if>><la:message key="labels.advance_search_filetype_pdf" /></option> <option value="word" <c:if test="${as.filetype.contains('word')}">selected</c:if>><la:message
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbOperationExceptionTest.java
exception = new SmbOperationException(SmbOperationException.ErrorCode.FILE_EXISTS, "document.pdf already exists"); assertTrue(exception.getMessage().contains("FILE_EXISTS")); assertTrue(exception.getMessage().contains("File already exists")); assertTrue(exception.getMessage().contains("document.pdf already exists")); // Without custom message
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.1K bytes - Viewed (0)