Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 198 for NO (0.03 seconds)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         */
        String getMailSendMock();
    
        /**
         * Is the property for the key 'mail.send.mock' true? <br>
         * The value is, e.g. true <br>
         * comment: Does it send mock mail? (true: no send actually, logging only)
         * @return The determination, true or false. (if not found, exception but basically no way)
         */
        boolean isMailSendMock();
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'crawler.document.file.no.title.label'. <br>
         * The value is, e.g. No title. <br>
         * comment: Label to use when a file has no title.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getCrawlerDocumentFileNoTitleLabel();
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  3. src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java

            assertNotNull(functionBuilders);
            assertEquals(0, functionBuilders.size()); // No data loaded
        }
    
        @Test
        public void test_load_emptyState() {
            try {
                int result = keyMatchHelper.load();
                assertEquals(0, result); // No data loaded in test environment
            } catch (Exception e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

            assertNotNull(manager);
        }
    
        // Test insert with no chains
        @Test
        public void test_insert_noChains() {
            User user = createTestUser("testuser");
            authenticationManager.insert(user);
            // Should not throw exception even with no chains
        }
    
        // Test insert with single chain
        @Test
        public void test_insert_singleChain() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/util/WebApiUtilTest.java

            }
        }
    
        @Test
        public void test_getObject_noRequest() {
            // Test getObject when no HTTP request is available
            // This should return null
            Object result = WebApiUtil.getObject("testKey");
            assertNull(result, "getObject should return null when no request available");
        }
    
        @Test
        public void test_getObject_withNullName() {
            // Test getObject with null name
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java

            // Test with editable user
            testUser.setEditable(true);
            assertTrue(fessUserBean.isEditable());
        }
    
        @Test
        public void test_hasRole() {
            // Test with no roles
            testUser.setRoleNames(new String[] {});
            assertFalse(fessUserBean.hasRole("admin"));
    
            // Test with single role - matching
            testUser.setRoleNames(new String[] { "admin" });
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/util/IpAddressUtilTest.java

                // Longest sequence of zeros compressed (3 zeros at end vs 1 zero at start)
                assertEquals("2001:db8:0:1::1", method.invoke(null, "2001:0db8:0:1:0:0:0:1"));
    
                // No compression when all segments are non-zero (just remove leading zeros)
                assertEquals("2001:db8:1:2:3:4:5:6", method.invoke(null, "2001:0db8:0001:0002:0003:0004:0005:0006"));
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 08:31:03 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

         */
        public HtmlTagBasedGenerator() {
            super();
        }
    
        /**
         * Destroys this thumbnail generator and releases any resources.
         * This implementation is empty as no cleanup is required.
         */
        @Override
        public void destroy() {
        }
    
        /**
         * Creates a thumbnail generation task for the specified document.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 01 12:47:47 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/api/WebApiManagerFactory.java

            }
        }
    
        /**
         * Gets the appropriate web API manager for the given request.
         *
         * @param request The HTTP servlet request
         * @return The matching web API manager, or null if no match found
         */
        public WebApiManager get(final HttpServletRequest request) {
            final String servletPath = request.getServletPath();
            if (logger.isDebugEnabled()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/chat/ChatPhaseCallback.java

                    // no-op
                }
    
                @Override
                public void onChunk(final String content, final boolean done) {
                    // no-op
                }
    
                @Override
                public void onError(final String phase, final String error) {
                    // no-op
                }
            };
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:32:04 GMT 2026
    - 3.3K bytes
    - Click Count (0)
Back to Top