- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 58 for getByName (0.08 sec)
-
src/main/java/jcifs/http/NtlmServlet.java
dc = new UniAddress(getTransportContext().getNameServiceClient().getNbtByName(this.domainController, 0x1C, null)); } else { dc = getTransportContext().getNameServiceClient().getByName(this.domainController, true); } NtlmPasswordAuthentication ntlm; if ( msg.startsWith("NTLM ") ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.6K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/connection/RouteSelector.kt
mutableInetSocketAddresses += InetSocketAddress.createUnresolved(socketHost, socketPort) } else { val addresses = if (socketHost.canParseAsIpAddress()) { listOf(InetAddress.getByName(socketHost)) } else { connectionUser.dnsStart(socketHost) val result = address.dns.lookup(socketHost) if (result.isEmpty()) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Mar 06 17:33:38 UTC 2024 - 7.2K bytes - Viewed (0) -
okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DnsOverHttpsTest.kt
.includeIPv6(includeIPv6) .resolvePrivateAddresses(true) .url(url) .post(post) .build() } companion object { private fun address(host: String) = InetAddress.getByName(host) }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 10 19:46:48 UTC 2024 - 11K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
// */ // // UniAddress dc = UniAddress.getByName(domainName); // SmbTransport trans = SmbTransport.getSmbTransport(dc, 0); // DfsReferral[] dr = trans.getDfsReferrals(auth, "\\" + domainName, 1); // // handle = DcerpcHandle.getHandle("ncacn_np:" + // UniAddress.getByName(dr[0].server).getHostAddress() + // "[\\PIPE\\netdfs]", auth);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 31.2K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CookiesTest.kt
} private fun urlWithIpAddress( server: MockWebServer, path: String, ): HttpUrl { return server.url(path) .newBuilder() .host(InetAddress.getByName(server.hostName).hostAddress) .build() } private operator fun get(url: HttpUrl) { val call = client.newCall( Request.Builder() .url(url) .build(),
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 13K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/connection/RouteSelectorTest.kt
assertThat(socketAddress.socketHost).isEqualTo("127.0.0.1") // InetAddress proxy specification. socketAddress = InetSocketAddress(InetAddress.getByName("localhost"), 1234) assertThat(socketAddress.socketHost).isEqualTo("127.0.0.1") socketAddress = InetSocketAddress(InetAddress.getByAddress(byteArrayOf(127, 0, 0, 1)), 1234)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Mar 06 17:33:38 UTC 2024 - 20.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
addresses = new UniAddress[1]; addresses[0] = UniAddress.getByName( server ); return getNextAddress(); } String address = queryLookup(query, "address"); if (address != null && address.length() > 0) { byte[] ip = java.net.InetAddress.getByName(address).getAddress(); addresses = new UniAddress[1];
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt
if (altNames.isNotEmpty()) { val extensionValue = altNames.map { when { it.canParseAsIpAddress() -> { generalNameIpAddress to InetAddress.getByName(it).address.toByteString() } else -> { generalNameDnsName to it } } } result += Extension(
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 21.6K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
import org.checkerframework.checker.nullness.qual.Nullable; /** * Static utility methods pertaining to {@link InetAddress} instances. * * <p><b>Important note:</b> Unlike {@code InetAddress.getByName()}, the methods of this class never * cause DNS services to be accessed. For this reason, you should prefer these methods as much as * possible over their JDK equivalents whenever you are expecting to handle only IP address string
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 47.1K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0)