- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 31 for 8800 (0.01 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/RealWebSocketTest.kt
server.listener.assertClosing(1000, "Bye!") server.webSocket!!.finishReader() server.listener.assertClosed(1000, "Bye!") } @Test fun emptyCloseInitiatesShutdown() { server.sink.write("8800".decodeHex()).emit() // Close without code. client.processNextFrame() client.listener.assertClosing(1005, "") client.webSocket!!.finishReader() assertThat(client.webSocket!!.close(1000, "Bye!")).isTrue()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 18.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java
url = "http://www.foo.com:8080/"; result = "http://www.foo.com:8080/"; assertEquals(result, duplicateHostHelper.convert(url)); url = "http://www.bar.com/"; result = "http://www.bar.com/"; assertEquals(result, duplicateHostHelper.convert(url)); url = "http://www.bar.com:8080/"; result = "http://www.bar.com:8080/";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 6.6K bytes - Viewed (0) -
README.md
### Browser UI - Search UI: http://localhost:8080/  - Admin UI: http://localhost:8080/admin/ (default username/password is admin/admin) 
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 06:34:32 UTC 2025 - 7.2K bytes - Viewed (2) -
mockwebserver/src/test/java/mockwebserver3/RecordedRequestTest.kt
), ) val requestLine = decodeRequestLine("CONNECT example.com:8080 HTTP/1.1") val request = RecordedRequest(requestLine, headers, emptyList(), 0, ByteString.EMPTY, 0, 0, socket) assertThat(request.target).isEqualTo("example.com:8080") assertThat(request.url.toString()).isEqualTo("http://example.com:8080/") } @Test fun testAbsoluteForm() { val socket = MockWebServerSocket(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 02 20:36:00 UTC 2025 - 5.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/CorsFilterTest.java
} // Test with different origin formats public void test_doFilter_differentOrigins() throws Exception { String[] origins = { "http://localhost:8080", "https://example.com", "http://subdomain.example.com", "https://example.com:3000" }; for (String origin : origins) { setUp(); // Reset for each test mockRequest.setHeader("Origin", origin);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/Fingerprint2011Test.java
} /** * Tests that the Java port of Fingerprint2011 provides the same results on buffers up to 800 * bytes long as the original implementation in C++. See http://cl/106539598 */ public void testMultipleLengths() { int iterations = 800; byte[] buf = new byte[iterations * 4]; int bufLen = 0; long h = 0; for (int i = 0; i < iterations; ++i) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 7.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java
} public void test_add_originsWithDifferentPorts() { // Setup String origin8080 = "https://example.com:8080"; String origin8443 = "https://example.com:8443"; TestCorsHandler handler8080 = new TestCorsHandler("handler-8080"); TestCorsHandler handler8443 = new TestCorsHandler("handler-8443"); // Execute corsHandlerFactory.add(origin8080, handler8080);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.1K bytes - Viewed (0) -
.gitignore
/src/main/webapp/WEB-INF/conf/*.properties /src/main/webapp/WEB-INF/db/*.lock.db /src/main/webapp/WEB-INF/logs/fess* /.settings/ .project .classpath *.iml .idea .vscode .DS_Store /plugins/ /modules/ /tomcat.8080/ dbflute_fess/output/doc/lastadoc-fess.html dbflute_fess/schema/project-lastadoc-fess.json src/main/resources/fess_indices/fess_config.access_token/access_token.bulk src/main/resources/ga_client_secrets.p12
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/JobHelperTest.java
} } public void test_setMonitorInterval() { jobHelper.setMonitorInterval(3600); assertEquals(3600, jobHelper.monitorInterval); jobHelper.setMonitorInterval(1800); assertEquals(1800, jobHelper.monitorInterval); } public void test_getJobRuntime_null() { assertNull(jobHelper.getJobRuntime()); } public void test_monitorTarget_expired_withoutEndTime() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/ITBase.java
import io.restassured.specification.RequestSpecification; public class ITBase { private static final Logger logger = LogManager.getLogger(ITBase.class); public static final String DEFAULT_FESS_URL = "http://localhost:8080"; public static final String DEFAULT_SEARCH_ENGINE_URL = "http://localhost:9200"; public static final String DEFAULT_TEST_TOKEN = "E44TjYrJQadtGBFFuECA0SBqqVtqj7lRGmhYep53ixNdvlRxnkhwqCVCpRoO";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3.4K bytes - Viewed (0)