Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 54 for new1 (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

            List<LogNotificationEvent> events = new ArrayList<>();
            events.add(new LogNotificationEvent(base, "ERROR", "org.test.A", "first", null));
            events.add(new LogNotificationEvent(base + 1000, "WARN", "org.test.B", "second", null));
            events.add(new LogNotificationEvent(base + 2000, "ERROR", "org.test.C", "third", null));
    
            String details = testableJob.testFormatDetails(events);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java

            final List<Map<String, String>> capturedLogs = new ArrayList<>();
            final ActivityHelper spyActivityHelper = createSpyActivityHelper(capturedLogs);
    
            final TestActionRuntime testRuntime = new TestActionRuntime("/admin/user/");
            final FessAdminAction action =
                    createGodHandAction(spyActivityHelper, OptionalThing.of(new FessUserBean(new TestUser("admin", new String[0]))), true);
    
    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/helper/CoordinatorHelperTest.java

            final AtomicBoolean heartbeatCalled = new AtomicBoolean(false);
            final AtomicBoolean fetchCalled = new AtomicBoolean(false);
            final AtomicBoolean cleanupCalled = new AtomicBoolean(false);
            final CoordinatorHelper helper = new CoordinatorHelper() {
                @Override
                public void sendHeartbeat() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJobTest.java

            final ScheduledJob job = new ScheduledJob();
            assertFalse(job.isLoggingEnabled());
        }
    
        @Test
        public void test_isEnabled_true() {
            final ScheduledJob job = new ScheduledJob();
            job.setAvailable(Constants.T);
            assertTrue(job.isEnabled());
        }
    
        @Test
        public void test_isEnabled_false() {
            final ScheduledJob job = new ScheduledJob();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/app/web/api/ApiResultTest.java

            final ApiStartJobResponse response = new ApiStartJobResponse();
            final ApiStartJobResponse returned = response.jobLogId("abc123def456");
            assertSame(response, returned);
            assertEquals("abc123def456", response.jobLogId);
        }
    
        @Test
        public void test_ApiStartJobResponse_withNullJobLogId() {
            final ApiStartJobResponse response = new ApiStartJobResponse();
            response.jobLogId(null);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

                SingletonLaContainerFactory.setExternalContext(new GenericExternalContext());
                SingletonLaContainerFactory.setExternalContextComponentDefRegister(new GenericExternalContextComponentDefRegister());
                SingletonLaContainerFactory.init();
    
                final Thread shutdownCallback = new Thread("ShutdownHook") {
                    @Override
                    public void run() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

            if (hash != null && hash.startsWith(SIMILAR_DOC_HASH_PREFIX) && hash.length() > SIMILAR_DOC_HASH_PREFIX.length()) {
                try (BufferedReader reader = new BufferedReader(new InputStreamReader(
                        new GZIPInputStream(
                                new ByteArrayInputStream(Base64.getUrlDecoder().decode(hash.substring(SIMILAR_DOC_HASH_PREFIX.length())))),
                        Constants.UTF_8))) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:27:04 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

                this.status = status.getId();
                return this;
            }
    
            /**
             * Returns a new ApiResult instance with this ApiResponse.
             * @return A new ApiResult instance.
             */
            public ApiResult result() {
                return new ApiResult(this);
            }
        }
    
        /**
         * Represents an API response for an update operation.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

    public class ActivityHelperTest extends UnitFessTestCase {
    
        private ActivityHelper activityHelper;
    
        private ThreadLocal<String> localLogMsg = new ThreadLocal<>();
    
        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
            activityHelper = new ActivityHelper() {
                @Override
                protected void printByLtsv(final Map<String, String> valueMap) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 11:45:43 GMT 2026
    - 24.3K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            // Track specific call arguments
            List<String> createdIndices = new ArrayList<>();
            List<String> deletedIndices = new ArrayList<>();
            List<String[]> reindexPairs = new ArrayList<>();
            List<String[]> addMappingCalls = new ArrayList<>();
            List<String[]> createAliasCalls = new ArrayList<>();
            List<String[]> insertBulkDataCalls = new ArrayList<>();
            boolean lastLoadBulkData = false;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
Back to Top