Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 17 for begitu (0.04 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. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

                final StatsObject data = e.getValue();
                final Long begin = data.remove(BEGIN_KEY);
                if (begin != null) {
                    printStats(e.getKey(), data, begin, false);
                }
            });
    
        }
    
        /**
         * Begins statistics tracking for the specified crawler object.
         * Creates a new statistics object in the cache and starts timing.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 17.4K bytes
    - Click Count (0)
  4. 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)
  5. 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)
  6. src/test/java/org/codelibs/fess/it/admin/JobLogTests.java

            testSearchByJobName();
            testPagination();
        }
    
        /**
         * Test: Read job logs list
         */
        private void testReadJobLogs() {
            logger.info("[BEGIN] testReadJobLogs");
            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 Nov 21 13:29:45 GMT 2025
    - 9.9K 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/CrudTestBase.java

        protected static void tearDownAll() {
            deleteTestToken();
        }
    
        // ================
        // Bodies
        // ================
        protected void testCreate() {
            logger.info("[BEGIN] testCreate");
            // Test: create setting api.
            for (int i = 0; i < NUM; i++) {
                final Map<String, Object> requestBody = createTestParam(i);
    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)
  9. 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)
  10. 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)
Back to Top