- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 147 for manager (0.04 sec)
-
android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java
ServiceManager manager = new ServiceManager(asList(a, b)); RecordingListener listener = new RecordingListener(); manager.addListener(listener, directExecutor()); assertState(manager, Service.State.NEW, a, b); assertFalse(manager.isHealthy()); manager.startAsync().awaitHealthy(); assertState(manager, Service.State.RUNNING, a, b); assertTrue(manager.isHealthy());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 20:34:52 UTC 2025 - 25.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ServiceManager.java
* * {@snippet : * class Server { * public static void main(String[] args) { * Set<Service> services = ...; * ServiceManager manager = new ServiceManager(services); * manager.addListener(new Listener() { * public void stopped() {} * public void healthy() { * // Services have been initialized and are healthy, start accepting requests...
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 33.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java
assertTrue(fessUserBean.hasGroups(new String[] { "managers", "developers" })); // Test with no matching groups assertFalse(fessUserBean.hasGroups(new String[] { "managers", "guests" })); // Test with multiple groups testUser.setGroupNames(new String[] { "developers", "testers", "managers" }); assertTrue(fessUserBean.hasGroups(new String[] { "developers" }));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
} /** * Gets the message manager component. * @return The message manager. */ public static MessageManager getMessageManager() { return getComponent(MESSAGE_MANAGER); } /** * Gets the dictionary manager component. * @return The dictionary manager. */ public static DictionaryManager getDictionaryManager() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
// Don't need to interrupt thread since we never start it in tests } }; manager.init(); assertTrue(manager.baseDir.exists()); manager.destroy(); } // Test initialization failure public void test_init_failure() { ThumbnailManager manager = new ThumbnailManager() { @Override public void init() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
public Date getTimestamp() { return timestamp; } /** * Sets the dictionary manager for this file and returns this instance. * * @param dictionaryManager the dictionary manager to set * @return this dictionary file instance for method chaining */ public DictionaryFile<T> manager(final DictionaryManager dictionaryManager) { this.dictionaryManager = dictionaryManager;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProviderTest.java
public String getQueryBrowserLangParameterName() { return "lang"; } }; ComponentUtil.setFessConfig(mockConfig); // Setup mock request manager RequestManager mockRequestManager = createMockRequestManager("en_US"); // Execute OptionalThing<Locale> result = provider.findBusinessLocale(null, mockRequestManager); // Verify
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
@Resource protected FessLoginAssist fessLoginAssist; /** Session manager for handling HTTP session operations. */ @Resource protected SessionManager sessionManager; /** Configuration manager for Fess application settings. */ @Resource protected FessConfig fessConfig; /** Helper for managing user activity logging and tracking. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/WebApiManagerTest.java
} public void test_matches_withNullRequest() { // Test null request handling WebApiManager manager = new TestWebApiManager("/api"); assertFalse(manager.matches(null)); } public void test_matches_withEmptyPath() { // Test empty path matching WebApiManager manager = new TestWebApiManager("");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/JobHelper.java
/** Thread-local storage for job runtime information */ protected ThreadLocal<LaJobRuntime> jobRuntimeLocal = new ThreadLocal<>(); /** * Registers a scheduled job with the job manager. * * @param scheduledJob the scheduled job to register */ public void register(final ScheduledJob scheduledJob) { final JobManager jobManager = ComponentUtil.getJobManager();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (0)