- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 147 for Transient (0.05 sec)
-
src/main/java/org/codelibs/core/exception/BeanMethodSetAccessibleFailureException.java
private static final long serialVersionUID = 1L; /** * The target class. */ protected final Class<?> targetClass; /** * The target method. */ protected final transient Method targetMethod; /** * Creates a new {@link BeanMethodSetAccessibleFailureException} with the specified cause. * * @param componentClass * the component classRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ModifierUtil.java
* Checks if the specified field is transient. * * @param field * the field to check * @return true if transient, false otherwise * @see #isTransient(int) */ public static boolean isTransient(final Field field) { return isTransient(field.getModifiers()); } /** * Checks if the specified modifier is transient. * * @param modifierRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/RegularImmutableBiMap.java
static final double MAX_LOAD_FACTOR = 1.2; private final transient @Nullable ImmutableMapEntry<K, V> @Nullable [] keyTable; private final transient @Nullable ImmutableMapEntry<K, V> @Nullable [] valueTable; @VisibleForTesting final transient Entry<K, V>[] entries; private final transient int mask; private final transient int hashCode; static <K, V> ImmutableBiMap<K, V> fromEntries(Entry<K, V>... entries) {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 21:07:18 UTC 2025 - 11K bytes - Viewed (0) -
compat/maven-toolchain-model/src/main/java/org/apache/maven/toolchain/model/BaseObject.java
*/ package org.apache.maven.toolchain.model; import java.io.Serializable; import static java.util.Objects.requireNonNull; public abstract class BaseObject implements Serializable, Cloneable { protected transient ChildrenTracking childrenTracking; protected Object delegate; public BaseObject() {} public BaseObject(Object delegate, BaseObject parent) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/jcifs/SmbResourceException.java
* @param resourceType the type of resource */ public SmbResourceException(String message, int errorCode, ResourceType resourceType) { super(message, errorCode, Severity.TRANSIENT, Category.RESOURCE); this.resourceType = resourceType; this.availableResources = -1; this.requestedResources = -1; } /** * Creates a resource exception with resource detailsRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 5.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMapEntrySet.java
Spliterator.ORDERED | Spliterator.DISTINCT | Spliterator.NONNULL | Spliterator.IMMUTABLE; static final class RegularEntrySet<K, V> extends ImmutableMapEntrySet<K, V> { private final transient ImmutableMap<K, V> map; private final transient ImmutableList<Entry<K, V>> entries; RegularEntrySet(ImmutableMap<K, V> map, Entry<K, V>[] entries) { this(map, asImmutableList(entries)); }
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Nov 17 22:50:48 UTC 2025 - 4.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactHashMap.java
* * <p>The pointers in [size(), entries.length) are all "null" (UNSET). */ @VisibleForTesting transient int @Nullable [] entries; /** * The keys of the entries in the map, in the range of [0, size()). The keys in [size(), * keys.length) are all {@code null}. */ @VisibleForTesting transient @Nullable Object @Nullable [] keys; /**
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/java/jcifs/SmbException.java
return severity == Severity.RECOVERABLE || severity == Severity.TRANSIENT; } /** * Checks if retry should be attempted * * @return true if retry is recommended */ public boolean shouldRetry() { return severity == Severity.RECOVERABLE || severity == Severity.TRANSIENT; } /** * Gets recommended retry delay in milliseconds *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/ModifierUtilTest.java
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayMap.java
/** Load factor */ protected transient int threshold; /** Entry as a map */ protected transient Entry<K, V>[] mapTable; /** Entry as an array */ protected transient Entry<K, V>[] listTable; /** Number of elements */ protected transient int size = 0; /** View as a {@link Set} */ protected transient Set<? extends Map.Entry<K, V>> entrySet = null; /**Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 20.1K bytes - Viewed (0)