- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 33 for pdf$ (0.21 sec)
-
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/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) -
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/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/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/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/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/java/org/codelibs/fess/taglib/FessFunctions.java
private static final String GEO_PREFIX = "geo."; /** Prefix for facet query parameters */ private static final String FACET_PREFIX = "facet."; /** Format identifier for PDF date parsing */ private static final String PDF_DATE = "pdf_date"; /** Regular expression pattern for matching email addresses */ private static final Pattern EMAIL_ADDRESS_PATTERN =
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (0) -
README.md
system](https://fess.codelibs.org/15.0/admin/fileconfig-guide.html), or [Data Store](https://fess.codelibs.org/15.0/admin/dataconfig-guide.html) (such as a CSV or database). Many file formats are supported including (but not limited to): Microsoft Office, PDF, and zip. *[Fess Site Search](https://github.com/codelibs/fess-site-search)* is a free alternative to [Google Site Search](https://enterprise.google.com/search/products/gss.html). For more details, see the [FSS JS Generator documentation](...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 06:34:32 UTC 2025 - 7.2K bytes - Viewed (2) -
android/guava/src/com/google/common/base/Utf8.java
/** * Low-level, high-performance utility methods related to the {@linkplain Charsets#UTF_8 UTF-8} * character encoding. UTF-8 is defined in section D92 of <a * href="http://www.unicode.org/versions/Unicode6.2.0/ch03.pdf">The Unicode Standard Core * Specification, Chapter 3</a>. * * <p>The variant of UTF-8 implemented by this class is the restricted definition of UTF-8 * introduced in Unicode 3.1. One implication of this is that it rejects <a
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 7K bytes - Viewed (0)