Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 36 for eusses (0.03 seconds)

  1. src/main/resources/fess_message_nl.properties

    constraints.Null.message = {item} moet null zijn.
    constraints.Past.message = {item} moet een waarde uit het verleden zijn.
    constraints.Pattern.message = {item} komt niet overeen met "{regexp}".
    constraints.Size.message = De grootte van {item} moet tussen {min} en {max} tekens liggen.
    # ----------------------------------------------------------
    # Hibernate Validator
    # -------------------
    constraints.CreditCardNumber.message = {item} is geen geldig creditcardnummer.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java

            });
    
            try {
                HtmlNext result = virtualHostHelper.getVirtualHostPath(null);
                // If it doesn't throw an exception, the test passes
                assertTrue(true);
            } catch (Exception e) {
                // If it throws any exception, the test passes
                assertTrue(true);
            }
        }
    
        @Test
        public void test_getVirtualHostPath_withComplexPath() {
    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)
  3. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

                }
            }
        }
    
        /**
         * Performs a search operation using rank fusion across available searchers.
         * If only one searcher is available, uses the main searcher. Otherwise, performs
         * concurrent searches across multiple searchers and fuses the results.
         *
         * @param query the search query string
         * @param params search request parameters including pagination and filters
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 25 02:13:14 GMT 2025
    - 28K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java

        @Test
        public void test_initializeProbes() {
            // Test that initializeProbes doesn't throw exception
            try {
                ThumbnailGenerator.initializeProbes();
                // If no exception thrown, test passes
                assertTrue(true);
            } catch (Exception e) {
                fail("initializeProbes should not throw exception: " + e.getMessage());
            }
        }
    
        @Test
        public void test_main_withHelp() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.2K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java

        }
    
        // Test initializeProbes
        @Test
        public void test_initializeProbes() {
            try {
                SuggestCreator.initializeProbes();
                // If no exception thrown, test passes
                assertTrue(true);
            } catch (Exception e) {
                fail("initializeProbes should not throw exception: " + e.getMessage());
            }
        }
    
        // Test process with properties path
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java

                FessTimeResourceProvider tempProvider = new FessTimeResourceProvider(mockConfig);
                assertNotNull(tempProvider);
            }
            // If this completes without OutOfMemoryError, test passes
            assertTrue(true);
        }
    
        // Test equals and hashCode if implemented
        @Test
        public void test_equalsAndHashCode() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.8K bytes
    - Click Count (0)
  7. LICENSE

          Work (including but not limited to damages for loss of goodwill,
          work stoppage, computer failure or malfunction, or any and all
          other commercial damages or losses), even if such Contributor
          has been advised of the possibility of such damages.
    
       9. Accepting Warranty or Additional Liability. While redistributing
    Created: Wed Apr 01 00:11:11 GMT 2026
    - Last Modified: Thu Feb 20 19:53:57 GMT 2020
    - 11.1K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

         * Sets the name and expiration time based on the provided parameters.
         *
         * @param sessionId the session ID to update
         * @param name the name to set for the crawling session (uses system name if blank)
         * @param dayForCleanup number of days until cleanup (sets expiration if >= 0)
         * @throws FessSystemException if unable to store the updated crawling session
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 15.2K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java

            // Verify URL uses default localhost:8080
            assertNotNull(url);
            assertEquals("http://localhost:8080/sso/metadata", url);
        }
    
        @Test
        public void test_buildDefaultUrl_withCustomBaseUrl() throws Exception {
            // Test that buildDefaultUrl uses custom base URL from property
            SamlAuthenticator authenticator = new SamlAuthenticator();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 18.4K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/job/ExecJob.java

            lastaEnv = env;
            return this;
        }
    
        /**
         * Adds a system property to the command list.
         * If the property exists in the system, it uses that value with optional append value.
         * Otherwise, it uses the default value if provided.
         *
         * @param cmdList the command list to add the property to
         * @param name the property name
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.2K bytes
    - Click Count (0)
Back to Top