- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 233 for HOSTNAME (0.07 sec)
-
src/main/resources/fess_config.properties
crawler.data.serializer=kryo # Maximum length of site name in documents. crawler.document.max.site.length=100 # Encoding for site names in documents. crawler.document.site.encoding=UTF-8 # Hostname to use when unknown in documents. crawler.document.unknown.hostname=unknown # Whether to use site encoding for English documents. crawler.document.use.site.encoding.on.english=false # Whether to append data to documents. crawler.document.append.data=true
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java
* (that require system properties to be set for execution). * * Integration tests require system properties: * - rdma.test.enabled=true (to enable RDMA integration tests) * - rdma.test.server=hostname/IP (target server for testing) * - rdma.test.port=445 (target port, defaults to 445) */ public class RdmaIntegrationTest { private String testServer; private int testPort;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
* expired because under normal circumstances SID information never changes. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportImplTest.java
when(cfg.getResponseTimeout()).thenReturn(2222); // Act & Assert assertEquals(2222, transport.getResponseTimeout(req)); } @Test @DisplayName("Basic getters: address, hostName, inflight, sessions") void basicGetters() { assertEquals(address, transport.getRemoteAddress()); assertNull(transport.getRemoteHostName(), "tconHostName starts null");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt
val request = server.takeRequest() assertThat(request.requestLine).isEqualTo("GET /foo HTTP/2") assertThat(request.headers[":scheme"]).isEqualTo(scheme) assertThat(request.headers[":authority"]).isEqualTo("${server.hostName}:${server.port}") } @ParameterizedTest @ArgumentsSource(ProtocolParamProvider::class) fun get204Response(protocol: Protocol) { setUp(protocol) val responseWithoutBody = MockResponse
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 73.4K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.2.md
* A pod can specify its own Hostname and Subdomain via annotations (<code>pod.beta.kubernetes.io/hostname, pod.beta.kubernetes.io/subdomain)</code>. If the Subdomain matches the name of a [headless service](http://kubernetes.io/docs/user-guide/services/#headless-services) in the same namespace, a DNS A record is also...
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Fri Dec 04 06:36:19 UTC 2020 - 41.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
if (this.state == 5 || this.state == 6) { // don't reuse disconnecting/disconnected transports return false; } if (hostName == null) { hostName = addr.getHostName(); } return (this.tconHostName == null || hostName.equalsIgnoreCase(this.tconHostName)) && addr.equals(this.address)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttpClient.kt
* } * ``` * * This method works like [X509TrustManager.checkServerTrusted] but it receives the hostname of * the server as an extra parameter. Regardless of what checks this method performs, OkHttp will * always check that the server's certificates match its hostname using the [HostnameVerifier]. * See [android.net.http.X509TrustManagerExtensions] for more information. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 51.7K bytes - Viewed (0) -
src/test/java/jcifs/config/DelegatingConfigurationTest.java
// Then assertEquals("UTF-8", oemEncoding, "Should delegate OEM encoding"); assertEquals("TESTHOST", netbiosHostname, "Should delegate NetBIOS hostname"); assertEquals("WORKGROUP", defaultDomain, "Should delegate default domain"); assertEquals("testuser", defaultUsername, "Should delegate default username");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0) -
src/test/java/jcifs/SmbTransportPoolTest.java
// Then assertNotNull(result); assertEquals(transport, result); } @Test @DisplayName("Should handle null hostname in local binding") void testNullHostnameInLocalBinding() { // Given when(transportPool.getSmbTransport(context, address, DEFAULT_PORT, localAddr, LOCAL_PORT, null, false)).thenReturn(transport);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.6K bytes - Viewed (0)