- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 133 for Transient (0.25 sec)
-
cmd/metacache-server-pool.go
} // Decode and get the optional list id from the marker. o.parseMarker() if o.BaseDir == "" { o.BaseDir = baseDirFromPrefix(o.Prefix) } o.Transient = o.Transient || isReservedOrInvalidBucket(o.Bucket, false) o.SetFilter() if o.Transient { o.Create = false } // We have 2 cases: // 1) Cold listing, just list. // 2) Returning, but with no id. Start async listing.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 12 16:23:16 UTC 2024 - 12.7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableBiMap.java
@CheckForNull private final transient Object keyHashTable; @VisibleForTesting final transient @Nullable Object[] alternatingKeysAndValues; private final transient int keyOffset; // 0 for K-to-V, 1 for V-to-K private final transient int size; private final transient RegularImmutableBiMap<V, K> inverse; /** Constructor for empty bimap. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 4.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/SingletonImmutableBiMap.java
@SuppressWarnings("serial") // uses writeReplace(), not default serialization @ElementTypesAreNonnullByDefault final class SingletonImmutableBiMap<K, V> extends ImmutableBiMap<K, V> { final transient K singleKey; final transient V singleValue; SingletonImmutableBiMap(K singleKey, V singleValue) { checkEntryNotNull(singleKey, singleValue); this.singleKey = singleKey; this.singleValue = singleValue;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 3.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableSortedMultiset.java
new RegularImmutableSortedMultiset<>(Ordering.natural()); @VisibleForTesting final transient RegularImmutableSortedSet<E> elementSet; private final transient long[] cumulativeCounts; private final transient int offset; private final transient int length; RegularImmutableSortedMultiset(Comparator<? super E> comparator) { this.elementSet = ImmutableSortedSet.emptySet(comparator);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 01 16:15:01 UTC 2024 - 4.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/HashBiMap.java
/** Maps an "entry" to the key of that entry. */ transient @Nullable K[] keys; /** Maps an "entry" to the value of that entry. */ transient @Nullable V[] values; transient int size; transient int modCount; /** Maps a bucket to the "entry" of its first element. */ private transient int[] hashTableKToV; /** Maps a bucket to the "entry" of its first element. */ private transient int[] hashTableVToK;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Mar 06 16:06:58 UTC 2023 - 36.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableMap.java
} static class EntrySet<K, V> extends ImmutableSet<Entry<K, V>> { private final transient ImmutableMap<K, V> map; private final transient @Nullable Object[] alternatingKeysAndValues; private final transient int keyOffset; private final transient int size; EntrySet( ImmutableMap<K, V> map, @Nullable Object[] alternatingKeysAndValues,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 15 22:32:14 UTC 2024 - 22.7K bytes - Viewed (0) -
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) -
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)