Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 407 for multiples (0.18 sec)

  1. src/test/java/org/codelibs/fess/dict/DictionaryExpiredExceptionTest.java

            assertEquals("test_stackTrace", stackTrace[0].getMethodName());
            assertEquals(this.getClass().getName(), stackTrace[0].getClassName());
        }
    
        public void test_multipleCatches() {
            // Test with multiple catch blocks
            boolean caughtSpecific = false;
            boolean caughtRuntime = false;
    
            try {
                throw new DictionaryExpiredException();
            } catch (DictionaryExpiredException e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java

                assertEquals("User is not found: testuser", e.getCause().getMessage());
            }
        }
    
        public void test_multipleInstances() {
            // Test that multiple instances are independent
            FessUserNotFoundException exception1 = new FessUserNotFoundException("user1");
            FessUserNotFoundException exception2 = new FessUserNotFoundException("user2");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHookTest.java

            ApiResult result = errorResponse.result();
    
            assertNotNull(result);
            // Cannot directly access protected fields, just verify the result is not null
        }
    
        // Test multiple configurations
        public void test_multipleConfigurations() {
            // Test with exception included = true
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java

            assertTrue(result.contains(expectedHashCode));
        }
    
        // Test toString() format consistency
        public void test_toString_formatConsistency() {
            // Create multiple instances and verify consistent format
            FessUserTimeZoneProcessProvider provider1 = new FessUserTimeZoneProcessProvider();
            FessUserTimeZoneProcessProvider provider2 = new FessUserTimeZoneProcessProvider();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java

            assertTrue(result.contains("Illegal state in search log processing"));
            assertTrue(result.endsWith("\n"));
        }
    
        public void test_execute_multipleErrors() {
            // Test with multiple calls to execute() with errors
            SearchLogHelper mockSearchLogHelper = new SearchLogHelper() {
                private int callCount = 0;
    
                @Override
                public void storeSearchLog() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

            // Set the customizer
            pagerCreator.setPagerCustomizer(customizer);
    
            // Verify it can be retrieved
            assertSame(customizer, pagerCreator.getPagerCustomizer());
        }
    
        // Test multiple set operations
        public void test_setPagerCustomizer_multiple_times() {
            // Create first customizer
            ComponentCustomizer customizer1 = new ComponentCustomizer() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

            Tuple3<String, String, String> task = thumbnailGenerator.createTask(path, docMap);
            assertNull(task);
        }
    
        public void test_multipleGenerations() {
            // Test multiple thumbnail generations
            for (int i = 0; i < 5; i++) {
                String thumbnailId = "test-thumbnail-" + i;
                File outputFile = new File(tempDir.toFile(), "thumbnail-" + i + ".png");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableSetMultimap.java

       *         .putAll("several", 1, 2, 3)
       *         .putAll("many", 1, 2, 3, 4, 5)
       *         .build();
       * }
       *
       * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build
       * multiple multimaps in series. Each multimap contains the key-value mappings in the previously
       * created multimaps.
       *
       * @since 2.0
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/CharMatcher.java

        static final int MULTIPLIER = 1682554634;
        static final int SHIFT = Integer.numberOfLeadingZeros(TABLE.length() - 1);
    
        static final CharMatcher INSTANCE = new Whitespace();
    
        Whitespace() {
          super("CharMatcher.whitespace()");
        }
    
        @Override
        public boolean matches(char c) {
          return TABLE.charAt((MULTIPLIER * c) >>> SHIFT) == c;
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 53.9K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Stream.kt

      internal val writeTimeout = StreamTimeout()
    
      /**
       * The reason why this stream was closed, or null if it closed normally or has not yet been
       * closed.
       *
       * If there are multiple reasons to abnormally close this stream (such as both peers closing it
       * near-simultaneously) then this is the first reason known to this peer.
       */
      internal var errorCode: ErrorCode? = null
        get() = withLock { field }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 18:57:05 UTC 2025
    - 22.4K bytes
    - Viewed (0)
Back to top