- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 222 for _manager (0.04 sec)
-
src/main/java/jcifs/util/ResourceManager.java
/** * Wrapper for managed resources */ public static class ManagedResource<T extends AutoCloseable> implements AutoCloseable { private final T resource; private final String resourceId; private final ResourceManager manager; private volatile boolean closed = false; ManagedResource(T resource, String resourceId, ResourceManager manager) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.2K 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/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) -
docs/en/docs/tutorial/dependencies/dependencies-with-yield.md
## Context Managers { #context-managers } ### What are "Context Managers" { #what-are-context-managers } "Context Managers" are any of those Python objects that you can use in a `with` statement.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.7K bytes - Viewed (0) -
docs/es/docs/tutorial/dependencies/dependencies-with-yield.md
``` Internamente, `open("./somefile.txt")` crea un objeto llamado "Context Manager". Cuando el bloque `with` termina, se asegura de cerrar el archivo, incluso si hubo excepciones. Cuando creas una dependencia con `yield`, **FastAPI** creará internamente un context manager para ella y lo combinará con algunas otras herramientas relacionadas. ### Usando context managers en dependencias con `yield` /// warning | Advertencia
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 13K 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) -
docs/smb3-features/02-persistent-handles-design.md
Arrays.fill(fileId, (byte)0x42); manager.updateHandleFileId(guid, fileId); // Shutdown and recreate manager manager.shutdown(); PersistentHandleManager manager2 = new PersistentHandleManager(context); HandleInfo recovered = manager2.getHandleForReconnect("/test/file.txt"); assertNotNull(recovered);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
assertEquals("ユーザー名", user.getName()); } public void test_getRoleNames() { // Test with multiple roles String[] roles = { "admin", "user", "manager" }; FessUser user = new TestFessUser("testuser", roles, new String[] {}, new String[] {}); assertArrayEquals(roles, user.getRoleNames()); // Test with single role
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
docs/en/docs/deployment/docker.md
configured to be connected and work together in some way.">cluster</abbr> of machines with **Kubernetes**, Docker Swarm Mode, Nomad, or another similar complex system to manage distributed containers on multiple machines, then you will probably want to **handle replication** at the **cluster level** instead of using a **process manager** (like Uvicorn with workers) in each container. One of those distributed container management systems like Kubernetes normally has some integrated way of handling...
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 29.5K bytes - Viewed (1)