Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for pdf$ (0.01 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                }
                return buf.toString();
            }
            return url;
        }
    
        /**
         * Appends search parameters to PDF URLs for highlighting.
         *
         * @param document the document data map
         * @param url the PDF URL
         * @return the URL with search parameters
         */
        protected String appendPDFSearchWord(final Map<String, Object> document, final String url) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

            assertTrue(fessConfig.isExtensionAllowed("jpeg"));
            assertTrue(fessConfig.isExtensionAllowed("gif"));
            assertTrue(fessConfig.isExtensionAllowed("png"));
            assertFalse(fessConfig.isExtensionAllowed("pdf"));
            assertFalse(fessConfig.isExtensionAllowed("doc"));
        }
    
        // Test available extensions
        public void test_getAvailableExtensions() {
            String[] extensions = fessConfig.getAvailableExtensions();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java

            assertTrue(messages.hasMessageOf(property));
        }
    
        public void test_addErrorsCouldNotOpenOnSystem() {
            String property = "testProperty";
            String arg0 = "document.pdf";
            FessMessages result = messages.addErrorsCouldNotOpenOnSystem(property, arg0);
            assertNotNull(result);
            assertSame(messages, result);
            assertTrue(messages.hasMessageOf(property));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

        }
    
        public void test_hasConditionQuery_withFileType() {
            // Test with file type
            testParams.conditions.put(SearchRequestParams.AS_FILETYPE, new String[] { "pdf" });
            assertTrue(searchRequestParams.hasConditionQuery());
        }
    
        public void test_hasConditionQuery_withMultipleConditions() {
            // Test with multiple conditions
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/primitives/Ints.java

        // exchanging two blocks of memory). This classic text by Gries and Mills mentions several:
        // https://ecommons.cornell.edu/bitstream/handle/1813/6292/81-452.pdf.
        // (1) "Reversal", the one we have here.
        // (2) "Dolphin". If we're rotating an array a of size n by a distance of d, then element a[0]
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 31.4K bytes
    - Viewed (0)
Back to top