Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Presence (0.3 sec)

  1. src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java

            UnsupportedSearchException exception = new UnsupportedSearchException(message);
    
            // Verify basic properties are preserved
            assertEquals(message, exception.getMessage());
    
            // The presence of serialVersionUID is verified at compile time
            // and the exception extends RuntimeException which is Serializable
            assertTrue(exception instanceof java.io.Serializable);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/validation/CustomSizeTest.java

        // Test payload for validation
        private static class TestPayload implements Payload {
        }
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
        }
    
        // Test annotation presence and structure
        public void test_annotationPresence() {
            assertTrue("CustomSize should be an annotation", CustomSize.class.isAnnotation());
        }
    
        // Test annotation retention policy
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/validation/UriTypeTest.java

        }
    
        private static class AnotherTestPayload implements Payload {
        }
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
        }
    
        // Test annotation presence and structure
        public void test_annotationPresence() {
            assertTrue("UriType should be an annotation", UriType.class.isAnnotation());
        }
    
        // Test annotation retention policy
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 21K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/Futures.java

             * pending, so its `state` field hasn't been nulled out yet.
             *
             * OK, it's technically possible for this to fail in the presence of unsafe publishing, as
             * discussed in the comments in TimeoutFuture. TODO(cpovirk): Maybe check for null before
             * calling recordOutputCancellation?
             */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 64.3K bytes
    - Viewed (0)
Back to top