- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 54 for Lmhosts (0.04 sec)
-
src/test/java/jcifs/netbios/LmhostsTest.java
import jcifs.Configuration; import jcifs.smb.SmbFileInputStream; /** * Test class for Lmhosts */ class LmhostsTest { private Lmhosts lmhosts; private CIFSContext mockContext; private Configuration mockConfig; @TempDir Path tempDir; @BeforeEach void setUp() { lmhosts = new Lmhosts(); mockContext = mock(CIFSContext.class); mockConfig = mock(Configuration.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
in = new DatagramPacket(rcv_buf, RCV_BUF_SIZE); if (RO == null || RO.length() == 0) { /* No resolveOrder has been specified, use the * default which is LMHOSTS,DNS,WINS,BCAST * LMHOSTS,BCAST,DNS if jcifs.smb1.netbios.wins has not * been specified. */ if (NbtAddress.getWINSAddress() == null) { resolveOrder = new int[2];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
} catch (final UnknownHostException uhe) {} if (ro == null || ro.length() == 0) { /* No resolveOrder has been specified, use the * default which is LMHOSTS,WINS,BCAST,DNS or just * LMHOSTS,BCAST,DNS if jcifs.smb1.netbios.wins has not * been specified. */ if (nbns == null) { resolveOrder = new int[3];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
return this.localhostAddress.hostName; } return null; } /** * Gets the lmhosts resolver instance used by this client. * * @return lmhosts file used */ public Lmhosts getLmhosts() { return this.lmhosts; } /** * {@inheritDoc} * * @see jcifs.NameServiceClient#getUnknownName() */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
* @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 * default which is LMHOSTS,DNS,WINS,BCAST or just * LMHOSTS,DNS,BCAST if jcifs.netbios.wins has not
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* @since 2.2 */ int getLeaseBreakTimeout(); /** * * * Property {@code jcifs.netbios.lmhosts} (string) * * @return lmhosts file to use */ String getLmHostsFileName(); /** * * Property {@code jcifs.netbios.scope} (string) *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
void testInitResolverOrderWithCustomOrder() throws UnknownHostException { config.winsServer = new InetAddress[] { InetAddress.getByName("192.168.1.1") }; config.initResolverOrder("DNS,WINS,LMHOSTS,BCAST"); List<ResolverType> order = config.getResolveOrder(); assertEquals(4, order.size()); assertEquals(ResolverType.RESOLVER_DNS, order.get(0));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
docs/bucket/replication/setup_3site_replication.sh
./mc cp --enc-s3 "sitea/" --quiet /etc/hosts sitea/bucket sleep 1 echo "Copying data to source sitea/olockbucket" ./mc cp --quiet /etc/hosts sitea/olockbucket sleep 1 echo "Verifying the metadata difference between source and target" if diff -pruN <(./mc stat --no-list --json sitea/bucket/hosts | jq .) <(./mc stat --no-list --json siteb/bucket/hosts | jq .) | grep -q 'COMPLETED\|REPLICA'; then
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
* service is a dynamic distributed service that allows hosts to resolve * names by broadcasting a query, directing queries to a server such as * Samba or WINS. NetBIOS is currently the primary networking layer for * providing name service, datagram service, and session service to the * Microsoft Windows platform. A NetBIOS name can be 15 characters long * and hosts usually registers several names on the network. From a
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
docs/logging/README.md
"bucket": "testbucket", "object": "hosts", "status": "OK", "statusCode": 200, "rx": 401, "tx": 0, "timeToResponse": "13309747ns", "timeToResponseInNS": "13309747" }, "remotehost": "127.0.0.1", "requestID": "17CDC1F4D7E69123", "userAgent": "MinIO (linux; amd64) minio-go/v7.0.70 mc/RELEASE.2024-04-30T17-44-48Z", "requestPath": "/testbucket/hosts", "requestHost": "localhost:9000",
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 10.5K bytes - Viewed (0)