- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 3,106 for NULL (0.03 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsScheduledJobCB.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsWebAuthenticationCB.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java
/** * Get existing handle data for reconnection * @param path the file path * @return the file ID if available, null otherwise */ public byte[] getExistingHandle(String path) { HandleInfo info = getHandleForReconnect(path); return info != null ? info.getFileId() : null; } /** * Store handle information after successful create * @param path the file path
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceTest.java
@DisplayName("renameTo should throw NullPointerException for null destination") void testRenameTo_NullDestination() throws CIFSException { // Given doThrow(new NullPointerException("dest argument is null")).when(mockResource).renameTo(null); // When/Then assertThrows(NullPointerException.class, () -> mockResource.renameTo(null),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 35K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
if (cresp != null && cresp.isReceived()) { return (T) cresp; } if (chain != null) { return this.transport.send(chain, null, params); } return null; } } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
* StringUtil.defaultString("aaa", "NULL") = "aaa" * StringUtil.defaultString("aaa", null) = "aaa" * StringUtil.defaultString(null, null) = null * </pre> * * @param str * the string (can be <code>null</code>) * @param defaultStr * the string to return if the argument is <code>null</code> (can be <code>null</code>)
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 21.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponseTest.java
@DisplayName("Should handle null buffer in read operations") void testReadOperationsWithNullBuffer() { // Read operations return 0 when given null buffer - no exceptions thrown assertEquals(0, response.readSetupWireFormat(null, 0, 0)); assertEquals(0, response.readParametersWireFormat(null, 0, 0)); // readDataWireFormat will throw when accessing null buffer
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type1Message.java
final String suppliedWorkstation = getSuppliedWorkstation(); return "Type1Message[suppliedDomain=" + (suppliedDomain == null ? "null" : suppliedDomain) + ",suppliedWorkstation=" + (suppliedWorkstation == null ? "null" : suppliedWorkstation) + ",flags=0x" + jcifs.smb1.util.Hexdump.toHexString(getFlags(), 8) + "]"; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/LongConversionUtil.java
*/ public static Long toLong(final Object o, final String pattern) { return switch (o) { case null -> null; case Long l -> l; case Number n -> n.longValue(); case String s -> toLong(s); case java.util.Date d -> pattern != null ? Long.valueOf(new SimpleDateFormat(pattern).format(d)) : d.getTime(); case Boolean b -> b ? 1L : 0L; default -> toLong(o.toString());
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComSetInformationResponseTest.java
} @Nested @DisplayName("writeParameterWordsWireFormat tests") class WriteParameterWords { @Test @DisplayName("Returns 0 with null array") void nullArray() { assertEquals(0, response.writeParameterWordsWireFormat(null, 0)); } @ParameterizedTest @ValueSource(ints = { 0, 5, 9 }) @DisplayName("Returns 0 with valid array and various indices")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.1K bytes - Viewed (0)