- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 2,158 for Boolean (0.06 sec)
-
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) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/ModelInterpolator.java
*/ @Deprecated Model interpolate(Model project, Map<String, ?> context) throws ModelInterpolationException; /** * @deprecated Use {@link ModelInterpolator#interpolate(Model, File, ProjectBuilderConfiguration, boolean)} instead. */ @Deprecated Model interpolate(Model model, Map<String, ?> context, boolean strict) throws ModelInterpolationException;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SchedulerPager.java
} 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.8K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/util/concurrent/testing/TestingExecutorsTest.java
taskDone = false; Callable<Boolean> task = new Callable<Boolean>() { @Override public Boolean call() { taskDone = true; return taskDone; } }; List<Future<Boolean>> futureList = executor.invokeAll(ImmutableList.of(task), 10, MILLISECONDS); Future<Boolean> future = futureList.get(0); assertFalse(taskDone);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 3.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/SynchronizedMapTest.java
} public void testIsEmpty() { boolean unused = create().isEmpty(); } public void testRemove() { create().remove(null); } public void testClear() { create().clear(); } public void testContainsKey() { boolean unused = create().containsKey(null); } public void testContainsValue() { boolean unused = create().containsValue(null); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 06 17:23:04 UTC 2024 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/validation/UriTypeValidator.java
}; } @Override public boolean isValid(final String value, final ConstraintValidatorContext context) { if (StringUtil.isNotBlank(value)) { return check(protocols, value); } return true; } protected static boolean check(final String[] protocols, final String value) { final String[] paths = value.split("[\r\n]");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 17 13:37:12 UTC 2024 - 2.3K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/SimplexTransferListener.java
} catch (TransferCancelledException e) { ongoing.put(new TransferResourceIdentifier(transferEvent.getResource()), Boolean.FALSE); } }); } } private void put(TransferEvent event, boolean last) { try { Exchange exchange; if (blockOnLastEvent && last) { exchange = new BlockingExchange(event);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.4K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy
} private static boolean isAnnotatedWithDeprecated(JApiHasAnnotations member) { member.annotations*.fullyQualifiedName.any { it == Deprecated.name || it == kotlin.Deprecated.name } } private static boolean isAnnotatedWithInject(JApiHasAnnotations member) { member.annotations*.fullyQualifiedName.any { it == Inject.name } } protected static boolean isInject(JApiHasAnnotations member) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:30:48 UTC 2024 - 10.4K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/platform/ConscryptPlatform.kt
fun verify( hostname: String?, session: SSLSession?, ): Boolean { return true } override fun verify( certs: Array<out X509Certificate>?, hostname: String?, session: SSLSession?, ): Boolean { return true } } override fun trustManager(sslSocketFactory: SSLSocketFactory): X509TrustManager? = null
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.6K bytes - Viewed (0)