- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 272 for musste (0.04 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/EventListener.kt
* * Client configuration may be used to make follow-up decisions, such as: * * * [OkHttpClient.followRedirects] must be true to follow redirects. * * [OkHttpClient.followSslRedirects] must be true to follow redirects that add or remove HTTPS. * * [OkHttpClient.authenticator] must respond to an authorization challenge. * * @param networkResponse the intermediate response that may require a follow-up request.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:58:02 UTC 2025 - 17.4K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/HashCode.java
*/ public static HashCode fromBytes(byte[] bytes) { checkArgument(bytes.length >= 1, "A HashCode must contain at least 1 byte."); return fromBytesNoCopy(bytes.clone()); } /** * Creates a {@code HashCode} from a byte array. The array is <i>not</i> copied defensively, so it * must be handed-off so as to preserve the immutability contract of {@code HashCode}. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 12.6K bytes - Viewed (0) -
guava/src/com/google/common/graph/Network.java
* } * * <p>{@link NetworkBuilder#build()} returns an instance of {@link MutableNetwork}, which is a * subtype of {@code Network} that provides methods for adding and removing nodes and edges. If you * do not need to mutate a network (e.g. if you write a method than runs a read-only algorithm on * the network), you should use the non-mutating {@link Network} interface, or an {@link * ImmutableNetwork}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:03:02 UTC 2025 - 22.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/DomUtil.java
} /** * Appends the string representation of an {@link Element}. * * @param element * The element. Must not be {@literal null}. * @param buf * The string buffer. Must not be {@literal null}. */ public static void appendElement(final Element element, final StringBuilder buf) { assertArgumentNotNull("element", element);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceUtil.java
* * @param path * The resource path. Must not be {@literal null} or empty string. * @param extension * The resource extension. * @param loader * The class loader to search for the resource. Must not be {@literal null}. * @return The resource {@link URL} * @see #getResourcePath(String, String) */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 14.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/CopyUtil.java
* * @param in the input file (must not be {@literal null}) * @param inputEncoding the input file encoding (must not be {@literal null} or empty) * @param out the output file (must not be {@literal null}) * @param outputEncoding the output file encoding (must not be {@literal null} or empty) * @return the number of characters copied */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 45.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/BeanUtil.java
* * @param src The source Bean. Must not be {@literal null}. * @param dest The destination Bean. Must not be {@literal null}. */ public static void copyBeanToBean(final Object src, final Object dest) { copyBeanToBean(src, dest, DEFAULT_OPTIONS); } /** * Copies properties from one Bean to another Bean. * * @param src The source Bean. Must not be {@literal null}.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.5K bytes - Viewed (0) -
src/main/resources/fess_message.properties
# --------------- constraints.AssertFalse.message = {item} must be false. constraints.AssertTrue.message = {item} must be true. constraints.DecimalMax.message = {item} must be less than {value}. constraints.DecimalMin.message = {item} must be greater than {value}. constraints.Digits.message = {item} must be a number. (expected: <number>.<number>) constraints.Future.message = {item} must be a future value.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/resources/fess_message_en.properties
# --------------- constraints.AssertFalse.message = {item} must be false. constraints.AssertTrue.message = {item} must be true. constraints.DecimalMax.message = {item} must be less than {value}. constraints.DecimalMin.message = {item} must be greater than {value}. constraints.Digits.message = {item} must be a number. (expected: <number>.<number>) constraints.Future.message = {item} must be a future value.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptions.java
return this; } /** * Sets a converter. * * @param converter * The converter. Must not be {@literal null}. * @param propertyNames * The property names to which this converter will be applied. Each element must not be {@literal null} or an empty string. * @return This instance itself */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 17.5K bytes - Viewed (0)