- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for initResolverOrder (0.43 sec)
-
src/test/java/jcifs/config/BaseConfigurationTest.java
assertTrue(config.isAllowCompound("Command3")); } @Test @DisplayName("Test initResolverOrder with null/empty input") void testInitResolverOrderWithNullInput() { config.winsServer = new InetAddress[0]; config.initResolverOrder(null); List<ResolverType> order = config.getResolveOrder(); assertEquals(3, order.size());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/jcifs/config/PropertyConfiguration.java
// Invalid address ignored } } value = props.getProperty("jcifs.resolveOrder"); if (value != null) { initResolverOrder(value); } value = props.getProperty("jcifs.native.os"); if (value != null) { this.nativeOs = value; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13.3K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
} /** * Initializes the resolver order for name resolution. * * @param ro comma-separated list of resolver types (LMHOSTS, WINS, BCAST, DNS) */ protected void initResolverOrder(final String ro) { this.resolverOrder = new ArrayList<>(); if (ro == null || ro.length() == 0) { /* * No resolveOrder has been specified, use the
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0)