- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 103 for Resuming (0.24 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/execution/BuildResumptionData.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.execution; import java.util.List; /** * This class holds the information required to enable resuming a Maven build with {@code --resume}. */ public class BuildResumptionData { /** * The list of projects that remain to be built. */ private final List<String> remainingProjects;Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.5K bytes - Click Count (0) -
docs/en/docs/tutorial/server-sent-events.md
{* ../../docs_src/server_sent_events/tutorial003_py310.py hl[17] *} /// note `data` and `raw_data` are mutually exclusive. You can only set one of them on each `ServerSentEvent`. /// ## Resuming with `Last-Event-ID` { #resuming-with-last-event-id } When a browser reconnects after a connection drop, it sends the last received `id` in the `Last-Event-ID` header.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 4.6K bytes - Click Count (0) -
internal/bucket/bandwidth/measurement.go
return } duration := endTime.Sub(m.startTime) bytesSinceLastWindow := atomic.SwapUint64(&m.bytesSinceLastWindow, 0) if m.expMovingAvg == 0 { // Should address initial calculation and should be fine for resuming from 0 m.expMovingAvg = float64(bytesSinceLastWindow) / duration.Seconds() return } increment := float64(bytesSinceLastWindow) / duration.Seconds()
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sat Jun 03 20:41:51 GMT 2023 - 2.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildResumptionAnalyzer.java
* @param result Outcome of the current Maven build. * @return A {@link BuildResumptionData} instance or {@link Optional#empty()} if resuming the build is not possible. */ Optional<BuildResumptionData> determineBuildResumptionData(MavenExecutionResult result);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 1.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzer.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.5K bytes - Click Count (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/JsseDebugLogging.kt
message.startsWith("Produced ") -> Type.Handshake message.startsWith("Negotiated ") -> Type.Handshake message.startsWith("Found resumable session") -> Type.Handshake message.startsWith("Resuming session") -> Type.Handshake message.startsWith("Using PSK to derive early secret") -> Type.Handshake else -> Type.Unknown } override fun toString(): String = if (param != null) {
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 2.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionDataRepository.java
.filter(str -> !str.isEmpty()) .forEach(request.getProjectActivation()::activateOptionalProjectNonRecursive); LOGGER.info("Resuming from {} due to the --resume / -r feature.", propertyValue); } }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 11 16:38:19 GMT 2025 - 4.9K bytes - Click Count (0) -
docs/ko/docs/tutorial/server-sent-events.md
{* ../../docs_src/server_sent_events/tutorial003_py310.py hl[17] *} /// note | 참고 `data`와 `raw_data`는 상호 배타적입니다. 각 `ServerSentEvent`에는 이 둘 중 하나만 설정할 수 있습니다. /// ## `Last-Event-ID`로 재개하기 { #resuming-with-last-event-id } 브라우저가 연결이 끊긴 후 재연결할 때, 마지막으로 받은 `id`를 `Last-Event-ID` 헤더에 담아 보냅니다. 헤더 파라미터로 이를 읽어와 클라이언트가 중단한 지점부터 스트림을 재개할 수 있습니다: {* ../../docs_src/server_sent_events/tutorial004_py310.py hl[25,27,31] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:56:39 GMT 2026 - 5.3K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/server-sent-events.md
{* ../../docs_src/server_sent_events/tutorial003_py310.py hl[17] *} /// note `data` 與 `raw_data` 互斥。每個 `ServerSentEvent` 只能設定其中一個。 /// ## 使用 `Last-Event-ID` 繼續 { #resuming-with-last-event-id } 當瀏覽器在連線中斷後重新連線時,會在 `Last-Event-ID` 標頭中傳送最後接收到的 `id`。 你可以將它作為標頭參數讀取,並用來從用戶端中斷處繼續串流: {* ../../docs_src/server_sent_events/tutorial004_py310.py hl[25,27,31] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:33:04 GMT 2026 - 4.6K bytes - Click Count (0) -
docs/zh/docs/tutorial/server-sent-events.md
{* ../../docs_src/server_sent_events/tutorial003_py310.py hl[17] *} /// note | 注意 `data` 和 `raw_data` 是互斥的。每个 `ServerSentEvent` 上只能设置其中一个。 /// ## 使用 `Last-Event-ID` 恢复 { #resuming-with-last-event-id } 当连接中断后浏览器重新连接时,会在 `Last-Event-ID` 头中发送上次收到的 `id`。 你可以将其读取为一个请求头参数,并据此从客户端离开的地方恢复流: {* ../../docs_src/server_sent_events/tutorial004_py310.py hl[25,27,31] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:29:48 GMT 2026 - 4.6K bytes - Click Count (0)