- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 605 for Otherwise (0.05 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/VersionRange.java
* * @param version the version to test, must not be {@code null} * @return {@code true} if this range contains the specified version, {@code false} otherwise */ boolean contains(@Nonnull Version version); /** * Returns the upper boundary of this range, or {@code null} if none. */ @Nullable Boundary getUpperBoundary(); /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateResponse.java
this.maxFragmentedSize = RdmaCapabilities.DEFAULT_MAX_FRAGMENTED_SIZE; } /** * Check if negotiation was successful * * @return true if successful, false otherwise */ public boolean isSuccess() { return status == 0; } /** * Get negotiation status * * @return status code (0 = success) */ public int getStatus() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/log/AdminLogAction.java
} /** * Checks if the given filename is a log file. * * @param name the filename to check * @return true if the filename ends with .log or .log.gz, false otherwise */ public static boolean isLogFilename(final String name) { return name.endsWith(".log") || name.endsWith(".log.gz"); } private HtmlResponse asIndexHtml() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedContentService.java
/** * Retrieves a specific related content entity by its ID. * * @param id the unique identifier of the related content * @return an OptionalEntity containing the RelatedContent if found, empty otherwise */ public OptionalEntity<RelatedContent> getRelatedContent(final String id) { return relatedContentBhv.selectByPK(id); } /** * Stores (inserts or updates) a related content entity.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache2/Relay.kt
* with other sources. * * **Warning:** callers to this method must immediately call [newSource] to create a source and * close that when they're done. Otherwise a handle to [file] will be leaked. */ @Throws(IOException::class) fun edit( file: File, upstream: Source, metadata: ByteString, bufferMaxSize: Long, ): Relay {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 17:15:47 UTC 2025 - 11.8K bytes - Viewed (0) -
cmd/bucket-listobjects-handlers.go
// if one of the args do not meet the required conditions. // Special conditions required by MinIO server are as below // - delimiter if set should be equal to '/', otherwise the request is rejected. // - marker if set should have a common prefix with 'prefix' param, otherwise // the request is rejected. func validateListObjectsArgs(prefix, marker, delimiter, encodingType string, maxKeys int) APIErrorCode { // Max keys cannot be negative.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Feb 03 21:03:04 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
} /** * Validates if the given URL string is a valid URL. * * @param urlStr the URL string to validate * @return true if the URL is valid, false otherwise */ protected boolean isValidUrl(final String urlStr) { if (StringUtil.isBlank(urlStr)) { return false; } final String value; if (urlStr.startsWith("://")) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.4K bytes - Viewed (0) -
android/guava/src/com/google/common/base/MoreObjects.java
* @since 18.0 (since 2.0 as {@code Objects}) */ @GwtCompatible public final class MoreObjects { /** * Returns the first of two given parameters that is not {@code null}, if either is, or otherwise * throws a {@link NullPointerException}. * * <p>To find the first non-null element in an iterable, use {@code Iterables.find(iterable,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 16.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ObjectArrays.java
* Returns an array containing all of the elements in the specified collection; the runtime type * of the returned array is that of the specified array. If the collection fits in the specified * array, it is returned therein. Otherwise, a new array is allocated with the runtime type of the * specified array and the size of the specified collection. * * <p>If the collection fits in the specified array with room to spare (i.e., the array has more
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.9K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Ascii.java
} return String.valueOf(newChars); } /** * If the argument is an {@linkplain #isUpperCase(char) uppercase ASCII character}, returns the * lowercase equivalent. Otherwise returns the argument. */ public static char toLowerCase(char c) { return isUpperCase(c) ? (char) (c ^ CASE_MASK) : c; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 21.7K bytes - Viewed (0)