- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 156 for transient (0.1 sec)
-
src/main/java/org/codelibs/core/exception/BeanFieldSetAccessibleFailureException.java
public class BeanFieldSetAccessibleFailureException extends ClRuntimeException { private static final long serialVersionUID = 1L; protected final Class<?> targetClass; protected final transient Field targetField; public BeanFieldSetAccessibleFailureException(final Class<?> componentClass, final Field targetField, final Throwable cause) { super("ECL0115", new Object[] { targetField }, cause);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Fri Mar 08 13:23:29 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/BeanMethodSetAccessibleFailureException.java
public class BeanMethodSetAccessibleFailureException extends ClRuntimeException { private static final long serialVersionUID = 1L; protected final Class<?> targetClass; protected final transient Method targetMethod; public BeanMethodSetAccessibleFailureException(final Class<?> componentClass, final Method targetMethod, final Throwable cause) { super("ECL0116", new Object[] { targetMethod }, cause);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Fri Mar 08 13:23:29 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ModifierUtil.java
} /** * <code>transient</code>かどうか返します。 * * @param field * フィールド * @return <code>transient</code>なら{@literal true} * @see #isTransient(int) */ public static boolean isTransient(final Field field) { return isTransient(field.getModifiers()); } /** * <code>transient</code>かどうか返します。 * * @param modifier
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.5K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/DescendingMultiset.java
@Nullable private transient Comparator<? super E> comparator; @Override public Comparator<? super E> comparator() { Comparator<? super E> result = comparator; if (result == null) { return comparator = Ordering.from(forwardMultiset().comparator()).<E>reverse(); } return result; } @Nullable private transient SortedSet<E> elementSet; @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jan 24 16:03:45 UTC 2024 - 4.2K bytes - Viewed (0) -
cmd/metacache-set_gen.go
z.IncludeDirectories, err = dc.ReadBool() if err != nil { err = msgp.WrapError(err, "IncludeDirectories") return } case "Transient": z.Transient, err = dc.ReadBool() if err != nil { err = msgp.WrapError(err, "Transient") return } case "Versioned": z.Versioned, err = dc.ReadBool() if err != nil { err = msgp.WrapError(err, "Versioned") return
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Mar 19 20:23:12 UTC 2024 - 13.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/DescendingMultiset.java
@LazyInit @CheckForNull private transient Comparator<? super E> comparator; @Override public Comparator<? super E> comparator() { Comparator<? super E> result = comparator; if (result == null) { return comparator = Ordering.from(forwardMultiset().comparator()).<E>reverse(); } return result; } @LazyInit @CheckForNull private transient NavigableSet<E> elementSet; @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jun 26 21:02:13 UTC 2023 - 4.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableMultiset.java
static final RegularImmutableMultiset<Object> EMPTY = new RegularImmutableMultiset<>(ObjectCountHashMap.create()); final transient ObjectCountHashMap<E> contents; private final transient int size; @LazyInit @CheckForNull private transient ImmutableSet<E> elementSet; RegularImmutableMultiset(ObjectCountHashMap<E> contents) { this.contents = contents; long size = 0;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/HashBiMap.java
private transient @Nullable BiEntry<K, V>[] hashTableKToV; @SuppressWarnings("nullness:initialization.field.uninitialized") // For J2KT (see above) private transient @Nullable BiEntry<K, V>[] hashTableVToK; @Weak @CheckForNull private transient BiEntry<K, V> firstInKeyInsertionOrder; @Weak @CheckForNull private transient BiEntry<K, V> lastInKeyInsertionOrder;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 13 14:11:58 UTC 2023 - 24.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/RegularImmutableSet.java
new RegularImmutableSet<>(EMPTY_ARRAY, 0, EMPTY_ARRAY, 0); private final transient Object[] elements; private final transient int hashCode; // the same values as `elements` in hashed positions (plus nulls) @VisibleForTesting final transient @Nullable Object[] table; // 'and' with an int to get a valid table index. private final transient int mask;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 3.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractMultimap.java
} @LazyInit @CheckForNull private transient Set<K> keySet; @Override public Set<K> keySet() { Set<K> result = keySet; return (result == null) ? keySet = createKeySet() : result; } abstract Set<K> createKeySet(); @LazyInit @CheckForNull private transient Multiset<K> keys; @Override public Multiset<K> keys() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 21:08:00 UTC 2021 - 7.1K bytes - Viewed (0)