- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 370 for enums (0.03 sec)
-
guava/src/com/google/common/cache/RemovalCause.java
import java.util.Iterator; import java.util.Map; import java.util.concurrent.ConcurrentMap; /** * The reason why a cached entry was removed. * * @author Charles Fry * @since 10.0 */ @GwtCompatible public enum RemovalCause { /** * The entry was manually removed by the user. This can result from the user invoking {@link * Cache#invalidate}, {@link Cache#invalidateAll(Iterable)}, {@link Cache#invalidateAll()}, {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2.7K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
public static final int DIRECTORY_FULL = SMB2_LEASE_FULL; // All three } ``` ### 3.2 Directory Cache Scopes ```java public enum DirectoryCacheScope { IMMEDIATE_CHILDREN, // Only direct children RECURSIVE_TREE, // Entire subtree (if supported) METADATA_ONLY, // File attributes but not content
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
- **RFC 5040**: A Remote Direct Memory Access Protocol Specification - **RFC 5041**: Direct Data Placement over Reliable Transports ## 3. RDMA Architecture ### 3.1 RDMA Capabilities ```java public enum RdmaCapability { RDMA_READ, // Remote direct read operations RDMA_WRITE, // Remote direct write operations RDMA_SEND_RECEIVE, // Traditional send/receive with RDMA
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTester.kt
) { val builder = "http://host/".toHttpUrl().newBuilder() component[builder] = codePointString val url = builder.build() assertThat(url.host).startsWith(Punycode.PREFIX_STRING) } enum class Encoding { IDENTITY { override fun encode(codePoint: Int): String = String(codePoint) }, PERCENT { override fun encode(codePoint: Int): String {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/BaseApiManager.java
/** Path prefix for API endpoints. */ protected String pathPrefix; /** * Enumeration of supported API format types. */ protected enum FormatType { /** Search API format. */ SEARCH, /** Label API format. */ LABEL, /** Popular word API format. */ POPULARWORD, /** Favorite API format. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/ReflectionFreeAssertThrows.java
+ " but returned result: " + result); } else { throw new AssertionError("expected to throw " + expectedThrowable.getSimpleName()); } } private enum PlatformSpecificExceptionBatch { PLATFORM { @GwtIncompatible @J2ktIncompatible @Override // returns the types available in "normal" environments
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.9K bytes - Viewed (0) -
docs/de/docs/tutorial/query-params.md
In diesem Fall gibt es drei Query-Parameter: * `needy`, ein erforderlicher `str`. * `skip`, ein `int` mit einem Defaultwert `0`. * `limit`, ein optionales `int`. /// tip | Tipp Sie können auch `Enum`s verwenden, auf die gleiche Weise wie mit [Pfad-Parametern](path-params.md#vordefinierte-parameterwerte){.internal-link target=_blank}.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:29:01 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java
private final ConcurrentHashMap<String, ChangeNotificationHandle> activeWatchers; private final ConcurrentHashMap<String, Integer> failureCounts; /** * Directory change types */ public enum DirectoryChangeType { /** * File was added to the directory */ FILE_ADDED, /** * File was removed from the directory */ FILE_REMOVED,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java
* * @since 4.0.0 */ @Experimental @Immutable public interface ModelBuilderRequest extends Request<Session> { /** * The possible request types for building a model. */ enum RequestType { /** * The request is for building an initial model from a POM file in a project on the filesystem. */ BUILD_PROJECT, /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 26 20:54:22 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Context.java
} } @SuppressWarnings("unchecked") private static <T extends Enum<T>> Object getSessionKeyInquireType(Class<?> inquireTypeClass) { return Enum.valueOf((Class<T>) inquireTypeClass, "KRB5_GET_SESSION_KEY"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 13.5K bytes - Viewed (1)