Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 488 for serialVersionUID (0.07 sec)

  1. android/guava-tests/test/com/google/common/io/FilesTest.java

          super(delegate.getPath());
          this.badLength = badLength;
        }
    
        @Override
        public long length() {
          return badLength;
        }
    
        private static final long serialVersionUID = 0;
      }
    
      public void testToString() throws IOException {
        File asciiFile = getTestFile("ascii.txt");
        File i18nFile = getTestFile("i18n.txt");
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableMultiset.java

          }
          return ImmutableMultiset.copyOf(multiset);
        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      @GwtIncompatible @J2ktIncompatible   private static final long serialVersionUID = 0xcafebabe;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java

    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager for KeyMatch.
     */
    public class KeyMatchPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Default constructor.
         */
        public KeyMatchPager() {
            // Default constructor
        }
    
        /** The default page size. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsLabelType.java

        //                                                                          Definition
        //                                                                          ==========
        private static final long serialVersionUID = 1L;
        protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class;
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java

            // Test that the exception is serializable
            String message = "Serialization test";
            LdapConfigurationException exception = new LdapConfigurationException(message);
    
            // Test that serialVersionUID is accessible (inherited from parent)
            assertNotNull(exception);
    
            // Create a new instance to verify it can be created multiple times
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exception/ScheduledJobExceptionTest.java

            // Test that the exception is serializable
            ScheduledJobException exception = new ScheduledJobException("Serialization test");
    
            // Verify that the exception has serialVersionUID field (won't compile if not present)
            assertTrue(exception instanceof java.io.Serializable);
        }
    
        public void test_longMessage() {
            // Test with very long message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java

     * This class holds all the necessary information to reconnect
     * a handle after network failures or server reboots.
     */
    public class HandleInfo implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * The full path to the file or directory associated with this handle
         */
        private final String path;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Lists.java

          checkElementIndex(index, size());
          return (index == 0) ? first : rest[index - 1];
        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      /**
       * @see Lists#asList(Object, Object, Object[])
       */
      private static final class TwoPlusArrayList<E extends @Nullable Object> extends AbstractList<E>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 42.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/exentity/ElevateWord.java

    import org.dbflute.cbean.result.ListResultBean;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class ElevateWord extends BsElevateWord {
    
        private static final long serialVersionUID = 1L;
    
        private String[] labelTypeIds;
    
        private volatile List<LabelType> labelTypeList;
    
        /* (non-Javadoc)
         * @see org.codelibs.fess.db.exentity.CrawlingConfig#getLabelTypeIds()
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsBoostDocumentRule.java

        //                                                                          Definition
        //                                                                          ==========
        private static final long serialVersionUID = 1L;
        protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class;
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.7K bytes
    - Viewed (0)
Back to top