Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 212 for Multiple (0.15 sec)

  1. src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java

            String[] permissions = fessUserBean.getPermissions();
            assertEquals(1, permissions.length);
            assertEquals("read", permissions[0]);
    
            // Test with multiple permissions
            testUser.setPermissions(new String[] { "read", "write", "delete" });
            permissions = fessUserBean.getPermissions();
            assertEquals(3, permissions.length);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

       *         .addAll(SINGLE_DIGIT_PRIMES)
       *         .add(42)
       *         .build();
       * }
       *
       * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build
       * multiple sets in series. Each set is a superset of the set created before it.
       *
       * @since 2.0
       */
      public static final class Builder<E> extends ImmutableSet.Builder<E> {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 36.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java

                assertSame(invertibleCryptographer, invertibles[i]);
                assertSame(oneWayCryptographer, oneWays[i]);
            }
        }
    
        // Test with multiple providers
        public void test_multipleProviders() {
            // Test that multiple providers can coexist independently
            InvertibleCryptographer inver1 = InvertibleCryptographer.createAesCipher("key1key1key1key1");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

            authenticationManager.insert(user);
    
            assertEquals(1, chain.updateCallCount);
            assertEquals(user, chain.lastUpdatedUser);
        }
    
        // Test insert with multiple chains
        public void test_insert_multipleChains() {
            User user = createTestUser("testuser");
            TestAuthenticationChain chain1 = new TestAuthenticationChain();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/CacheStats.java

      }
    
      /**
       * Returns the number of times {@link Cache} lookup methods have returned an uncached (newly
       * loaded) value, or null. Multiple concurrent calls to {@link Cache} lookup methods on an absent
       * value can result in multiple misses, all returning the results of a single cache load
       * operation.
       */
      public long missCount() {
        return missCount;
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java

            assertNotNull(specialProvider);
            assertEquals(Long.valueOf(4096L), specialConfig.getTimeAdjustTimeMillisAsLong());
        }
    
        // Test memory efficiency with multiple providers
        public void test_memoryEfficiency() {
            // Create and discard multiple providers
            for (int i = 0; i < 100; i++) {
                FessTimeResourceProvider tempProvider = new FessTimeResourceProvider(mockConfig);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

            assertNotNull(confPath);
    
            // Test with empty names
            confPath = ResourceUtil.getConfPath();
            assertNotNull(confPath);
    
            // Test with multiple names
            confPath = ResourceUtil.getConfPath("dir1", "dir2", "file.conf");
            assertNotNull(confPath);
            assertTrue(confPath.toString().contains("dir1"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/entity/FessUserTest.java

            user = new TestFessUser("ユーザー名", new String[] {}, new String[] {}, new String[] {});
            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());
    
    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/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            } catch (final Exception e) {
                assertTrue("Empty command should be handled", true);
            }
        }
    
        // Test multiple commands configuration
        public void test_multiple_commands_configuration() throws Exception {
            // Test setting multiple commands without triggering execution
            final List<String> commands =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/ds/DataStoreTest.java

                }
            };
    
            // Execute stop
            dataStore.stop();
    
            assertTrue(stopCalled.get());
        }
    
        public void test_stop_multipleCalls() {
            // Test multiple stop calls
            final AtomicInteger stopCallCount = new AtomicInteger(0);
    
            dataStore = new DataStore() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
Back to top