- Sort Score
- Result 10 results
- Languages All
Results 1101 - 1110 of 1,413 for Empty (0.02 sec)
-
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionResponseTest.java
@DisplayName("Test entry management") void testEntryManagement() { // Test with null entries response.setResults(null); assertNull(response.getResults()); // Test with empty entries FileEntry[] emptyEntries = new FileEntry[0]; response.setResults(emptyEntries); assertSame(emptyEntries, response.getResults()); assertEquals(0, response.getResults().length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.4K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type1MessageTest.java
// Then assertTrue((type1.getFlags() & NtlmFlags.NTLMSSP_NEGOTIATE_NTLM) != 0); } @Test @DisplayName("Should handle empty domain and workstation") void testEmptyDomainAndWorkstation() { // Given String emptyDomain = ""; String emptyWorkstation = ""; // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.1K bytes - Viewed (0) -
src/archive/zip/reader_test.go
Mode: 0666, }, { Name: "dir/bar", Content: []byte("foo \r\n"), Modified: time.Date(2011, 12, 8, 10, 4, 50, 0, time.UTC), Mode: 0666, }, { Name: "dir/empty/", Content: []byte{}, Modified: time.Date(2011, 12, 8, 10, 8, 6, 0, time.UTC), Mode: fs.ModeDir | 0777, }, { Name: "readonly", Content: []byte("important \r\n"),
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Mar 11 22:19:38 UTC 2025 - 56.6K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt
* [chromium_extension]: https://code.google.com/p/chromium/issues/detail?id=232693 */ @Suppress("NAME_SHADOWING") class Cookie private constructor( /** Returns a non-empty string with this cookie's name. */ @get:JvmName("name") val name: String, /** Returns a possibly-empty string with this cookie's value. */ @get:JvmName("value") val value: String, /**
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 23.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSetMultimapTest.java
Equivalence.equals() .onResultOf((Multimap<?, ?> mm) -> ImmutableList.copyOf(mm.asMap().entrySet())) .and(Equivalence.equals()); ImmutableSetMultimap<Character, Character> empty = ImmutableSetMultimap.of(); ImmutableSetMultimap<Character, Character> filled = ImmutableSetMultimap.<Character, Character>builder() .putAll('b', Arrays.asList('a', 'n', 'a', 'n', 'a'))
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 28.7K bytes - Viewed (0) -
okhttp/api/jvm/okhttp.api
} public final class okhttp3/Headers : java/lang/Iterable, kotlin/jvm/internal/markers/KMappedMarker { public static final field Companion Lokhttp3/Headers$Companion; public static final field EMPTY Lokhttp3/Headers; public final fun -deprecated_size ()I public final fun byteCount ()J public fun equals (Ljava/lang/Object;)Z public final fun get (Ljava/lang/String;)Ljava/lang/String;
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 69.4K bytes - Viewed (0) -
tests/query_test.go
var result User if DB.Where("").Where("").First(&result).Error != nil { t.Errorf("Should not raise any error if searching with empty strings") } result = User{} if DB.Where(&User{}).Where("name = ?", user.Name).First(&result).Error != nil { t.Errorf("Should not raise any error if searching with empty struct") } result = User{}
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Jul 22 06:21:04 UTC 2025 - 51K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java
} break; default: break; } return OptionalEntity.empty(); } /** * Get a data config from a form. * @param form The create form. * @return An optional entity of a data config. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
protected String logFilePath; /** Log level for this job execution */ protected String logLevel; /** Suffix to append to log file names */ protected String logSuffix = StringUtil.EMPTY; /** List of JVM options to apply when executing the job */ protected List<String> jvmOptions = new ArrayList<>(); /** Lasta environment configuration */ protected String lastaEnv;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java
@Override public int hashCode() { return getClass().hashCode(); } @Override public void visit(org.apache.lucene.search.QueryVisitor visitor) { // Empty implementation for test } } public void test_execute_withUnknownQueryType() { // Test executing BoostQuery with an unknown query type inside
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17K bytes - Viewed (0)