Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 620 for executes (0.03 sec)

  1. src/main/java/org/codelibs/fess/job/AggregateLogJob.java

        public AggregateLogJob() {
            // Default constructor
        }
    
        /**
         * Executes the search log aggregation job.
         * Stores search logs using the SearchLogHelper and returns execution results.
         *
         * @return execution result message, empty if successful or error message if failed
         */
        public String execute() {
            final SearchLogHelper searchLogHelper = ComponentUtil.getSearchLogHelper();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/curl/CurlRequest.java

            }
            return connection;
        }
    
        /**
         * Executes the request and processes the response.
         *
         * @param actionListener the action listener for handling the response
         * @param exceptionListener the exception listener for handling exceptions
         */
        public void execute(final Consumer<CurlResponse> actionListener, final Consumer<Exception> exceptionListener) {
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/score/ScoreUpdater.java

        private final List<ScoreBooster> scoreBoosterList = new ArrayList<>();
    
        /**
         * Executes all score boosters.
         * @return The result of the execution.
         */
        public String execute() {
            final StringBuilder resultBuf = new StringBuilder();
            scoreBoosterList.forEach(b -> {
                try {
                    final long count = b.process();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

       * (unless the executor has been shutdown).
       *
       * <p>The returned executor is backed by the executor returned by {@link
       * MoreExecutors#newDirectExecutorService} and subject to the same constraints.
       *
       * <p>Although all tasks are immediately executed in the thread that submitted the task, this
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  5. dbflute_fess/_readme.txt

    A execution command of ReplaceSchema task
    which creates your tables and loads data by
    resources located to the "playsql" directory.
    
    manage.bat(sh) => 25 (outside-sql-test):
    A execution command of OutsideSqlTest task
    which executes outside-SQL files and you can check
    whether the SQLs have correct formats.
    
    The directories are for DBFlute tasks:
    /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    dfprop     : Directory for DBFlute properties
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                        logger.debug("Process {} is already executed.", p);
                    }
                }
            }
    
            /**
             * Checks if the destroyer has been executed.
             * @return True if executed, false otherwise.
             */
            public boolean isExecuted() {
                return executed.get();
            }
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jul 18 14:34:06 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/job/UpdateLabelJob.java

         */
        public UpdateLabelJob() {
            super();
        }
    
        /**
         * Executes the label update job.
         * Processes documents in the search index and updates their label fields.
         *
         * @return execution result message
         */
        public String execute() {
            final SearchEngineClient searchEngineClient = ComponentUtil.getSearchEngineClient();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

        }
    
        /**
         * Executes an external command with the given parameters.
         * @param commands The command array to execute.
         * @param username The username parameter for the command.
         * @param password The password parameter for the command.
         * @return The exit code of the executed command.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/sql/StatementUtil.java

        protected StatementUtil() {
        }
    
        /**
         * Executes the SQL.
         *
         * @param statement
         *            {@link Statement}. Must not be {@literal null}.
         * @param sql
         *            SQL string. Must not be {@literal null} or empty.
         * @return The result of the execution.
         * @see Statement#execute(String)
         */
        public static boolean execute(final Statement statement, final String sql) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

                this.dataConfig = dataConfig;
                this.indexUpdateCallback = indexUpdateCallback;
                this.initParamMap = initParamMap;
            }
    
            /**
             * Executes the crawling thread.
             * Sets the running flag, processes the data store, and ensures
             * proper cleanup regardless of success or failure.
             */
            @Override
            public void run() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
Back to top