Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 190 for startOf (0.66 seconds)

  1. src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java

                    }
                } catch (Exception e) {
                    exceptions[readerCount] = e;
                }
            });
    
            // Start all threads
            for (Thread reader : readers) {
                reader.start();
            }
            writer.start();
    
            // Wait for completion
            for (Thread reader : readers) {
                reader.join();
            }
            writer.join();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.8K bytes
    - Click Count (1)
  2. src/main/resources/fess_message.properties

    success.send_testmail=Sent a test mail.
    success.job_log_delete_all=Deleted job logs.
    success.changed_password=Changed your password.
    success.started_data_update=Started a data update process.
    success.reindex_started=Started re-indexing.
    success.bulk_process_started=Started a bulk process.
    success.print_thread_dump=Printed a thread dump to a log file.
    success.install_plugin=Installing plugin {0}.
    success.delete_plugin=Deleting plugin {0}.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12.4K bytes
    - Click Count (0)
  3. src/main/resources/fess_message_en.properties

    success.send_testmail=Sent a test mail.
    success.job_log_delete_all=Deleted job logs.
    success.changed_password=Changed your password.
    success.started_data_update=Started a data update process.
    success.reindex_started=Started re-indexing.
    success.bulk_process_started=Started a bulk process.
    success.print_thread_dump=Printed a thread dump to a log file.
    success.install_plugin=Installing plugin {0}.
    success.delete_plugin=Deleting plugin {0}.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12.4K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

        }
    
        /**
         * Displays the start crawling form.
         *
         * @return HTML response for the start crawling form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse startCrawlingForm() {
            saveToken();
            return asHtml(path_AdminWizard_AdminWizardStartJsp).useForm(StartCrawlingForm.class);
        }
    
        /**
         * Starts the crawling process for all configured crawlers.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 02:14:37 GMT 2026
    - 16.4K bytes
    - Click Count (0)
  5. README.md

    ## Website
    
    [fess.codelibs.org](https://fess.codelibs.org/)
    
    ## Issues/Questions
    
    [discuss.codelibs.org](https://discuss.codelibs.org/c/FessEN/)
    
    ## Getting Started
    
    There are 2 ways to try Fess. The first is to download and install yourself. The second is to use [Docker](https://www.docker.com/products/docker-engine).
    
    ### Download and Install/Run
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Feb 14 03:19:23 GMT 2026
    - 7.8K bytes
    - Click Count (2)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java

        }
    
        /**
         * Starts a scheduled job by ID.
         * When job logging is enabled, a pre-generated job log ID is returned in the response
         * as {@code jobLogId}. When job logging is disabled, {@code jobLogId} is {@code null}.
         *
         * @param id the ID of the scheduled job to start
         * @return JSON response with {@code jobLogId} (nullable) and status
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

                } finally {
                    coordinator.completeOperation("reindex_config");
                }
            }, "rebuild-config-indices").start();
    
            saveInfo(messages -> messages.addSuccessStartedDataUpdate(GLOBAL));
            return redirect(getClass());
        }
    
        /**
         * Starts a reindex operation with the specified parameters.
         *
         * @param replaceAliases whether to replace aliases after reindexing
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 23K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/entity/ChatSessionTest.java

            session.addUserMessage("User 2");
            session.addAssistantMessage("Assistant 2");
            session.addUserMessage("User 3");
            session.addAssistantMessage("Assistant 3");
    
            // Trimming to 4 starts at index 2 which is user - no skip needed
            session.trimHistory(4);
    
            final List<ChatMessage> messages = session.getMessages();
            assertEquals(4, messages.size());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 01:53:06 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

                if (response.getBody().jsonPath().getInt("response.status") == 0) {
                    logger.info("Start scheduler \"{}\"", schedulerId);
                    return;
                }
                ThreadUtil.sleep(100L);
            }
            fail("could not start job.");
        }
    
        protected static void waitJob(final String namePrefix) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java

                cb.fetchFirst(fessConfig.getPageScheduledJobMaxFetchSizeAsInteger());
            });
        }
    
        /**
         * Starts all available scheduled jobs.
         * @param cron The cron scheduler.
         */
        public void start(final LaCron cron) {
            scheduledJobBhv.selectCursor(cb -> {
                cb.query().setAvailable_Equal(Constants.T);
                cb.query().addOrderBy_SortOrder_Asc();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 6.2K bytes
    - Click Count (0)
Back to Top