- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 75 for getByName (0.06 sec)
-
src/test/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancerTest.java
@BeforeEach void setUp() throws UnknownHostException { loadBalancer = new ChannelLoadBalancer(mockChannelManager); InetAddress addr1 = InetAddress.getByName("192.168.1.100"); InetAddress addr2 = InetAddress.getByName("192.168.1.101"); NetworkInterfaceInfo local = new NetworkInterfaceInfo(addr1, 1000); NetworkInterfaceInfo remote1 = new NetworkInterfaceInfo(addr1, 1000);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmServlet.java
if (msg != null && (msg.startsWith("NTLM ") || offerBasic && msg.startsWith("Basic "))) { if (loadBalance) { dc = new UniAddress(NbtAddress.getByName(domainController, 0x1C, null)); } else { dc = UniAddress.getByName(domainController, true); } NtlmPasswordAuthentication ntlm; if (msg.startsWith("NTLM ")) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
NameServiceClient(final int lport, final InetAddress laddr) { this.lport = lport; this.laddr = laddr; try { baddr = Config.getInetAddress("jcifs.smb1.netbios.baddr", InetAddress.getByName("255.255.255.255")); } catch (final UnknownHostException uhe) {} snd_buf = new byte[SND_BUF_SIZE]; rcv_buf = new byte[RCV_BUF_SIZE];
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/config/PropertyConfiguration.java
this.winsServer = new InetAddress[] { InetAddress.getByName(value) }; } catch (UnknownHostException e) { // Invalid address ignored } } value = props.getProperty("jcifs.netbios.laddr"); if (value != null) { try { this.netbiosLocalAddress = InetAddress.getByName(value); } catch (UnknownHostException e) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13.3K bytes - Viewed (0) -
android-test/src/test/kotlin/okhttp/android/test/BaseOkHttpClientUnitTest.kt
val httpUrl = "https://www.google.co.uk".toHttpUrl() assertThat(httpUrl.topPrivateDomain()).isEqualTo("google.co.uk") } private fun assumeNetwork() { try { InetAddress.getByName("www.google.com") } catch (uhe: UnknownHostException) { throw AssumptionViolatedException(uhe.message, uhe) } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 22 20:03:31 UTC 2025 - 2.3K bytes - Viewed (0) -
android-test-app/build.gradle.kts
} kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } buildTypes { release { isShrinkResources = true isMinifyEnabled = true signingConfig = signingConfigs.getByName("debug") setProguardFiles(listOf(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")) testProguardFiles("test-proguard-rules.pro") } } lint { abortOnError = true }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 19 12:35:48 UTC 2025 - 1.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfoTest.java
class NetworkInterfaceInfoTest { private InetAddress testAddress; private InetAddress loopbackAddress; @BeforeEach void setUp() throws UnknownHostException { testAddress = InetAddress.getByName("192.168.1.100"); loopbackAddress = InetAddress.getLoopbackAddress(); } @Test void testConstructor() { NetworkInterfaceInfo info = new NetworkInterfaceInfo(testAddress, 1000);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 4.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessRegistrationTest.java
public class WitnessRegistrationTest { private WitnessRegistration registration; private InetAddress serverAddress; @BeforeEach void setUp() throws Exception { serverAddress = InetAddress.getByName("192.168.1.100"); registration = new WitnessRegistration("\\\\server\\share", serverAddress, WitnessServiceType.FILE_SERVER_WITNESS); } @Test void testRegistrationCreation() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/Config.java
final String addr = props.getProperty(key); if (addr != null) { try { def = InetAddress.getByName(addr); } catch (final UnknownHostException uhe) { log.error("Unknown host " + addr, uhe); } } return def; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/ChannelInfoTest.java
private ChannelInfo channelInfo; @BeforeEach void setUp() throws UnknownHostException { InetAddress localAddr = InetAddress.getByName("192.168.1.100"); InetAddress remoteAddr = InetAddress.getByName("192.168.1.200"); localInterface = new NetworkInterfaceInfo(localAddr, 1000); remoteInterface = new NetworkInterfaceInfo(remoteAddr, 1000);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 7.4K bytes - Viewed (0)