Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 78 for initAll (0.03 seconds)

  1. src/test/java/org/codelibs/fess/it/search/HealthApiTests.java

    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() {
            RestAssured.baseURI = getFessUrl();
            settingTestToken();
        }
    
        @AfterAll
        protected static void tearDownAll() {
            deleteTestToken();
        }
    
        @Test
    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)
  2. src/test/java/org/codelibs/fess/it/search/PopularWordsApiTests.java

    /**
     * Integration tests for the Popular Words API (/api/v1/popular-words)
     */
    @Tag("it")
    public class PopularWordsApiTests extends ITBase {
    
        @BeforeAll
        protected static void initAll() {
            RestAssured.baseURI = getFessUrl();
            settingTestToken();
        }
    
        @AfterAll
        protected static void tearDownAll() {
            deleteTestToken();
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/it/search/SuggestWordsApiTests.java

    /**
     * Integration tests for the Suggest Words API (/api/v1/suggest-words)
     */
    @Tag("it")
    public class SuggestWordsApiTests extends ITBase {
    
        @BeforeAll
        protected static void initAll() {
            RestAssured.baseURI = getFessUrl();
            settingTestToken();
        }
    
        @AfterAll
        protected static void tearDownAll() {
            deleteTestToken();
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/it/search/LabelsApiTests.java

        private static final String TEST_LABEL_VALUE = "labelsApiTest_value";
        private static String testLabelId;
    
        @BeforeAll
        protected static void initAll() {
            RestAssured.baseURI = getFessUrl();
            settingTestToken();
        }
    
        @AfterAll
        protected static void tearDownAll() {
            if (testLabelId != null) {
                deleteLabel(testLabelId);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/it/CrudTestBase.java

        // ================
        // Constant
        // ================
        protected String getIdKey() {
            return "id";
        }
    
        @BeforeAll
        protected static void initAll() {
            RestAssured.baseURI = getFessUrl();
            settingTestToken();
        }
    
        @BeforeEach
        protected void init() {
        }
    
        @AfterEach
        protected void tearDown() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:29:45 GMT 2025
    - 9.2K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/it/search/ScrollSearchApiTests.java

        private static final String CRAWL_LABEL = NAME_PREFIX + "_label";
        private static String fileConfigId;
        private static String crawlLabelId;
    
        @BeforeAll
        protected static void initAll() {
            RestAssured.baseURI = getFessUrl();
            settingTestToken();
    
            // Create and execute a file crawler
            crawlLabelId = createCrawlLabel();
    
            createFileConfig();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 7.5K bytes
    - Click Count (0)
  7. README.md

    ---
    
    ### 🚀 **Getting Started**
    
    Starting with Gradle is easy with these essential resources. Follow these to install Gradle, set up initial projects, and explore supported platforms:
    
    - **[Installing Gradle](https://docs.gradle.org/current/userguide/installation.html)**
    - **Build Projects for Popular Languages and Frameworks**:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Feb 12 18:58:41 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  8. module.xml

    	<property name="opensearch.version" value="3.5.0" />
    
    	<target name="install.modules">
    		<mkdir dir="${target.dir}" />
    		<delete dir="${modules.dir}" />
    		<mkdir dir="${modules.dir}" />
    
    		<!-- analysis-common -->
    		<antcall target="install.module">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  9. src/packaging/common/scripts/preinst

    ${packaging.scripts.header}
    
    #
    # This script is executed in the pre-installation phase
    #
    #   On Debian,
    #       $1=install : indicates an new install
    #       $1=upgrade : indicates an upgrade
    #
    #   On RedHat,
    #       $1=1       : indicates an new install
    #       $1=2       : indicates an upgrade
    
    
    
    # Sets the default values for fess variables used in this script
    FESS_USER="${packaging.fess.user}"
    FESS_GROUP="${packaging.fess.group}"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 01 09:48:15 GMT 2016
    - 2.3K bytes
    - Click Count (0)
  10. plugin.xml

    	<property name="maven.release.repo.url" value="https://repo1.maven.org/maven2" />
    
    	<target name="install.plugins">
    		<mkdir dir="${target.dir}" />
    		<delete dir="${plugins.dir}" />
    		<mkdir dir="${plugins.dir}" />
    		<!-- analysis-extension -->
    		<antcall target="install.plugin">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    			<param name="plugin.groupId" value="org/codelibs/opensearch" />
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Feb 12 06:33:24 GMT 2026
    - 3.5K bytes
    - Click Count (0)
Back to Top