- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 380 for networks (0.07 sec)
-
android-test/src/test/kotlin/okhttp/android/test/ShadowDnsResolver.kt
var responder: (Request) -> Unit = { it.callback.onAnswer(listOf(), 0) } data class Request( val network: Network?, val domain: String, val nsType: Int, val flags: Int, val callback: DnsResolver.Callback<List<InetAddress>>, ) @Implementation fun query( network: Network?, domain: String, nsType: Int, flags: Int, executor: Executor,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Dec 30 23:28:56 UTC 2024 - 1.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/RealInterceptorChain.kt
/** * A concrete interceptor chain that carries the entire interceptor chain: all application * interceptors, the OkHttp core, all network interceptors, and finally the network caller. * * If the chain is for an application interceptor then [exchange] must be null. Otherwise it is for * a network interceptor and [exchange] must be non-null. */ class RealInterceptorChain( internal val call: RealCall,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtStatus.java
/** A duplicate name exists on the network */ int NT_STATUS_DUPLICATE_NAME = 0xC00000bd; /** The specified network name is no longer available */ int NT_STATUS_NETWORK_NAME_DELETED = 0xC00000c9; /** Network access is denied */ int NT_STATUS_NETWORK_ACCESS_DENIED = 0xC00000ca; /** The network resource type is not correct */ int NT_STATUS_BAD_DEVICE_TYPE = 0xC00000cb;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/QueryNetworkInterfaceInfoResponse.java
private List<NetworkInterfaceInfo> interfaces; /** * Create query network interface info response */ public QueryNetworkInterfaceInfoResponse() { this.interfaces = new ArrayList<>(); } /** * Get the list of network interfaces * * @return list of network interface information */ public List<NetworkInterfaceInfo> getInterfaces() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbOperationException.java
*/ public enum ErrorCode { // Network errors CONNECTION_FAILED("Network connection failed", ErrorCategory.NETWORK, true), CONNECTION_TIMEOUT("Connection timed out", ErrorCategory.NETWORK, true), CONNECTION_RESET("Connection reset by peer", ErrorCategory.NETWORK, true), HOST_NOT_FOUND("Host not found", ErrorCategory.NETWORK, false), // Authentication errors
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/InterceptorTest.kt
} @Test fun networkInterceptorsRewriteRequestToServer() { rewriteRequestToServer(true) } private fun rewriteRequestToServer(network: Boolean) { server.enqueue(MockResponse()) addInterceptor(network) { chain: Interceptor.Chain -> val originalRequest = chain.request() chain.proceed( originalRequest .newBuilder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 28.2K bytes - Viewed (0) -
container-tests/src/test/java/okhttp3/containers/SocksProxyTest.kt
import org.testcontainers.containers.MockServerContainer import org.testcontainers.containers.Network import org.testcontainers.junit.jupiter.Container import org.testcontainers.junit.jupiter.Testcontainers import org.testcontainers.utility.DockerImageName @Testcontainers class SocksProxyTest { val network: Network = Network.newNetwork() @Container val mockServer: MockServerContainer =
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/StandardImmutableDirectedNetworkTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2.9K bytes - Viewed (0) -
android-test-app/src/main/res/xml/network_security_config.xml
<?xml version="1.0" encoding="utf-8"?> <network-security-config> <base-config cleartextTrafficPermitted="false"> </base-config>
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Dec 23 14:46:51 UTC 2023 - 159 bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
### Integration Tests - Feature interaction testing - Network failure simulation - Performance benchmarking - Compatibility testing with Windows Server 2016/2019/2022 ### Test Infrastructure Requirements - Windows Server test environment with: - Failover clustering - RDMA-capable network adapters - DFS namespace - Multiple network interfaces ## Configuration Properties ```properties
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0)