Search Options

Results per page
Sort
Preferred Languages
Advance

Results 731 - 740 of 1,413 for Empty (0.03 sec)

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

            assertNull(exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_constructorWithEmptyMessage() {
            // Test constructor with empty message
            String message = "";
            ScheduledJobException exception = new ScheduledJobException(message);
    
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java

            assertNotNull(exception);
            assertNull(exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_constructorWithEmptyMessage() {
            // Test constructor with empty message
            String message = "";
            StorageException exception = new StorageException(message);
    
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java

            emptyGenerator = new EmptyGenerator();
    
            // Test basic functionality
            Map<String, Object> docMap = new HashMap<>();
            docMap.put("id", "doc123");
    
            emptyGenerator.setName("empty");
            String path = "/path/to/thumbnail.jpg";
    
            // Since createTask requires FessConfig, it may not work properly
            // We test that the method can be called without throwing exceptions
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/AbstractInvocationHandler.java

       * will be returned as the proxied method's return value.
       *
       * <p>Unlike {@link #invoke}, {@code args} will never be null. When the method has no parameter,
       * an empty array is passed in.
       */
      protected abstract @Nullable Object handleInvocation(
          Object proxy, Method method, @Nullable Object[] args) throws Throwable;
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerStatusTest.java

                // Expected
                assertTrue(e.getMessage().contains("initializing"));
            }
    
            try {
                CrawlerStatus.valueOf("");
                fail("Should throw IllegalArgumentException for empty string");
            } catch (IllegalArgumentException e) {
                // Expected
            }
    
            try {
                CrawlerStatus.valueOf(" RUNNING "); // with spaces
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponseTest.java

            int[][] testCases = { { 0, 50 }, // No offset, 50 bytes
                    { 10, 90 }, // 10 byte offset, 90 bytes
                    { 50, 50 }, // 50 byte offset, 50 bytes
                    { 0, 0 }, // Empty buffer
                    { 100, 100 } // Large values
            };
    
            for (int[] testCase : testCases) {
                // Arrange
                byte[] buffer = new byte[200];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/suggest/settings/SuggestSettingsBuilderTest.java

            assertEquals("25s", builder.timeoutSettings.scrollTimeout);
        }
    
        @Test
        public void testEmptyTimeoutValues() {
            // Test setting empty timeout values
            builder.scrollTimeout("").searchTimeout("").indexTimeout("").bulkTimeout("").indicesTimeout("").clusterTimeout("");
    
            assertEquals("", builder.timeoutSettings.scrollTimeout);
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java

            // Then - nothing should happen (empty implementation)
            verifyNoInteractions(request);
        }
    
        @Test
        @DisplayName("Should setup response correctly")
        void testSetupResponse() {
            // Given
            Response resp = mock(Response.class);
    
            // When
            response.setupResponse(resp);
    
            // Then - nothing should happen (empty implementation)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/nego/PreauthIntegrityNegotiateContextTest.java

                assertNotNull(context);
                assertNull(context.getHashAlgos());
                assertNull(context.getSalt());
            }
    
            @Test
            @DisplayName("Should create instance with empty arrays")
            void testConstructorWithEmptyArrays() {
                int[] hashAlgos = {};
                byte[] salt = {};
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 34K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/SIDTest.java

                assertEquals("S-1-5-10-20", unknown.getDomainName());
                assertEquals("30", unknown.getAccountName());
    
                // Domain type: domain name as-is, account name empty
                SID domain = new SID(buildSidT((byte) 1, ident, 10, 20), jcifs.SID.SID_TYPE_DOMAIN, "MYDOM", "ignored", false);
                assertEquals("MYDOM", domain.getDomainName());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top