Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 145 for Serialization (0.05 sec)

  1. guava/src/com/google/common/collect/ArrayTable.java

      }
    
      /*
       * TODO(jlevy): Add factory methods taking an Enum class, instead of an
       * iterable, to specify the allowed row keys and/or column keys. Note that
       * custom serialization logic is needed to support different enum sizes during
       * serialization and deserialization.
       */
    
      /**
       * Creates an {@code ArrayTable} with the mappings in the provided table.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 19:39:21 UTC 2025
    - 26.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchHelper.java

     *
     * Key features:
     * - Document search with pagination and faceting
     * - Scroll search for large result sets
     * - Document retrieval by ID
     * - Bulk document updates
     * - Search parameter serialization/deserialization for cookies
     * - Integration with search engines and logging systems
     */
    public class SearchHelper {
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/JobLogPager.java

     * This class handles pagination functionality for job log listings and provides
     * search criteria for filtering job logs.
     */
    public class JobLogPager implements Serializable {
    
        /** Serial version UID for serialization */
        private static final long serialVersionUID = 1L;
    
        /**
         * Default constructor.
         */
        public JobLogPager() {
            // Default constructor
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java

            assertTrue(exception instanceof Throwable);
        }
    
        public void test_serialVersionUID() {
            // Test that exception is serializable
            String message = "Serialization test";
            LdapOperationException exception = new LdapOperationException(message);
    
            // Verify the exception can be created (serialVersionUID is present)
            assertNotNull(exception);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java

            }
            assertTrue(foundTestMethod);
        }
    
        public void test_serialVersionUID() {
            // Test that the exception is serializable
            ThemeException exception = new ThemeException("Serialization test");
    
            // Verify that the exception can be created and has the expected structure
            assertNotNull(exception);
            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.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java

            assertTrue(exception instanceof Throwable);
        }
    
        public void test_serialization() {
            // Test serialVersionUID is properly defined
            GsaConfigException exception = new GsaConfigException("Serialization test");
    
            // Verify the exception is serializable (has serialVersionUID)
            assertNotNull(exception);
            // The serialVersionUID field exists and is accessible at compile time
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java

     * with search filters and navigation capabilities.
     */
    public class FailureUrlPager implements Serializable {
    
        /** Serial version UID for serialization compatibility. */
        private static final long serialVersionUID = 1L;
    
        /**
         * Default constructor.
         */
        public FailureUrlPager() {
            // Default constructor
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java

     * ClassToInstanceMap}</a>.
     *
     * @author Kevin Bourrillion
     * @since 2.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @SuppressWarnings("serial") // using writeReplace instead of standard serialization
    public final class MutableClassToInstanceMap<B extends @Nullable Object>
        extends ForwardingMap<Class<? extends @NonNull B>, B>
        implements ClassToInstanceMap<B>, Serializable {
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:10:29 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/GroupPager.java

     * including page navigation, record counts, and search criteria.
     *
     */
    public class GroupPager implements Serializable {
    
        /** Serial version UID for serialization compatibility. */
        private static final long serialVersionUID = 1L;
    
        /** Default number of records to display per page. */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java

            // Both instances should be of the same class
            assertEquals(exception1.getClass(), exception2.getClass());
    
            // Test serialization compatibility by checking class name
            assertEquals("org.codelibs.fess.exception.CommandExecutionException", exception1.getClass().getName());
        }
    
        public void test_exceptionThrown() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.2K bytes
    - Viewed (0)
Back to top