Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 161 for processors (0.05 sec)

  1. src/main/java/org/codelibs/fess/entity/QueryContext.java

        /** The default field to search in when no specific field is specified. */
        protected String defaultField = null;
    
        /**
         * Constructs a new QueryContext with the specified query string.
         * Processes special query prefixes (allinurl:, allintitle:) and initializes
         * request-scoped attributes for highlighting and field logging.
         * @param queryString The query string to process.
    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/TermQueryCommand.java

    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.search.sort.SortOrder;
    
    /**
     * Command class for handling term query execution and conversion.
     * This class processes Lucene TermQuery objects and converts them to OpenSearch QueryBuilder instances.
     */
    public class TermQueryCommand extends QueryCommand {
        private static final Logger logger = LogManager.getLogger(TermQueryCommand.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

        protected WebConfigService webConfigService;
    
        /** Service for managing file crawler configurations */
        @Resource
        protected FileConfigService fileConfigService;
    
        /** Helper for managing crawler processes */
        @Resource
        protected ProcessHelper processHelper;
    
        /** Service for managing scheduled jobs */
        @Resource
        protected ScheduledJobService scheduledJobService;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

            int cleanupDays = fessConfig.getDayForCleanup();
            // cleanupDays is primitive int, not Integer
            assertEquals(3, cleanupDays);
    
            // Test integer conversion for crawler processes
            Integer crawlerProcesses = fessConfig.getJobMaxCrawlerProcessesAsInteger();
            assertNotNull(crawlerProcesses);
            assertEquals(3, crawlerProcesses.intValue());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

                chain.id = i;
                chains.add(chain);
                authenticationManager.addChain(chain);
            }
    
            // Test order by using load which processes chains sequentially
            User user = createTestUser("testuser");
            for (int i = 0; i < chains.size(); i++) {
                User nextUser = createTestUser("user" + (i + 1));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/io/ClassTraversalUtil.java

        protected static final String WAR_FILE_EXTENSION = ".war";
    
        /** The entry prefix for class files inside a WAR file. */
        protected static final String WEB_INF_CLASSES_PATH = "WEB-INF/classes/";
    
        /**
         * Processes the directory under the root directory.
         *
         * @param rootDir the root directory (must not be {@literal null})
         * @param handler the handler to process classes (must not be {@literal null})
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  7. src/test/java/jcifs/http/NtlmHttpFilterTest.java

        @Test
        void testDoFilter_ntlmType1Message() throws Exception {
            // Test NTLM Type 1 message handling
            // This test verifies that when a Type 1 NTLM message is received,
            // the filter processes it correctly through NtlmSsp.authenticate
    
            // Create a minimal filter config that won't try to connect to a real server
            Map<String, String> initParams = new HashMap<>();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

         */
        protected HtmlResponse redirectToRoot() {
            return systemHelper.getRedirectResponseToRoot(newHtmlResponseAsRedirect("/"));
        }
    
        /**
         * Processes the given path through the virtual host helper to handle
         * virtual host configurations and path modifications.
         *
         * @param path the HTML path to process
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/audit/SecurityAuditLogger.java

            for (EventType type : EventType.values()) {
                eventCounters.put(type, new AtomicLong(0));
                eventTimings.put(type, new AtomicLong(0));
            }
    
            // Start async logging processor
            startAsyncProcessor();
    
            // Register shutdown hook
            Runtime.getRuntime().addShutdownHook(new Thread(this::shutdown));
        }
    
        private void startAsyncProcessor() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

        }
    
        // Test ProcessDestroyer inner class
        public void test_processDestroyer_creation() throws Exception {
            // We can't directly test ProcessDestroyer without creating actual processes,
            // but we can test that the class exists and basic functionality
            try {
                // Use reflection to verify ProcessDestroyer class exists
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
Back to top