- Sort Score
- Num 10 results
- Language All
Results 671 - 680 of 1,161 for IsEmpty (0.13 seconds)
-
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
runtime.registerData("labelTypeItems", labelTypeItems); runtime.registerData("displayLabelTypeItems", labelTypeItems != null && !labelTypeItems.isEmpty()); Locale locale = ComponentUtil.getRequestManager().getUserLocale(); if (locale == null) { locale = Locale.ENGLISH; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 18 04:42:56 GMT 2026 - 14K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ReactorManager.java
if (!blackList.contains(id)) { blackList.add(id); List<String> dependents = sorter.getDependents(id); if (dependents != null && !dependents.isEmpty()) { for (String dependentId : dependents) { if (!buildSuccessesByProject.containsKey(dependentId) && !buildFailuresByProject.containsKey(dependentId)) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 6K bytes - Click Count (0) -
src/main/java/org/codelibs/core/lang/ClassUtil.java
*/ public static String concatName(final String s1, final String s2) { if (StringUtil.isEmpty(s1) && StringUtil.isEmpty(s2)) { return null; } if (!StringUtil.isEmpty(s1) && StringUtil.isEmpty(s2)) { return s1; } if (StringUtil.isEmpty(s1) && !StringUtil.isEmpty(s2)) { return s2; } return s1 + '.' + s2; }Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 25.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 14 02:35:38 GMT 2026 - 13.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/search/SearchAction.java
if (resultsPerPage instanceof Integer) { form.num = (Integer) resultsPerPage; } } } if (StringUtil.isBlank(form.q) && form.fields.isEmpty() && !form.hasConditionQuery()) { // redirect to index page form.q = null; return redirectToRoot(); } try { buildFormParams(form);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 14K bytes - Click Count (0) -
cmd/net.go
} nonInterIPV6s := mustGetLocalIP6().Intersection(hostIPs) // If intersection of two IP sets is not empty, then the host is localhost. isLocalv4 := !nonInterIPV4s.IsEmpty() isLocalv6 := !nonInterIPV6s.IsEmpty() if port != "" { return (isLocalv4 || isLocalv6) && (port == localPort), nil } return isLocalv4 || isLocalv6, nil }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 9.6K bytes - Click Count (1) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 26.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/NotifyResponseTest.java
List<FileNotifyInformation> notifications = response.getNotifyInformation(); assertNotNull(notifications); assertTrue(notifications.isEmpty()); assertEquals(0, notifications.size()); } @Test @DisplayName("Test NotifyResponse interface with single notification") void testNotifyResponseWithSingleNotification() {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 21.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedConfigurationConverter.java
throws ComponentConfigurationException { String value = configuration.getValue(); try { Object result = null; if (null != value && !value.isEmpty()) { if (evaluator instanceof TypeAwareExpressionEvaluator typeAwareExpressionEvaluator) { result = typeAwareExpressionEvaluator.evaluate(value, type); } else {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Jul 17 07:40:49 GMT 2025 - 6.2K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/CharSequenceReaderTest.java
} assertFullyRead(reader); // read all to one array reader = new CharSequenceReader(charSequence); char[] buf = new char[expected.length()]; assertEquals(expected.isEmpty() ? -1 : expected.length(), reader.read(buf)); assertThat(new String(buf)).isEqualTo(expected); assertFullyRead(reader); // read in chunks to fixed array reader = new CharSequenceReader(charSequence);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 19:26:39 GMT 2026 - 6.7K bytes - Click Count (0)