Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 137 for _manager (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/test/java/jcifs/util/ResourceManagerTest.java

        }
    
        @Test
        @DisplayName("Test managed resource wrapper")
        void testManagedResource() throws Exception {
            TestResource resource = new TestResource("test3");
    
            try (ResourceManager.ManagedResource<TestResource> managed = resourceManager.manage(resource)) {
                assertNotNull(managed.get());
                assertEquals("test3", managed.get().getName());
                assertFalse(resource.isClosed());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  6. 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)
  7. src/main/java/jcifs/internal/smb2/rdma/RdmaBufferManager.java

                region.close();
                totalReleased.incrementAndGet();
            }
    
            log.info("RDMA buffer manager cleanup complete. Total allocated: {}, released: {}", totalAllocated.get(), totalReleased.get());
        }
    
        /**
         * Close the buffer manager and release all resources
         *
         * @throws Exception if cleanup fails
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  8. 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)
  9. src/main/java/jcifs/smb/SmbSessionImpl.java

        }
    
        /**
         * Get the channel manager
         *
         * @return channel manager instance
         */
        public ChannelManager getChannelManager() {
            return channelManager;
        }
    
        /**
         * Get the lease manager for SMB3 lease support
         *
         * @return lease manager instance
         */
        public LeaseManager getLeaseManager() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  10. 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)
Back to top