- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 1,353 for EMPTY (0.02 sec)
-
src/test/java/jcifs/internal/smb1/com/SmbComRenameTest.java
assertEquals((byte) 0x00, dst[secondBufferFormatIndex + 1]); // Extra null byte for Unicode alignment } /** * Test writeBytesWireFormat with empty file names */ @Test @DisplayName("Test writeBytesWireFormat with empty file names") public void testWriteBytesWireFormatEmptyFileNames() { // Given byte[] dst = new byte[100];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/jcifs/netbios/SessionRequestPacketTest.java
} @Test @DisplayName("Constructor with Configuration only should create empty Name instances") void testConstructorWithConfigOnly() { SessionRequestPacket packet = new SessionRequestPacket(mockConfig); assertNotNull(packet); // The packet should have calledName and callingName initialized but empty byte[] dst = new byte[256]; int written = packet.writeTrailerWireFormat(dst, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/UUIDTest.java
rpcUuid.clock_seq_low = CLOCK_SEQ_LOW; rpcUuid.node = new byte[6]; // Empty node array // Act UUID uuid = new UUID(rpcUuid); // Assert assertNotNull(uuid.node); assertEquals(6, uuid.node.length); assertArrayEquals(new byte[6], uuid.node, "Empty node array should be copied"); } } @Nested
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureCredentialStorageTest.java
byte[] encrypted = storage.encryptCredentials(plaintext); assertNotNull(encrypted, "Encrypted empty data should not be null"); char[] decrypted = storage.decryptCredentials(encrypted); assertNotNull(decrypted, "Decrypted empty data should not be null"); assertEquals(0, decrypted.length, "Decrypted empty array should have zero length"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java
// Execute OptionalThing<TimeZone> result = provider.findBusinessTimeZone(runtimeMeta, requestManager); // Verify that empty optional is returned assertNotNull(result); assertFalse(result.isPresent()); } // Test getRequestedTimeZone() method public void test_getRequestedTimeZone() { // Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java
* * @return the classifier or an empty string if none, never {@code null} * @see ArtifactCoordinates#getClassifier() */ @Nonnull String getClassifier(); /** * Returns the file extension of the artifact. * The dot separator is not included in the returned string. * * @return the file extension or an empty string if none, never {@code null}
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 4.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/ArrayTable.java
checkArgument(rowList.isEmpty() == columnList.isEmpty()); /* * TODO(jlevy): Support only one of rowKey / columnKey being empty? If we * do, when columnKeys is empty but rowKeys isn't, rowKeyList() can contain * elements but rowKeySet() will be empty and containsRow() won't * acknowledge them. */ rowKeyToIndex = Maps.indexMap(rowList); columnKeyToIndex = Maps.indexMap(columnList);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 13 19:39:21 UTC 2025 - 26.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/PropertiesUtil.java
* Property set. Must not be {@literal null}. * @param file * File. Must not be {@literal null}. * @param encoding * Encoding. Must not be {@literal null} or empty. */ public static void load(final Properties props, final File file, final String encoding) { assertArgumentNotNull("props", props); assertArgumentNotNull("file", file);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/NtlmPasswordAuthenticationTest.java
// With default lmCompatibility=3, getUnicodeHash returns empty array for NTLMv2 NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication("DOMAIN", "user", "password"); byte[] challenge = { 1, 2, 3, 4, 5, 6, 7, 8 }; byte[] hash = auth.getUnicodeHash(challenge); assertNotNull(hash); // For lmCompatibility 3,4,5 (NTLMv2), returns empty array assertEquals(0, hash.length); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.7K bytes - Viewed (0) -
cmd/storage-errors.go
var errPathNotFound = StorageErr("path not found") // errVolumeNotFound - cannot find the volume. var errVolumeNotFound = StorageErr("volume not found") // errVolumeNotEmpty - volume not empty. var errVolumeNotEmpty = StorageErr("volume is not empty") // errVolumeAccessDenied - cannot access volume, insufficient permissions. var errVolumeAccessDenied = StorageErr("volume access denied")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Apr 04 12:04:40 UTC 2024 - 6.4K bytes - Viewed (0)