- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 40 for getAddress (0.05 sec)
-
src/test/java/jcifs/pac/kerberos/KerberosEncDataTest.java
ASN1EncodableVector addressVector = new ASN1EncodableVector(); addressVector.add(new ASN1Integer(KerberosConstants.AF_INTERNET)); addressVector.add(new DEROctetString(InetAddress.getByName("127.0.0.1").getAddress())); addressesVector.add(new DERSequence(addressVector)); vector.add(new DERTaggedObject(9, new DERSequence(addressesVector))); ASN1EncodableVector authDataVector = new ASN1EncodableVector();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessIntegrationTest.java
void tearDown() { if (mockService != null) { mockService.close(); } } @Test void testMockServiceLifecycle() throws Exception { assertNotNull(mockService.getAddress()); assertTrue(mockService.getPort() > 0); assertEquals(0, mockService.getRegistrationCount()); // Test registration
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
*/ String localHostname = tc.getConfig().getNetbiosHostname(); if (localHostname == null || localHostname.length() == 0) { final byte[] addr = localInetAddress.getAddress(); localHostname = "JCIFS" + (addr[2] & 0xFF) + "_" + (addr[3] & 0xFF) + "_" + Hexdump.toHexString((int) (Math.random() * 0xFF), 2); } /*
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/SmbResourceLocator.java
* Returns the resolved network address of the server hosting this SMB resource. * * @return resolved server address * @throws CIFSException if the address cannot be resolved */ Address getAddress() throws CIFSException; /** * Determines whether this resource represents an IPC (Inter-Process Communication) connection. * * @return whether this is a IPC connection */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
} /** * Returns the raw IP address of this NbtAddress. The result is in network * byte order: the highest order byte of the address is in getAddress()[0]. * * @return a four byte array */ public byte[] getAddress() { final byte[] addr = new byte[4]; addr[0] = (byte) (address >>> 24 & 0xFF); addr[1] = (byte) (address >>> 16 & 0xFF);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
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
return null; } /** * Return the underlying <code>NbtAddress</code> or {@code InetAddress}. * * @return the underlying address object */ public Object getAddress() { return addr; } /** * Return the hostname of this address such as "MYCOMPUTER". * * @return the hostname of this address */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NodeStatusResponseTest.java
mockQueryAddress.hostName = mockName; // Convert IP address to int representation for NbtAddress InetAddress inetAddr = InetAddress.getByName("192.168.1.100"); byte[] addrBytes = inetAddr.getAddress(); mockQueryAddress.address = ((addrBytes[0] & 0xFF) << 24) | ((addrBytes[1] & 0xFF) << 16) | ((addrBytes[2] & 0xFF) << 8) | (addrBytes[3] & 0xFF); // Create NodeStatusResponse instance
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
if (!newAddresses.isEmpty()) { // Attempt to connect to new address InetAddress newAddress = newAddresses.get(0).getAddress(); scheduleAddressChange(newAddress); } } /** * Handle share move events */ private void handleShareMove(WitnessNotification notification) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
} } /** * Sets the address of the OpenSearch instance. * @param address The address. */ public void setAddress(final String address) { this.address = address; } /** * Adds a listener for connection events. * * @param listener The listener to add. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 25.3K bytes - Viewed (0)