- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for lookupMessage (0.05 sec)
-
src/test/java/jcifs/smb/WinErrorTest.java
import org.mockito.junit.jupiter.MockitoExtension; @ExtendWith(MockitoExtension.class) class WinErrorTest { // Helper to lookup a message by code using the production arrays private static Optional<String> lookupMessage(int code) { int[] codes = WinError.WINERR_CODES; String[] msgs = WinError.WINERR_MESSAGES; for (int i = 0; i < codes.length; i++) { if (codes[i] == code) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.4K bytes - Viewed (0)