- Sort Score
- Result 10 results
- Languages All
Results 301 - 310 of 705 for otherSize (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
} /** * Checks if the given filename is a log file based on its extension. * * @param name the filename to check * @return true if the file is a log file (.log or .log.gz), false otherwise */ protected boolean isLogFilename(final String name) { return name.endsWith(".log") || name.endsWith(".log.gz"); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/cache/RequestResult.java
*/ Throwable error) { /** * Determines if the request was processed successfully. * * @return true if no error occurred during processing (error is null), false otherwise */ public boolean isSuccess() { return error == null; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 2.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/container/CrawlerContainer.java
*/ <T> T getComponent(String name); /** * Checks if the crawler container is available. * * @return true if the crawler container is available, false otherwise. */ boolean available(); /** * Cleans up resources and performs any necessary finalization tasks * before the object is destroyed. This method should be called to
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.6K 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) -
src/main/java/org/codelibs/fess/suggest/converter/KatakanaConverter.java
} return kanaBuf.toString(); } /** * Checks if the tokenizer is enabled. * @param factory The tokenizer factory. * @return True if the tokenizer is enabled, false otherwise. */ protected boolean isEnableTokenizer(final TokenizerFactory factory) { // TODO return factory instanceof JapaneseTokenizerFactory; return false; }
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 6.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/publicsuffix/BasePublicSuffixList.kt
initCause(readFailure) } } } abstract val path: Any /** * Reads the public suffix list treating the operation as uninterruptible. We always want to read * the list otherwise we'll be left in a bad state. If the thread was interrupted prior to this * operation, it will be re-interrupted after the list is read. */ private fun readTheListUninterruptibly() { var interrupted = false
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 3.6K bytes - Viewed (0) -
guava/src/com/google/common/base/Function.java
* * <p>This interface is now a legacy type. Use {@code java.util.function.Function} (or the * appropriate primitive specialization such as {@code ToIntFunction}) instead whenever possible. * Otherwise, at least reduce <i>explicit</i> dependencies on this type by using lambda expressions * or method references instead of classes, leaving your code easier to migrate in the future. * * <p>See the Guava User Guide article on <a
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Apr 15 22:14:00 UTC 2025 - 2.6K bytes - Viewed (0) -
src/README.vendor
Make sure that GO111MODULE is not set in the environment, or that it is set to 'on' or 'auto', and if you use a go.work file, set GOWORK=off. Also, ensure that 'go env GOROOT' shows the root of this Go source tree. Otherwise, the results are undefined. It's recommended to build Go from source and use that 'go' binary to update its source tree. Requirements may be added, updated, and removed with 'go get'.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Sep 30 19:15:39 UTC 2024 - 2.4K 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)