- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for invalidAt (1.27 sec)
-
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
// Create a path that's guaranteed to be invalid final File invalidParent = System.getProperty("os.name", "linux").toLowerCase().startsWith("windows") ? new File("Q:\\invalid\\path\\that\\does\\not\\exist") : new File("/invalid/path/that/does/not/exist"); final File outputFile = new File(invalidParent, "output.txt");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
okhttp-sse/src/main/kotlin/okhttp3/sse/internal/RealEventSource.kt
return } val body = response.body if (!body.isEventStream()) { listener.onFailure( this, IllegalStateException("Invalid content-type: ${body.contentType()}"), response, ) return } // This is a long-lived response. Cancel full-call timeouts. call?.timeout()?.cancel()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 11:47:47 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
} else if (response.getContentException() != null) { logger.warn("Invalid request for {}.", path, response.getContentException()); } else { logger.warn("Invalid request for {}. The response is {}", path, response.getContentAsString()); } } } catch (final Exception e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0) -
okhttp-sse/src/test/java/okhttp3/sse/internal/EventSourceHttpTest.kt
|data: hey | | """.trimMargin(), ).setHeader("content-type", "text/plain") .build(), ) newEventSource() listener.assertFailure("Invalid content-type: text/plain") } @Test fun badResponseCode() { server.enqueue( MockResponse .Builder() .body( """ |data: hey |
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 11:47:47 UTC 2025 - 8.1K bytes - Viewed (0)