- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 1,061 for EMPTY (0.05 sec)
-
src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.java
* Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty. * @param hostname The parameter value of hostname. (NotNull) */ public void setHostname(String hostname) { registerVariable("hostname", hostname); } /** * Set the value of clustername, used in parameter comment. <br>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportInternalTest.java
assertArrayEquals(key, transport.getServerEncryptionKey()); verify(transport).getServerEncryptionKey(); // Empty array byte[] empty = new byte[0]; when(transport.getServerEncryptionKey()).thenReturn(empty); assertArrayEquals(empty, transport.getServerEncryptionKey()); // Null when(transport.getServerEncryptionKey()).thenReturn(null);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.1K bytes - Viewed (0) -
mockwebserver/src/test/java/mockwebserver3/RecordedRequestTest.kt
private val headers: Headers = Headers.EMPTY @Test fun testIPv4() { val socket = MockWebServerSocket( FakeSocket( localAddress = InetAddress.getByAddress("127.0.0.1", byteArrayOf(127, 0, 0, 1)), localPort = 80, ), ) val request = RecordedRequest(DEFAULT_REQUEST_LINE_HTTP_1, headers, emptyList(), 0, ByteString.EMPTY, 0, 0, socket)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 02 20:36:00 UTC 2025 - 5.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Sets.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 81.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/BeanDesc.java
* The property name. Must not be {@literal null} or empty string * @return Whether the {@link PropertyDesc} exists */ boolean hasPropertyDesc(String propertyName); /** * Returns the {@link PropertyDesc}. * * @param propertyName * The property name. Must not be {@literal null} or empty string * @return {@link PropertyDesc} */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/jcifs/util/StringsTest.java
if (input == null || input.isEmpty()) { assertEquals(0, result.length, "Null or empty input should produce empty array"); } else { assertTrue(result.length > 0, "Non-empty input should produce non-empty array"); } } } @Nested @DisplayName("Unicode and ASCII Encoding") class UnicodeAndASCIITests {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/FileTypeHelperTest.java
fileTypeHelper.add("", "empty"); assertEquals("empty", fileTypeHelper.get("")); } public void test_add_withNullFiletype() { fileTypeHelper.add("test/null", null); assertEquals("others", fileTypeHelper.get("test/null")); } public void test_add_withEmptyFiletype() { fileTypeHelper.add("test/empty", "");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 5.3K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/ImmutableLongArray.java
* @since 22.0 */ @GwtCompatible @Immutable public final class ImmutableLongArray implements Serializable { private static final ImmutableLongArray EMPTY = new ImmutableLongArray(new long[0]); /** Returns the empty array. */ public static ImmutableLongArray of() { return EMPTY; } /** Returns an immutable array containing a single value. */ public static ImmutableLongArray of(long e0) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 22K bytes - Viewed (0) -
guava/src/com/google/common/primitives/ImmutableIntArray.java
* @since 22.0 */ @GwtCompatible @Immutable public final class ImmutableIntArray implements Serializable { private static final ImmutableIntArray EMPTY = new ImmutableIntArray(new int[0]); /** Returns the empty array. */ public static ImmutableIntArray of() { return EMPTY; } /** Returns an immutable array containing a single value. */ public static ImmutableIntArray of(int e0) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 21.4K bytes - Viewed (0) -
guava/module.json
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Mar 19 16:59:18 UTC 2025 - 7.5K bytes - Viewed (0)