- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 1,404 for toType (0.03 sec)
-
container-tests/src/test/java/okhttp3/containers/BasicProxyTest.kt
} @Test fun testOkHttpProxied() { testRequest { it.withProxyConfiguration(ProxyConfiguration.proxyConfiguration(ProxyConfiguration.Type.HTTP, it.remoteAddress())) val client = OkHttpClient .Builder() .proxy(Proxy(Proxy.Type.HTTP, it.remoteAddress())) .build() val response = client .newCall(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 6.2K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeToInstanceMap.java
*/ <T extends @NonNull B> @Nullable T getInstance(Class<T> type); /** * Returns the value the specified type is mapped to, or {@code null} if no entry for this type is * present. This will only return a value that was bound to this specific type, not a value that * may have been bound to a subtype. */ <T extends @NonNull B> @Nullable T getInstance(TypeToken<T> type); /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3.7K bytes - Viewed (0) -
guava/src/com/google/common/reflect/TypeToInstanceMap.java
*/ <T extends @NonNull B> @Nullable T getInstance(Class<T> type); /** * Returns the value the specified type is mapped to, or {@code null} if no entry for this type is * present. This will only return a value that was bound to this specific type, not a value that * may have been bound to a subtype. */ <T extends @NonNull B> @Nullable T getInstance(TypeToken<T> type); /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3.7K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosEncDataTest.java
ASN1EncodableVector authElementVector = new ASN1EncodableVector(); // Use an auth type that doesn't require complex parsing (e.g., 999 - unknown type) authElementVector.add(new DERTaggedObject(0, new ASN1Integer(999))); // ad-type authElementVector.add(new DERTaggedObject(1, new DEROctetString(new byte[] { 1, 2, 3, 4 })));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/jcifs/pac/ASN1Util.java
/** * Casts an object to the specified type with type checking * @param <T> the target type * @param type the target class type * @param object the object to cast * @return object cast to type * @throws PACDecodingException if types are incompatible */ public static <T> T as(final Class<T> type, final Object object) throws PACDecodingException { if (!type.isInstance(object)) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.access_token/access_token.json
"name": { "type": "keyword" }, "token": { "type": "keyword" }, "permissions": { "type": "keyword" }, "parameter_name" : { "type": "keyword" }, "expiredTime": { "type": "long" }, "createdBy": { "type": "keyword" }, "createdTime": { "type": "long" },
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 529 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/BaseApiManager.java
return FormatType.SEARCH; } final String type = value.toUpperCase(Locale.ROOT); if (FormatType.SEARCH.name().equals(type)) { return FormatType.SEARCH; } if (FormatType.LABEL.name().equals(type)) { return FormatType.LABEL; } if (FormatType.POPULARWORD.name().equals(type)) { return FormatType.POPULARWORD; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SambaHelper.java
* Creates a search role. * @param type The SID type. * @param name The account name. * @return The search role. */ protected String createSearchRole(final int type, final String name) { if (fessConfig.isLdapLowercasePermissionName()) { return type + fessConfig.getCanonicalLdapName(name).toLowerCase(Locale.ROOT); } return type + fessConfig.getCanonicalLdapName(name); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/storage/admin_storage.jsp
<button type="button" class="btn btn-outline-secondary" data-dismiss="modal"> <la:message key="labels.crud_button_cancel"/> </button> <button type="submit" class="btn btn-success" name="createDir">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu May 26 01:48:41 UTC 2022 - 20.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/MinimalCollection.java
Class<? super @NonNull E> type, E... contents) { return new MinimalCollection<>(type, true, contents); } private final E[] contents; private final Class<? super @NonNull E> type; private final boolean allowNulls; // Package-private so that it can be extended. MinimalCollection(Class<? super @NonNull E> type, boolean allowNulls, E... contents) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3.8K bytes - Viewed (0)