- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 333 for Hostname (0.09 sec)
-
okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsOverHttps.kt
buildRequest(hostname, networkRequests, results, failures, DnsRecordCodec.TYPE_AAAA) } executeRequests(hostname, networkRequests, results, failures) return results.ifEmpty { throwBestFailure(hostname, failures) } } private fun buildRequest( hostname: String, networkRequests: MutableList<Call>, results: MutableList<InetAddress>, failures: MutableList<Exception>, type: Int,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Oct 31 09:27:31 UTC 2024 - 9.8K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
@Override public UniAddress getByName ( String hostname, boolean possibleNTDomainOrWorkgroup ) throws UnknownHostException { return getAllByName(hostname, possibleNTDomainOrWorkgroup)[ 0 ]; } @Override public UniAddress[] getAllByName ( String hostname, boolean possibleNTDomainOrWorkgroup ) throws UnknownHostException { if ( hostname == null || hostname.length() == 0 ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 14 14:26:22 UTC 2022 - 38.2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/UniAddress.java
* hostnames on LANs and WANs that support a mixture of NetBIOS/WINS and * DNS resolvable hosts. */ public class UniAddress implements Address { /** * Check whether a hostname is actually an ip address * * @param hostname * @return whether this is an IP address */ public static boolean isDotQuadIP ( String hostname ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.3K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/AsyncDns.kt
Dns { hostname -> val allAddresses = mutableListOf<InetAddress>() val allExceptions = mutableListOf<IOException>() val latch = CountDownLatch(asyncDns.size) asyncDns.forEach { it.query( hostname, object : Callback { override fun onResponse( hostname: String, addresses: List<InetAddress>,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 23 14:31:42 UTC 2024 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileAuthenticationCQ.java
if (opLambda != null) { opLambda.callback(builder); } } public void setHostname_SpanTerm(String hostname) { setHostname_SpanTerm("hostname", null); } public void setHostname_SpanTerm(String hostname, ConditionOptionCall<SpanTermQueryBuilder> opLambda) { SpanTermQueryBuilder builder = regSpanTermQ("hostname", hostname);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 88.1K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
}; Name hostName; int address, nodeType; boolean groupName, isBeingDeleted, isInConflict, isActive, isPermanent, isDataFromNodeStatus; byte[] macAddress; String calledName; NbtAddress ( Name hostName, int address, boolean groupName, int nodeType ) { this.hostName = hostName; this.address = address; this.groupName = groupName;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsWebAuthenticationCQ.java
if (opLambda != null) { opLambda.callback(builder); } } public void setHostname_SpanTerm(String hostname) { setHostname_SpanTerm("hostname", null); } public void setHostname_SpanTerm(String hostname, ConditionOptionCall<SpanTermQueryBuilder> opLambda) { SpanTermQueryBuilder builder = regSpanTermQ("hostname", hostname);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 95.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsWebAuthentication.java
this.createdTime = value; } public String getHostname() { checkSpecifiedProperty("hostname"); return convertEmptyToNull(hostname); } public void setHostname(String value) { registerModifiedProperty("hostname"); this.hostname = value; } public String getParameters() { checkSpecifiedProperty("parameters");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/platform/Android10Platform.kt
?.trustManager(sslSocketFactory) override fun configureTlsExtensions( sslSocket: SSLSocket, hostname: String?, protocols: List<Protocol>, ) { // No TLS extensions if the socket class is custom. socketAdapters.find { it.matchesSocket(sslSocket) } ?.configureTlsExtensions(sslSocket, hostname, protocols) } override fun getSelectedProtocol(sslSocket: SSLSocket): String? =
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/NameServiceClient.java
/** * Lookup addresses for the given <tt>hostname</tt>. * * @param hostname * @param possibleNTDomainOrWorkgroup * @return found addresses * @throws UnknownHostException */ Address[] getAllByName ( String hostname, boolean possibleNTDomainOrWorkgroup ) throws UnknownHostException; /** * Lookup <tt>hostname</tt> and return it's <tt>UniAddress</tt>. If the
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.9K bytes - Viewed (0)