Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 31 for begini (0.06 seconds)

  1. src/main/resources/fess_indices/_aws/fess.json

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/_cloud/fess.json

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  3. architecture/standards/0007-java-pre-requisite.md

    One example is when one of the most popular plugins started requiring Java 17 because the underlying framework behind the plugin began requiring 17, and code from the framework was used in the plugin itself.
    What would have happened if Gradle was limited to _only Java 11_ at the time?
    
    ## Decision
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java

                }
            };
            crawlerStatsHelper.init();
        }
    
        @Test
        public void test_beginDone() {
            String key = "test";
            crawlerStatsHelper.begin(key);
            crawlerStatsHelper.done(key);
            logger.info(localLogMsg.get());
            String[] values = localLogMsg.get().split("\t");
            assertEquals(3, values.length);
            assertEquals("url:test", values[0]);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/it/admin/DocumentsTests.java

        void bulkOperationsTest() {
            testBulkCreate();
            testBulkUpdate();
        }
    
        /**
         * Test: Bulk create documents
         */
        private void testBulkCreate() {
            logger.info("[BEGIN] testBulkCreate");
    
            // Create multiple documents in bulk
            final Map<String, Object> requestBody = new HashMap<>();
            final List<Map<String, Object>> documents = new ArrayList<>();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  6. AI_POLICY.md

    # Policy on AI-Assisted Contributions to the Gradle Build Tool
    
    We use AI tools daily and welcome AI-assisted contributions—provided the human behind them meets the standards below.
    
    ## Why this policy exists
    
    There is a fundamental **asymmetry** between submitting a contribution and reviewing one: AI tools make it easy to generate and submit large amounts of code, but they do not make it equally faster for us to review it. 
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/it/admin/FailureUrlTests.java

            testSearchByErrorName();
            testPagination();
        }
    
        /**
         * Test: Read failure URL logs list
         */
        private void testReadFailureUrlLogs() {
            logger.info("[BEGIN] testReadFailureUrlLogs");
            final Map<String, Object> searchBody = new HashMap<>();
            searchBody.put("size", 100);
    
            String response = checkMethodBase(searchBody).get(API_PATH + "/logs").asString();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/it/admin/StatsTests.java

        protected Map<String, Object> getUpdateMap() {
            fail("getUpdateMap is not supported for StatsTests");
            return null;
        }
    
        @Override
        protected void testRead() {
            logger.info("[BEGIN] testRead");
    
            final Map<String, Object> searchBody = new HashMap<>();
            String response = checkGetMethod(searchBody, "").asString();
    
            logger.info("Stats response: {}", response);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  9. src/main/webapp/WEB-INF/view/admin/wizard/admin_wizard.jsp

                                    </h3>
                                </div>
                                <div class="card-body">
                                        <%-- Message: BEGIN --%>
                                    <div>
                                        <la:info id="msg" message="true">
                                            <div class="alert alert-success">${msg}</div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/llm/LlmClient.java

    import java.util.List;
    import java.util.Map;
    
    /**
     * Interface for LLM (Large Language Model) clients.
     * Implementations provide integration with different LLM providers
     * such as Ollama, OpenAI, and Google Gemini.
     *
     * In addition to low-level chat operations, this interface defines
     * high-level RAG workflow methods that allow each provider to optimize
     * prompt construction, parameter tuning, and response parsing.
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 7.3K bytes
    - Click Count (0)
Back to Top