Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 625 for executeOn (0.07 sec)

  1. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

    /**
     * Authentication chain implementation that executes external commands for user operations.
     * Provides user management through command-line tool execution for password changes and user deletion.
     */
    public class CommandChain implements AuthenticationChain {
    
        private static final Logger logger = LogManager.getLogger(CommandChain.class);
    
        /** Working directory for command execution. */
        protected File workingDirectory = null;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java

            // Default constructor
        }
    
        private static final Logger logger = LogManager.getLogger(PingSearchEngineJob.class);
    
        /**
         * Executes the ping job.
         *
         * @return the execution result
         */
        public String execute() {
            final SearchEngineClient searchEngineClient = ComponentUtil.getSearchEngineClient();
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

         * ScheduledExecutorService#scheduleWithFixedDelay} method.
         *
         * @param initialDelay the time to delay first execution
         * @param delay the delay between the termination of one execution and the commencement of the
         *     next
         * @since 28.0 (but only since 33.4.0 in the Android flavor)
         */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  4. 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)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Call.kt

       *
       * @throws IOException if the request could not be executed due to cancellation, a connectivity
       *     problem or timeout. Because networks can fail during an exchange, it is possible that the
       *     remote server accepted the request before the failure.
       * @throws IllegalStateException when the call has already been executed.
       */
      @Throws(IOException::class)
      fun execute(): Response
    
      /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

         * ScheduledExecutorService#scheduleWithFixedDelay} method.
         *
         * @param initialDelay the time to delay first execution
         * @param delay the delay between the termination of one execution and the commencement of the
         *     next
         * @since 33.4.0 (but since 28.0 in the JRE flavor)
         */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 27.7K bytes
    - Viewed (0)
  7. 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)
  8. dbflute_fess/_readme.txt

    Directory for DBFlute client
    
    manage.bat(sh) => 21 (jdbc):
    A execution command of JDBC task
    which gets your schema info and saves it to SchemaXML
    located to the "schema" directory.
    This task should be executed after ReplaceSchema task
    and before other tasks(e.g. Generate, Document task).
    
    manage.bat(sh) => 22 (doc):
    A execution command of Document task
    which creates documents, for example, SchemaHTML, HistoryHTML
    to the "output/doc" directory.
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java

            // First execution - success
            assertEquals("", aggregateLogJob.execute());
    
            // Second execution - IllegalArgumentException
            assertTrue(aggregateLogJob.execute().contains("Invalid argument"));
    
            // Third execution - IllegalStateException
            assertTrue(aggregateLogJob.execute().contains("Invalid state"));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/query/QueryProcessor.java

            return (context, query, boost) -> filter.execute(context, query, boost, chain);
        }
    
        /**
         * Creates the default filter chain that executes query commands.
         * This chain looks up the appropriate query command based on the query class name
         * and executes it. If no command is found, throws an InvalidQueryException.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
Back to top