- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for setInterfaces (1.44 sec)
-
src/main/java/jcifs/internal/smb2/ioctl/QueryNetworkInterfaceInfoResponse.java
* * @return list of network interface information */ public List<NetworkInterfaceInfo> getInterfaces() { return interfaces; } /** * Set the list of network interfaces * * @param interfaces list of network interface information */ public void setInterfaces(List<NetworkInterfaceInfo> interfaces) { this.interfaces = interfaces; } /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/SecurityInfoTest.java
} @Test @DisplayName("Test interface extends Decodable") void testExtendsDecodable() { Class<?>[] interfaces = SecurityInfo.class.getInterfaces(); assertTrue(Arrays.asList(interfaces).contains(jcifs.Decodable.class), "SecurityInfo should extend Decodable interface"); } @Test @DisplayName("Test all constant fields count")Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbResourceLocatorInternalTest.java
// Assert it's an interface and extends the right superinterface assertTrue(clazz.isInterface(), "Should be an interface"); assertTrue(Arrays.asList(clazz.getInterfaces()).contains(SmbResourceLocator.class), "Should extend SmbResourceLocator"); // shouldForceSigning(): boolean, no params, no checked exceptions Method m1 = clazz.getMethod("shouldForceSigning");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/GenericsUtil.java
if (superClass != null) { gatherTypeVariables(superClass, superClassType, map); } final Class<?>[] interfaces = clazz.getInterfaces(); final Type[] interfaceTypes = clazz.getGenericInterfaces(); for (int i = 0; i < interfaces.length; ++i) { gatherTypeVariables(interfaces[i], interfaceTypes[i], map); }
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java
} QueryNetworkInterfaceInfoResponse response = new QueryNetworkInterfaceInfoResponse(); response.decode(data, 0, data.length); for (NetworkInterfaceInfo info : response.getInterfaces()) { if (info.isUsableForChannel()) { remoteInterfaces.add(info); } } // Sort by score (best interfaces first)Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 20K bytes - Viewed (0)