- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 38 for eol_error (0.04 sec)
-
src/main/resources/fess_label_hi.properties
labels.sereq_button_upload=भेजें labels.facet_is_not_found=नहीं मिला labels.doc_score=स्कोर: labels.development_mode_warning=Fess विकास मोड में चल रहा है। कृपया उत्पादन वातावरण में OpenSearch अलग से स्थापित करें। labels.eol_error=आप जिस सिस्टम का उपयोग कर रहे हैं वह अब समर्थित नहीं है। कृपया उत्पाद समर्थन जीवनचक्र पृष्ठ देखें और अपग्रेड करें। labels.tooltip_search_view=खोज स्क्रीन labels.tooltip_run_crawler=क्रॉलर चलाएं labels.tooltip_forum=मंच
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 64.5K bytes - Viewed (0) -
src/main/resources/fess_label_zh_CN.properties
labels.sereq_request_file=请求文件 labels.requestFile=请求文件 labels.sereq_button_upload=发送 labels.facet_is_not_found=未找到 labels.doc_score=分数: labels.development_mode_warning=正在开发模式下运行。请在生产环境中单独安装OpenSearch。 labels.eol_error=您的系统已停止支持。请参阅产品支持生命周期页面进行升级。 labels.tooltip_search_view=搜索视图 labels.tooltip_run_crawler=运行爬虫 labels.tooltip_forum=论坛 labels.tooltip_onlinehelp=帮助 labels.tooltip_logout=注销 labels.advance=高级搜索
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 04 09:16:23 UTC 2025 - 43.5K bytes - Viewed (0) -
src/main/resources/fess_label_ko.properties
labels.requestFile=요청 파일 labels.sereq_button_upload=전송 labels.facet_is_not_found=해당 없음 labels.doc_score=점수: labels.development_mode_warning=개발 모드로 실행 중입니다. 실제 운영 환경에서는 OpenSearch를 별도로 설치하십시오. labels.eol_error=사용 중인 시스템은 지원이 종료되었습니다. 제품 지원 기한 페이지를 참조하여 업그레이드하십시오. labels.tooltip_search_view=검색 화면 labels.tooltip_run_crawler=크롤러 실행 labels.tooltip_forum=포럼 labels.tooltip_onlinehelp=도움말 labels.tooltip_logout=로그아웃
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 04 09:16:23 UTC 2025 - 46.1K bytes - Viewed (0) -
src/main/resources/fess_label_ja.properties
labels.requestFile=リクエストファイル labels.sereq_button_upload=送信 labels.facet_is_not_found=該当なし labels.doc_score=スコア: labels.development_mode_warning=開発モードで起動しています。本運用環境ではOpenSearchを別途インストールしてください。 labels.eol_error=ご利用のシステムはサポートが終了しています。製品サポート期限のページを参照して、アップグレードしてください。 labels.tooltip_search_view=検索画面 labels.tooltip_run_crawler=クローラーの実行 labels.tooltip_forum=フォーラム labels.tooltip_onlinehelp=ヘルプ labels.tooltip_logout=ログアウト
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 49.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: The system you are using is no longer supported. Please refer to the product support lifecycle page and upgrade. */ public static final String LABELS_eol_error = "{labels.eol_error}"; /** The key of the message: Search Screen */ public static final String LABELS_tooltip_search_view = "{labels.tooltip_search_view}"; /** The key of the message: Run Crawler */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 156.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/ErrorCode.kt
*/ package okhttp3.internal.http2 /** http://tools.ietf.org/html/draft-ietf-httpbis-http2-17#section-7 */ enum class ErrorCode constructor( val httpCode: Int, ) { /** Not an error! */ NO_ERROR(0), PROTOCOL_ERROR(1), INTERNAL_ERROR(2), FLOW_CONTROL_ERROR(3), SETTINGS_TIMEOUT(4), STREAM_CLOSED(5), FRAME_SIZE_ERROR(6), REFUSED_STREAM(7), CANCEL(8),
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 1.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2ConnectionTest.kt
peer.acceptFrame() // PING peer.sendFrame().headers(false, 3, headerEntries("a", "android")) peer.sendFrame().data(true, 3, Buffer().writeUtf8("robot"), 5) peer.sendFrame().rstStream(3, ErrorCode.NO_ERROR) peer.sendFrame().ping(true, Http2Connection.AWAIT_PING, 0) // PONG peer.play() // Play it back. val connection = connect(peer) val stream = connection.newStream(headerEntries(), false)
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 75.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Connection.kt
* Closes this connection. This cancels all open streams and unanswered pings. It closes the * underlying input and output streams and shuts down internal task queues. */ override fun close() { close(ErrorCode.NO_ERROR, ErrorCode.CANCEL, null) } internal fun close( connectionCode: ErrorCode, streamCode: ErrorCode, cause: IOException?, ) { assertLockNotHeld() ignoreIoExceptions {
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 31.8K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt
} else { socket.close() } } ShutdownConnection -> { if (stream != null) { stream.connection.shutdown(ErrorCode.NO_ERROR) } else { socket.close() } } is CloseSocket -> { if (effect.shutdownInput) socket.shutdownInput() if (effect.shutdownOutput) socket.shutdownOutput()Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Aug 02 20:36:00 UTC 2025 - 40.3K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt
* close the socket after the response body or trailers. */ public fun doNotReadRequestBody(): Builder = apply { doNotReadRequestBody = true onResponseEnd = CloseStream(ErrorCode.NO_ERROR.httpCode) } /** Trigger [socketEffect] while reading the request body. */ public fun onRequestBody(socketEffect: SocketEffect?): Builder = apply { this.onRequestBody = socketEffectRegistered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 17.8K bytes - Viewed (0)