- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 463 for serialVersionUID (0.4 sec)
-
guava/src/com/google/common/cache/CacheLoader.java
} @Override public V load(K key) { return computingFunction.apply(checkNotNull(key)); } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } /** * Returns a {@code CacheLoader} which wraps {@code loader}, executing calls to {@link * CacheLoader#reload} using {@code executor}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 9.5K bytes - Viewed (0) -
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) -
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) -
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) -
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) -
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) -
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) -
android/guava/src/com/google/common/collect/EmptyImmutableSetMultimap.java
return super.asMap(); } private Object readResolve() { return INSTANCE; // preserve singleton property } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 14:59:07 UTC 2025 - 1.8K bytes - Viewed (0) -
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) -
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)