- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 139 for Transient (1.78 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 Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbOperationException.java
true), RESOURCE_LOCKED("Resource is locked", ErrorCategory.RESOURCE, true), // Transient errors BUSY("Server busy", ErrorCategory.TRANSIENT, true), TRY_AGAIN("Try again later", ErrorCategory.TRANSIENT, true), SERVICE_UNAVAILABLE("Service temporarily unavailable", ErrorCategory.TRANSIENT, true), // Generic errors
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DependencyResolutionException.java
*/ @Deprecated(since = "4.0.0") public class DependencyResolutionException extends Exception { private final transient DependencyResolutionResult result; private final transient String detailMessage; public DependencyResolutionException(DependencyResolutionResult result, String message, Throwable cause) { super(message, cause); this.result = result;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 2.6K 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 Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 13.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/HashBiMap.java
/** Maps an "entry" to the key of that entry. */ private transient @Nullable K[] keys; /** Maps an "entry" to the value of that entry. */ private transient @Nullable V[] values; private transient int size; private 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. */
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Dec 16 14:46:34 UTC 2025 - 37.1K 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 Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 14.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/EnumMultiset.java
EnumMultiset<E> result = create(type); Iterables.addAll(result, elements); return result; } private transient Class<E> type; private transient E[] enumConstants; private transient int[] counts; private transient int distinctElements; private transient long size; /** Creates an empty {@code EnumMultiset}. */ private EnumMultiset(Class<E> type) { this.type = type;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 9.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Synchronized.java
extends SynchronizedObject implements Multimap<K, V> { transient @Nullable Set<K> keySet; transient @Nullable Collection<V> valuesCollection; transient @Nullable Collection<Map.Entry<K, V>> entries; transient @Nullable Map<K, Collection<V>> asMap; transient @Nullable Multiset<K> keys; @SuppressWarnings("unchecked") @Override Multimap<K, V> delegate() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Aug 08 15:11:10 UTC 2025 - 53K bytes - Viewed (0) -
guava/src/com/google/common/collect/Synchronized.java
extends SynchronizedObject implements Multimap<K, V> { transient @Nullable Set<K> keySet; transient @Nullable Collection<V> valuesCollection; transient @Nullable Collection<Map.Entry<K, V>> entries; transient @Nullable Map<K, Collection<V>> asMap; transient @Nullable Multiset<K> keys; @SuppressWarnings("unchecked") @Override Multimap<K, V> delegate() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Aug 08 15:11:10 UTC 2025 - 56.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.9K bytes - Viewed (0)