- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 1,360 for EMPTY (0.02 sec)
-
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java
return input; } /** * Gets the value of the stopword. * * @return The stopword value, or an empty string if null. */ public String getInputValue() { if (input == null) { return StringUtil.EMPTY; } return input; } /** * Checks if the item has been updated. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.6K bytes - Viewed (0) -
cmd/xl-storage-format-v2.go
updateVersion := false if fi.VersionPurgeStatus().Empty() && (fi.DeleteMarkerReplicationStatus() == "REPLICA" || fi.DeleteMarkerReplicationStatus().Empty()) { updateVersion = fi.MarkDeleted } else { // for replication scenario if fi.Deleted && fi.VersionPurgeStatus() != replication.VersionPurgeComplete { if !fi.VersionPurgeStatus().Empty() || fi.DeleteMarkerReplicationStatus().Empty() { updateVersion = true } }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 65.6K bytes - Viewed (1) -
src/test/java/jcifs/smb/FileEntryAdapterIteratorTest.java
assertFalse(iterator.hasNext()); assertNull(iterator.next()); verify(resource, never()).close(); } @Test @DisplayName("Empty iterator") void emptyIterator() { when(delegate.hasNext()).thenReturn(false); TestIterator iterator = new TestIterator(null); assertFalse(iterator.hasNext());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/FileEntryTest.java
@Test @DisplayName("getName can return null and empty strings via mock") void mock_nameEdgeValues() { // Arrange when(mockEntry.getName()).thenReturn(null, "", " "); // Act & Assert assertNull(mockEntry.getName(), "first call returns null"); assertEquals("", mockEntry.getName(), "second call returns empty");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10K bytes - Viewed (0) -
src/test/java/jcifs/internal/RequestWithPathTest.java
assertNull(testImplementation.getFullUNCPath()); } @Test @DisplayName("Test with empty strings") void testWithEmptyStrings() { // Test empty path testImplementation.setPath(""); assertEquals("", testImplementation.getPath()); // Test empty UNC path components testImplementation.setFullUNCPath("", "", "");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
} } /** * Represents an API response for a delete operation. */ public static class ApiDeleteResponse extends ApiResponse { /** * Constructs an empty ApiDeleteResponse. */ public ApiDeleteResponse() { // NOP } /** * The number of deleted items. */ protected long count = 1;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp
<la:link href="/admin/" styleClass="brand-link text-center"> <span class="brand-text"> <c:if test="${empty param.brandName or empty param.logoPath}"><img src="${fe:url('/images/logo-head.png')}" alt="<la:message key="labels.header_brand_name" />" /></c:if ><c:if test="${not empty param.brandName and not empty param.logoPath}"><img src="${fe:url(param.logoPath)}" alt="${f:h(param.brandName)}" /></c:if> </span> </la:link>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Apr 15 20:55:28 UTC 2021 - 17.8K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/UnsignedLongs.java
* @return the value present in {@code array} that is less than or equal to every other value in * the array according to {@link #compare} * @throws IllegalArgumentException if {@code array} is empty */ public static long min(long... array) { checkArgument(array.length > 0); long min = flip(array[0]); for (int i = 1; i < array.length; i++) { long next = flip(array[i]); if (next < min) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
} } } hash = buf.toString(); } else { hash = StringUtil.EMPTY; } } else { hash = StringUtil.EMPTY; } if (!isFileSystemPath(targetUrl)) { return HtmlResponse.fromRedirectPathAsIs(DocumentUtil.encodeUrl(targetUrl + hash)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java
assertNull(exception.getMessage()); assertNull(exception.getCause()); } public void test_constructorWithScheduledJob_emptyToString() { // Test with scheduled job that returns empty string from toString ScheduledJob scheduledJob = new ScheduledJob() { @Override public String toString() { return ""; } };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9K bytes - Viewed (0)