- Sort Score
- Num 10 results
- Language All
Results 401 - 410 of 1,620 for emptify (0.05 seconds)
-
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());Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 10.6K bytes - Click Count (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");Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/DomUtilsTest.java
// Verify elements are empty assertTrue( xmlOutput.contains("<properties></properties>") || xmlOutput.contains("<properties/>"), "properties should be empty"); assertTrue( xmlOutput.contains("<dependencies></dependencies>") || xmlOutput.contains("<dependencies/>"), "dependencies should be empty"); } @TestCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 31.3K bytes - Click Count (0) -
mockwebserver-deprecated/build.gradle.kts
testImplementation(projects.okhttpTls) testImplementation(libs.kotlin.test.common) testImplementation(libs.kotlin.test.junit) } mavenPublishing { configure(KotlinJvm(javadocJar = JavadocJar.Empty()))
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun Sep 21 06:22:22 GMT 2025 - 643 bytes - Click Count (0) -
src/test/java/org/codelibs/curl/CurlRequestTest.java
// Empty string param should be added request.param("empty", ""); assertNotNull(request); } @Test public void testEmptyStringHeader() { CurlRequest request = new CurlRequest(Method.GET, "https://example.com"); // Empty string header value should be added request.header("X-Empty", ""); assertNotNull(request);Created: Sat Dec 20 09:13:53 GMT 2025 - Last Modified: Mon Nov 24 03:10:07 GMT 2025 - 20.5K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbFileFilterTest.java
@MethodSource("nameCases") @DisplayName("accept: name-based filter handles normal, empty, and null names") void accept_nameBasedFilter_handlesEdgeNames(String name, boolean expected) throws Exception { // Arrange: filter that accepts non-empty names ending with .txt SmbFileFilter filter = f -> { String n = f.getName();Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.4K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/HashBasedTable.java
@GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } /** Creates an empty {@code HashBasedTable}. */ public static <R, C, V> HashBasedTable<R, C, V> create() { return new HashBasedTable<>(new LinkedHashMap<R, Map<C, V>>(), new Factory<C, V>(0)); } /** * Creates an empty {@code HashBasedTable} with the specified map sizes. *Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Jul 17 15:26:41 GMT 2025 - 4.1K bytes - Click Count (0) -
guava/src/com/google/common/collect/HashBasedTable.java
@GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } /** Creates an empty {@code HashBasedTable}. */ public static <R, C, V> HashBasedTable<R, C, V> create() { return new HashBasedTable<>(new LinkedHashMap<R, Map<C, V>>(), new Factory<C, V>(0)); } /** * Creates an empty {@code HashBasedTable} with the specified map sizes. *Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Jul 17 15:26:41 GMT 2025 - 4.1K bytes - Click Count (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;Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 24.9K bytes - Click Count (0) -
internal/ringbuffer/ring_buffer.go
ErrIsFull = errors.New("ringbuffer is full") // ErrIsEmpty is returned when the buffer is empty and not blocking. ErrIsEmpty = errors.New("ringbuffer is empty") // ErrIsNotEmpty is returned when the buffer is not empty and not blocking. ErrIsNotEmpty = errors.New("ringbuffer is not empty") // ErrAcquireLock is returned when the lock is not acquired on Try operations.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 13.3K bytes - Click Count (0)