- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 285 for Werner (0.04 sec)
-
CHANGELOG/CHANGELOG-1.14.md
- [Client Binaries](#client-binaries) - [Server Binaries](#server-binaries) - [Node Binaries](#node-binaries) - [Changelog since v1.14.9](#changelog-since-v1149) - [Other notable changes](#other-notable-changes) - [v1.14.9](#v1149) - [Downloads for v1.14.9](#downloads-for-v1149) - [Client Binaries](#client-binaries-1) - [Server Binaries](#server-binaries-1) - [Node Binaries](#node-binaries-1)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Mon Jun 14 22:06:39 UTC 2021 - 271.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.24.md
- [Server Binaries](#server-binaries-12) - [Node Binaries](#node-binaries-12) - [Container Images](#container-images-12) - [Changelog since v1.24.4](#changelog-since-v1244) - [Important Security Information](#important-security-information-3) - [CVE-2022-3172: Aggregated API server can cause clients to be redirected (SSRF)](#cve-2022-3172-aggregated-api-server-can-cause-clients-to-be-redirected-ssrf)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Aug 24 00:02:43 UTC 2023 - 473.4K bytes - Viewed (0) -
README.md
Fess is based on [OpenSearch](https://github.com/opensearch-project/OpenSearch), but knowledge/experience about OpenSearch is _not_ required. Fess provides an easy to use Administration GUI to configure the system via your browser.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 06:34:32 UTC 2025 - 7.2K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
public Integer purgeSuggestSearchLogDay; /** * LDAP server URL for authentication. * Used when LDAP authentication is enabled. */ @Size(max = 1000) public String ldapProviderUrl; /** * LDAP security principal for binding to the LDAP server. * Used for authenticating with the LDAP server. */ @Size(max = 1000) public String ldapSecurityPrincipal;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
mockwebserver-junit5/src/main/kotlin/mockwebserver3/junit5/StartStop.kt
* field with the `@StartStop` annotation: * * ```java * @StartStop public final MockWebServer server = new MockWebServer(); * ``` * * Or for Kotlin: * * ```kotlin * @StartStop val server = MockWebServer() * ``` */ @Target(AnnotationTarget.FIELD) @Retention(AnnotationRetention.RUNTIME) @ExtendWith(StartStopExtension::class)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jun 19 11:44:16 UTC 2025 - 1.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt
.build(), ) server.enqueue( MockResponse .Builder() .body("B") .build(), ) assertThat(get(server.url("/a")).body.string()).isEqualTo("A") assertThat(get(server.url("/a")).body.string()).isEqualTo("A") assertThat(get(server.url("/b")).body.string()).isEqualTo("B") val c0e0 = server.takeRequest()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 113.6K bytes - Viewed (0) -
mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt
} @Test fun closeWithoutStart() { val server = MockWebServer() server.close() } @Test fun closeViaClosable() { val server: Closeable = MockWebServer() server.close() } @Test fun closeWithoutEnqueue() { val server = MockWebServer() server.start() server.close() } @Test fun portValidAfterStart() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Aug 03 22:38:00 UTC 2025 - 28K bytes - Viewed (0) -
src/main/resources/fess_env_crawler.properties
# ------ # Does it send mock mail? (true: no send actually, logging only) mail.send.mock = false # SMTP server settings for main: host:port mail.smtp.server.main.host.and.port = localhost:25 # The prefix of subject to show test environment or not mail.subject.test.prefix = # The common return path of all mail mail.return.path = root@localhost
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 29 07:34:32 UTC 2018 - 2.2K bytes - Viewed (0) -
src/main/resources/fess_env_thumbnail.properties
# ------ # Does it send mock mail? (true: no send actually, logging only) mail.send.mock = false # SMTP server settings for main: host:port mail.smtp.server.main.host.and.port = localhost:25 # The prefix of subject to show test environment or not mail.subject.test.prefix = # The common return path of all mail mail.return.path = root@localhost
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 12 13:38:57 UTC 2018 - 2.2K bytes - Viewed (0) -
mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/MockWebServerTest.kt
} @Test fun shutdownWithoutStart() { val server = MockWebServer() server.shutdown() } @Test fun closeViaClosable() { val server: Closeable = MockWebServer() server.close() } @Test fun shutdownWithoutEnqueue() { val server = MockWebServer() server.start() server.shutdown() } @Test fun portImplicitlyStarts() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 03 13:16:34 UTC 2025 - 22.3K bytes - Viewed (0)