Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 51 for selain (0.04 seconds)

  1. src/test/java/org/codelibs/fess/crawler/rule/CrawlerRuleMimeTypePatternTest.java

            // Test MIME types without + character (no escaping needed)
            String[] mimeTypesWithoutPlus = { //
                    "text/html", //
                    "text/plain", //
                    "application/pdf", //
                    "application/xml", //
                    "image/jpeg", //
                    "image/png" //
            };
    
            for (String mimeType : mimeTypesWithoutPlus) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Feb 04 14:24:39 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/query/QueryCommandTemplateMethodTest.java

            // Verify query builder was created successfully
            // Note: In unit test environment without LastaFlute request,
            // context.highlightedQuerySet and context.fieldLogMap remain null,
            // so context updates cannot be verified. This is expected behavior.
        }
    
        /**
         * Test convertWithFieldCheck() with different boost values.
         */
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java

                xhtmlDocMap.put("mimetype", "application/xhtml+xml");
                assertTrue("XHTML MIME type should be target", generator.isTarget(xhtmlDocMap));
    
                // Test: Plain HTML should not match
                Map<String, Object> htmlDocMap = new HashMap<>();
                htmlDocMap.put("thumbnail", "http://example.com/page.html");
                htmlDocMap.put("mimetype", "text/html");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Feb 04 14:24:39 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

            doc.put("title", "Test Doc");
            doc.put("url", "http://example.com");
            doc.put("content", "Plain text content without any HTML");
            documents.add(doc);
    
            final String result = client.testBuildContext(documents);
            assertTrue(result.contains("Plain text content without any HTML"));
        }
    
        @Test
        public void test_buildContext_multipleDocumentsWithHtml() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/service/UserService.java

         * Updates both the authentication manager and the database with the new encrypted password.
         *
         * @param username the username of the user
         * @param password the new password in plain text
         * @throws FessUserNotFoundException if the user is not found
         */
        public void changePassword(final String username, final String password) {
            if (logger.isDebugEnabled()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 06:22:27 GMT 2026
    - 9.3K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            facetQueryView.setTitle("test");
            viewHelper.addFacetQueryView(facetQueryView);
            assertTrue(viewHelper.getFacetQueryViewList().contains(facetQueryView));
    
            viewHelper.addInlineMimeType("text/plain");
    
            assertNotNull(viewHelper.getActionHook());
    
            ViewHelper.ActionHook actionHook = new ViewHelper.ActionHook();
            viewHelper.setActionHook(actionHook);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            assertEquals("", generator.getExtensionFromMimeType("text/html"));
        }
    
        @Test
        public void test_getExtensionFromMimeType_textPlain() {
            assertEquals("", generator.getExtensionFromMimeType("text/plain"));
        }
    
        @Test
        public void test_getExtensionFromMimeType_msword() {
            assertEquals("", generator.getExtensionFromMimeType("application/msword"));
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java

            int firstSize = facetQueryView.getQueryMap().size();
            int firstQueriesCount = testFacetInfo.getAddedQueries().size();
    
            // Call init again
            facetQueryView.init();
    
            // Size should remain the same
            assertEquals(firstSize, facetQueryView.getQueryMap().size());
            // But queries would be added again to FacetInfo (distinct handles duplicates)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

            session.addAssistantMessage("A2");
    
            final List<LlmMessage> history = chatClient.testExtractHistory(session);
            // none mode: assistant messages are skipped, only user messages remain
            assertEquals(2, history.size());
            assertEquals("user", history.get(0).getRole());
            assertEquals("Q1", history.get(0).getContent());
            assertEquals("user", history.get(1).getRole());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 40.6K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/job/CrawlJob.java

            this.namespace = namespace;
            return this;
        }
    
        /**
         * Sets the document expiration period in days.
         * Controls how long crawled documents remain in the search index.
         *
         * @param documentExpires the expiration period: -2 (system default), -1 (never expire),
         *                       0 or positive (expire after specified days)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 19.6K bytes
    - Click Count (0)
Back to Top