Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 151 - 160 of 203 for batches (0.11 seconds)

  1. src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java

            final String responseJobLogId = extractJobLogId(apiResult);
            assertNotNull(responseJobLogId);
            assertEquals(32, responseJobLogId.length());
            assertTrue(responseJobLogId.matches("[0-9a-f]{32}"));
    
            // Verify the pre-generated ID was passed to the job via launch params
            assertNotNull(capturedOption.get());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            }
    
            for (final Node childNode : childNodeList) {
                pruneNodeByTags(childNode, prunedTags);
            }
    
            return node;
        }
    
        /**
         * Checks if a node matches any of the pruned tag configurations.
         *
         * @param node the node to check
         * @param prunedTags the array of pruned tag configurations
         * @return true if the node should be pruned, false otherwise
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 55.3K bytes
    - Click Count (0)
  3. src/main/webapp/js/jquery-3.7.1.min.map

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:07:52 GMT 2024
    - 131.6K bytes
    - Click Count (0)
  4. architecture/README.md

    There are some background actions that the daemon takes, for example monitoring system memory, watching for file changes or cleaning up caches.
    The daemon never runs any user code in the background.
    
    There are several different types of requests, such as a request to run a set of tasks, or to query a tooling model, or to stop.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 12 09:50:57 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.it;
    
    import static io.restassured.RestAssured.given;
    import static org.hamcrest.Matchers.equalTo;
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    import static org.junit.jupiter.api.Assertions.fail;
    
    import java.util.ArrayList;
    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)
  6. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

                return false;
            }
            for (final Map.Entry<String, String> entry : conditionMap.entrySet()) {
                if (docMap.get(entry.getKey()) instanceof final String value && value.matches(entry.getValue())) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("[{}] match {}:{}", entry.getKey(), name, value);
                    }
                    return true;
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 13.4K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/helper/RateLimitHelper.java

         */
        protected Cache<String, Boolean> blockedIps;
    
        /**
         * Default constructor.
         */
        public RateLimitHelper() {
            // nothing
        }
    
        /**
         * Initialize caches with configuration values.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initializing {}", this.getClass().getSimpleName());
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Dec 24 14:16:27 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

     * JAR files for data store configurations.</p>
     *
     * <p>Thread-safe operations are supported for registration and retrieval of data stores.
     * The factory caches data store names with a time-based refresh mechanism to improve
     * performance while ensuring up-to-date plugin discovery.</p>
     */
    public class DataStoreFactory {
        /** Logger instance for this factory class. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 9K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/it/admin/JobLogTests.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.it.admin;
    
    import static org.hamcrest.Matchers.equalTo;
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:29:45 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  10. .teamcity/scripts/CheckBadMerge.java

            if (commitBranches.stream().anyMatch(b -> b.startsWith("origin/release"))) {
                System.out.println(commit + " is a merge commit already on a release branch, ignoring.");
                System.out.println("  Branches: " + commitBranches);
                return;
            }
    
            // The correct state we are looking for is:
            // 1. It's a merge commit.
            // 2. One of its parent commits is from master only.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 16:25:09 GMT 2026
    - 9K bytes
    - Click Count (0)
Back to Top