- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 784 for useEmpty (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategy.java
} // Apply default behavior: if no specific options are provided, enable --infer if (options.infer().isEmpty() && options.model().isEmpty() && options.plugins().isEmpty() && options.modelVersion().isEmpty()) { return true; } return false; } @Override public String getDescription() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 27.6K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImpl.java
* @see org.codelibs.fess.crawler.filter.UrlFilter#init(java.lang.String) */ @Override public void init(final String sessionId) { this.sessionId = sessionId; if (!cachedIncludeSet.isEmpty()) { try { getUrlFilterService().addIncludeUrlFilter(sessionId, cachedIncludeSet.stream().collect(Collectors.toList())); } catch (final Exception e) {Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 9.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
}); if (logger.isDebugEnabled()) { logger.debug("Roles: {}", roleSet); } final String[] roles = roleSet.toArray(new String[roleSet.size()]); if (!subRoleSet.isEmpty()) { TimeoutManager.getInstance().addTimeoutTarget(() -> { sAMAccountGroupNameSet.stream().forEach(groupName -> {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 86.3K bytes - Click Count (0) -
guava-tests/test/com/google/common/cache/LocalCacheTest.java
map.put(keyOne, valueOne); assertThat(segment.recencyQueue.isEmpty()).isTrue(); for (int i = 0; i < DRAIN_THRESHOLD / 2; i++) { map.get(keyOne); } assertThat(segment.recencyQueue.isEmpty()).isFalse(); map.put(keyTwo, valueTwo); assertThat(segment.recencyQueue.isEmpty()).isTrue(); } } }Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Dec 12 00:25:21 GMT 2025 - 117.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
map.put(keyOne, valueOne); assertThat(segment.recencyQueue.isEmpty()).isTrue(); for (int i = 0; i < DRAIN_THRESHOLD / 2; i++) { map.get(keyOne); } assertThat(segment.recencyQueue.isEmpty()).isFalse(); map.put(keyTwo, valueTwo); assertThat(segment.recencyQueue.isEmpty()).isTrue(); } } }Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Dec 12 00:25:21 GMT 2025 - 115.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java
List<Artifact> artifacts) { List<ClassRealmConstituent> constituents = new ArrayList<>(artifacts == null ? 0 : artifacts.size()); if (artifacts != null && !artifacts.isEmpty()) { boolean v4api = foreignImports != null && foreignImports.containsValue(maven4ApiRealm); for (Artifact artifact : artifacts) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 13.5K bytes - Click Count (0) -
mockwebserver/src/test/java/mockwebserver3/MockResponseSniTest.kt
assertThat(recordedRequest.handshakeServerNames).isEmpty() } /** No SNI for literal IPv4 addresses. */ @Test fun ipv4() { val recordedRequest = requestToHostnameViaProxy("76.223.91.57") assertThat(recordedRequest.url.host).isEqualTo("76.223.91.57") assertThat(recordedRequest.handshakeServerNames).isEmpty() } @Test fun regularHostname() {
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Jun 18 12:28:21 GMT 2025 - 6.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/model/plugin/DefaultLifecycleBindingsInjector.java
.setMessage("Unknown packaging: " + packaging) .setLocation(model.getLocation("packaging"))); } else if (!defaultPlugins.isEmpty()) { Model lifecycleModel = new Model(); lifecycleModel.setBuild(new Build()); lifecycleModel.getBuild().getPlugins().addAll(defaultPlugins);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 6.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/DefaultBeanConfigurationRequest.java
if (Objects.requireNonNull(groupId, "groupId cannot be null").isEmpty()) { throw new IllegalArgumentException("groupId cannot be empty"); } if (Objects.requireNonNull(artifactId, "artifactId cannot be null").isEmpty()) { throw new IllegalArgumentException("artifactId cannot be empty"); } if (model != null) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5.9K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/TreeRangeMap.java
return Iterators.size(iterator()); } @Override public boolean isEmpty() { return !iterator().hasNext(); } }; } Iterator<Entry<Range<K>, V>> entryIterator() { if (subRange.isEmpty()) { return emptyIterator(); } Cut<K> cutToStart = MoreObjects.firstNonNull(
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Sep 23 17:50:58 GMT 2025 - 22.7K bytes - Click Count (0)