- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 2,150 for BOOLEAN (0.03 sec)
-
src/main/java/org/codelibs/core/log/LoggerAdapter.java
* * @author koichik */ interface LoggerAdapter { boolean isFatalEnabled(); void fatal(String message); void fatal(String message, Throwable t); boolean isErrorEnabled(); void error(String message); void error(String message, Throwable t); boolean isWarnEnabled(); void warn(String message); void warn(String message, Throwable t);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
} } protected static class MonitorThread extends Thread { private final Process process; private final long timeout; private boolean finished = false; private boolean teminated = false; public MonitorThread(final Process process, final long timeout) { this.process = process; this.timeout = timeout; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.3K bytes - Viewed (0) -
guava/src/com/google/common/cache/RemovalCause.java
*/ REPLACED { @Override boolean wasEvicted() { return false; } }, /** * The entry was removed automatically because its key or value was garbage-collected. This can * occur when using {@link CacheBuilder#weakKeys}, {@link CacheBuilder#weakValues}, or {@link * CacheBuilder#softValues}. */ COLLECTED { @Override boolean wasEvicted() { return true; } },
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 18:00:07 UTC 2021 - 2.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/DefaultRepositoryRequest.java
return request; } public boolean isOffline() { return offline; } public DefaultRepositoryRequest setOffline(boolean offline) { this.offline = offline; return this; } public boolean isForceUpdate() { return forceUpdate; } public DefaultRepositoryRequest setForceUpdate(boolean forceUpdate) { this.forceUpdate = forceUpdate;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/BadWordPager.java
this.allPageCount = allPageCount; } public boolean isExistPrePage() { return existPrePage; } public void setExistPrePage(final boolean existPrePage) { this.existPrePage = existPrePage; } public boolean isExistNextPage() { return existNextPage; } public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java
this.allPageCount = allPageCount; } public boolean isExistPrePage() { return existPrePage; } public void setExistPrePage(final boolean existPrePage) { this.existPrePage = existPrePage; } public boolean isExistNextPage() { return existNextPage; } public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/LabelTypePager.java
this.allPageCount = allPageCount; } public boolean isExistPrePage() { return existPrePage; } public void setExistPrePage(final boolean existPrePage) { this.existPrePage = existPrePage; } public boolean isExistNextPage() { return existNextPage; } public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/UserPager.java
this.allPageCount = allPageCount; } public boolean isExistPrePage() { return existPrePage; } public void setExistPrePage(final boolean existPrePage) { this.existPrePage = existPrePage; } public boolean isExistNextPage() { return existNextPage; } public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/UpgradeUtil.java
logger.warn("Failed to add {} to {}", id, index, e); } return false; } public static boolean existsIndex(final IndicesAdminClient indicesClient, final String index, final boolean expandWildcardsOpen, final boolean expandWildcardsClosed) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java
REQUEST_DOMINANT, } @Nonnull Session getSession(); @Nonnull ModelSource getSource(); @Nonnull RequestType getRequestType(); boolean isLocationTracking(); boolean isRecursive(); /** * Defines external profiles that may be activated for the given model.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 09 11:07:31 UTC 2024 - 13.3K bytes - Viewed (0)