Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 353 for stesti (0.08 seconds)

  1. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorConcurrencyTest.java

    import org.dbflute.optional.OptionalThing;
    import org.junit.jupiter.api.Test;
    
    /**
     * Concurrency and thread-safety tests for RankFusionProcessor.
     * Tests the improvements made to thread safety using CopyOnWriteArrayList.
     */
    public class RankFusionProcessorConcurrencyTest extends UnitFessTestCase {
    
        private static final String ID_FIELD = "_id";
    
        /**
         * Test concurrent registration of searchers from multiple threads.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 13.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java

        // ===================================================================================
        //                                                              fess.var.path Tests
        //                                                              ====================
    
        @Test
        public void test_validateFilePath_validPathUnderVarPath() throws Exception {
            final FessAdminAction action = createAction();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorErrorHandlingTest.java

    import org.dbflute.optional.OptionalThing;
    import org.junit.jupiter.api.Test;
    
    /**
     * Error handling tests for RankFusionProcessor.
     * Tests exception handling improvements including InterruptedException and ExecutionException.
     */
    public class RankFusionProcessorErrorHandlingTest extends UnitFessTestCase {
    
        private static final String ID_FIELD = "_id";
    
        /**
         * Test handling of searcher that throws RuntimeException.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/it/search/HealthApiTests.java

    import org.codelibs.fess.it.ITBase;
    import org.junit.jupiter.api.AfterAll;
    import org.junit.jupiter.api.BeforeAll;
    import org.junit.jupiter.api.Tag;
    import org.junit.jupiter.api.Test;
    
    import io.restassured.RestAssured;
    
    /**
     * Integration tests for the Health API (/api/v1/health)
     */
    @Tag("it")
    public class HealthApiTests extends ITBase {
    
        @BeforeAll
        protected static void initAll() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  5. .teamcity/src/main/kotlin/model/GradleSubprojectProvider.kt

    import com.fasterxml.jackson.module.kotlin.registerKotlinModule
    import java.io.File
    
    val ignoredSubprojects =
        listOf(
            "soak", // soak test
            "distributions-integ-tests", // build distribution testing
            "architecture-test", // sanity check
        )
    
    interface GradleSubprojectProvider {
        val subprojects: List<GradleSubproject>
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 12 09:12:03 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java

            assertTrue("Component integration test should be fast", true);
        }
    
        @Test
        public void test_basic_functionality() {
            // Basic functionality test without complex operations
            try {
                List<String> emptyIds = new ArrayList<>();
                dataIndexHelper.crawl("basic-test", emptyIds);
                assertTrue("Basic functionality should be fast", true);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.9K bytes
    - Click Count (0)
  7. .teamcity/src/main/kotlin/configurations/TestPerformanceTest.kt

                    skipConditionally()
                }
            }
    
            fun BuildSteps.adHocPerformanceTest(tests: List<String>) {
                gradleStep(
                    listOf(
                        "clean",
                        "performance:${testProject}PerformanceAdHocTest",
                        tests.map { """--tests "$it"""" }.joinToString(" "),
                        """--warmups 2 --runs 2 --checks none""",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 08 01:31:13 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/ldap/LdapUtilTest.java

            assertEquals("user\\28test\\29name", LdapUtil.escapeValue("user(test)name"));
        }
    
        @Test
        public void test_escapeValue_nullChar() {
            assertEquals("admin\\00test", LdapUtil.escapeValue("admin\0test"));
            assertEquals("\\00", LdapUtil.escapeValue("\0"));
        }
    
        @Test
        public void test_escapeValue_mixedSpecialChars() {
            // Test LDAP injection attempt: admin*
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  9. src/main/resources/fess_message_pt_BR.properties

    errors.failed_to_delete_doc_in_admin = Não foi possível excluir o documento.
    errors.failed_to_send_testmail=Não foi possível enviar o e-mail de teste.
    errors.invalid_query_unknown = A consulta especificada tem condições desconhecidas.
    errors.invalid_query_parse_error = A consulta fornecida é inválida.
    errors.invalid_query_sort_value = A ordenação especificada {0} é inválida.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  10. .github/workflows/notify-on-rc-for-manual-test.yml

    dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 1773439473 +0000
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 13 22:04:33 GMT 2026
    - 912 bytes
    - Click Count (0)
Back to Top