- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 67 for Transient (0.12 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/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) -
android/guava/src/com/google/common/collect/ObjectCountHashMap.java
* by init(), which the constructor calls. */ /** The keys of the entries in the map. */ transient @Nullable Object[] keys; /** The values of the entries in the map. */ transient int[] values; transient int size; transient int modCount; /** * The hashtable. Its values are indexes to the keys, values, and entries arrays. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 01 22:07:10 UTC 2021 - 15K 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) -
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/RegularImmutableBiMap.java
static final double MAX_LOAD_FACTOR = 1.2; @CheckForNull private final transient @Nullable ImmutableMapEntry<K, V>[] keyTable; @CheckForNull private final transient @Nullable ImmutableMapEntry<K, V>[] 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 Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 11.3K bytes - Viewed (0) -
cmd/metacache-set.go
Create bool // Include pure directories. IncludeDirectories bool // Transient is set if the cache is transient due to an error or being a reserved bucket. // This means the cache metadata will not be persisted on disk. // A transient result will never be returned from the cache so knowing the list id is required. Transient bool // Versioned is this a ListObjectVersions call. Versioned bool // V1 listing type
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 12 16:23:16 UTC 2024 - 30.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayMap.java
/** 負荷係数 */ protected transient int threshold; /** マップとしてのエントリ */ protected transient Entry<K, V>[] mapTable; /** 配列としてのエントリ */ protected transient Entry<K, V>[] listTable; /** 要素数 */ protected transient int size = 0; /** {@link Set}としてのビュー */ protected transient Set<? extends Map.Entry<K, V>> entrySet = null; /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractEntity.java
protected String id; protected Long version; protected Long seqNo; protected Long primaryTerm; private transient RequestOptionCall<IndexRequestBuilder> indexOption; private transient RequestOptionCall<DeleteRequestBuilder> deleteOption; public DocMeta id(String id) { this.id = id; myuniqueByProperty("_id");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.9K bytes - Viewed (0)