Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 147 for processors (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

                            return new StatsObject();
                        }
                    });
        }
    
        /**
         * Cleanup method called when the helper is being destroyed.
         * Logs cache statistics and processes any remaining statistics
         * objects in the cache before shutdown.
         */
        @PreDestroy
        public void destroy() {
            if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

            default:
                break;
            }
            return OptionalEntity.empty();
        }
    
        /**
         * Converts a form to a WebConfig entity with proper user and timestamp information.
         * Also processes permissions and virtual hosts from form fields.
         *
         * @param form the form containing the web config data
         * @return an optional WebConfig entity with updated metadata
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

                throw new SsoLoginException("Failed to initialize SPNEGO.", e);
            }
        }
    
        /**
         * Attempts to obtain login credentials using SPNEGO authentication.
         *
         * This method processes the HTTP request to extract and validate SPNEGO
         * authentication tokens. It handles the SPNEGO handshake process and
         * extracts the user principal from successful authentication.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                if (StringUtil.isNotBlank(url)) {
                    urlSet.add(RequestDataBuilder.newRequestData().get().url(url).build());
                }
            }
            return urlSet;
        }
    
        /**
         * Processes the response data from a crawled URL, including failure handling.
         * This method extends the base response processing to handle Fess-specific failure
         * URL tracking when certain HTTP status codes are encountered.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.1K bytes
    - Viewed (0)
Back to top