Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 114 of 114 for NullPointerException (1.78 sec)

  1. src/main/java/org/codelibs/fess/suggest/Suggester.java

         * @param normalizer The Normalizer instance.
         * @param analyzer The SuggestAnalyzer instance.
         * @param threadPool The ExecutorService for thread pooling.
         * @throws NullPointerException if any of the required parameters is null.
         */
        public Suggester(final Client client, final SuggestSettings settings, final ReadingConverter readingConverter,
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 21.6K bytes
    - Viewed (3)
  2. src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java

            void testWriteWithNullFileId() {
                request.setFileId(null);
                request.setReadLength(1024);
    
                byte[] buffer = new byte[256];
    
                assertThrows(NullPointerException.class, () -> request.writeBytesWireFormat(buffer, 0));
            }
    
            @Test
            @DisplayName("Should handle file ID of different sizes")
            void testWriteWithDifferentFileIdSizes() {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java

        public void test_destroyObject_nullPooledObject() {
            try {
                factory.destroyObject(null);
                // Should not throw NPE - implementation should handle gracefully or throw
            } catch (NullPointerException e) {
                // Acceptable behavior
                assertTrue(true);
            } catch (Exception e) {
                // Other exceptions might be acceptable
                assertTrue(true);
            }
        }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 13:07:01 UTC 2025
    - 36.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

         * change). To access the renamed file it is necessary to construct a
         * new {@code SmbFile}</i>.
         *
         * @param  dest  An <code>SmbFile</code> that represents the new pathname
         * @throws NullPointerException
         *         If the <code>dest</code> argument is <code>null</code>
         * @throws SmbException if an error occurs during the rename operation
         */
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top