Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 338 for executes (0.05 sec)

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

        }
    
        // Test execute() method with successful processing
        public void test_execute_success() {
            String result = updateLabelJob.execute();
            assertNotNull(result);
            assertTrue(result.contains("3 docs")); // 3 documents processed
            assertFalse(result.contains("exception"));
        }
    
        // Test execute() method with query builder
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. 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)
  3. src/main/java/org/codelibs/core/sql/PreparedStatementUtil.java

            }
        }
    
        /**
         * Executes the statement.
         *
         * @param ps
         *            {@link PreparedStatement}. Must not be {@literal null}.
         * @return Whether the result is a {@link ResultSet}.
         * @throws SQLRuntimeException
         *             If a {@link SQLException} occurs.
         * @see PreparedStatement#execute()
         */
        public static boolean execute(final PreparedStatement ps) throws SQLRuntimeException {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/concurrent/CommonPoolUtil.java

        protected CommonPoolUtil() {
            // nothing
        }
    
        /**
         * Executes the given task in the common ForkJoinPool.
         *
         * @param task
         *            the task to execute
         */
        public static void execute(final Runnable task) {
            ForkJoinPool.commonPool().execute(() -> {
                final Thread currentThread = Thread.currentThread();
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  5. native-image-tests/README.md

    Native Image Tests
    ==================
    
    This executes OkHttp's test suite inside a Graalvm image.
    
    Execute
    -------
    
    The native image runs JUnit 5 tests in the project.
    
    ```
    ./gradlew -PgraalBuild=true --info native-image-tests:nativeTest
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 21:44:11 UTC 2025
    - 242 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/job/PurgeDocJob.java

         */
        public PurgeDocJob() {
            // Default constructor
        }
    
        /**
         * Executes the document purging job.
         * Removes all documents from the search index that have expired based on their expires field.
         *
         * @return a string containing the execution result and any error messages
         */
        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
    - 2.5K bytes
    - Viewed (0)
  7. 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)
  8. src/main/java/org/codelibs/fess/job/JobExecutor.java

        }
    
        /**
         * Executes a script with the specified script type and content.
         *
         * @param scriptType the type of script to execute
         * @param script the script content to execute
         * @return the result of script execution
         */
        public abstract Object execute(String scriptType, String script);
    
        /**
         * Initiates shutdown of the job executor.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java

        private long expiry = 30 * 24 * 60 * 60 * 1000L;
    
        /**
         * Executes the thumbnail purging job.
         * Removes thumbnail files that have exceeded the configured expiration time.
         *
         * @return a string containing the execution result with the number of deleted files or error message
         */
        public String execute() {
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  10. mockwebserver/src/main/kotlin/mockwebserver3/internal/TriggerSink.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     *
     */
    package mockwebserver3.internal
    
    import okio.Buffer
    import okio.Sink
    
    /**
     * A sink that executes [trigger] after [triggerByteCount] bytes are written, and then skips all
     * subsequent bytes.
     */
    internal class TriggerSink(
      private val delegate: Sink,
      private val triggerByteCount: Long,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top