- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 45 for end_time (0.05 sec)
-
cmd/erasure-server-pool-rebalance_gen.go
case "startTs": z.StartTime, err = dc.ReadTime() if err != nil { err = msgp.WrapError(err, "StartTime") return } case "stopTs": z.EndTime, err = dc.ReadTime() if err != nil { err = msgp.WrapError(err, "EndTime") return } case "status": { var zb0002 uint8 zb0002, err = dc.ReadUint8() if err != nil { err = msgp.WrapError(err, "Status")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Mar 21 17:21:35 UTC 2024 - 26.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsJobLogCA.java
} public void setEndTime_Avg(ConditionOptionCall<AvgAggregationBuilder> opLambda) { setEndTime_Avg("endTime", opLambda); } public void setEndTime_Avg(String name, ConditionOptionCall<AvgAggregationBuilder> opLambda) { AvgAggregationBuilder builder = regAvgA(name, "endTime"); if (opLambda != null) { opLambda.callback(builder); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 58.7K bytes - Viewed (0) -
src/test/java/jcifs/EmptyIteratorTest.java
} catch (CIFSException e) { throw new RuntimeException(e); } }); } long endTime = System.currentTimeMillis(); long duration = endTime - startTime; // Then - should complete quickly (this is more of a performance indicator)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog.jsp
<td><c:if test="${data.endTime!=null}"> <fmt:formatDate value="${fe:date(data.endTime)}" pattern="yyyy-MM-dd'T'HH:mm:ss"/> </c:if> <c:if test="${data.endTime==null}">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 11.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
} }); testThread.start(); long startTime = System.currentTimeMillis(); method.invoke(crawler, testThread); long endTime = System.currentTimeMillis(); assertTrue("Thread should have been joined", endTime - startTime >= 100); } // Test destroyContainer private static method via reflection public void test_destroyContainer() throws Exception {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsJobLogCB.java
columnList.add(name); } public void columnId() { doColumn("_id"); } public void columnEndTime() { doColumn("endTime"); } public void columnJobName() { doColumn("jobName"); } public void columnJobStatus() { doColumn("jobStatus"); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java
@Required public String startTime; /** * The timestamp when the job completed execution. * This field indicates when the job finished, if it has completed. */ public String endTime; /** * Initializes the form with default null values. * This method resets all fields to their default state for creating a new entry. */ public void initialize() { id = null;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.3K bytes - Viewed (0) -
cmd/rebalance-admin.go
elapsed := time.Since(ps.Info.StartTime) eta := time.Duration(totalBytesToRebal * float64(elapsed) / float64(ps.Bytes)) if !ps.Info.EndTime.IsZero() { stopTime = ps.Info.EndTime } if !stopTime.IsZero() { // rebalance is stopped or completed elapsed = stopTime.Sub(ps.Info.StartTime) eta = 0 } r.Pools[i].Progress = rebalPoolProgress{
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog_details.jsp
<tr> <th><la:message key="labels.joblog_endTime"/></th> <td>${f:h(endTime)}<la:hidden property="endTime"/></td> </tr> <tr> <th><la:message key="labels.joblog_scriptType"/></th>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 9.8K bytes - Viewed (0) -
cmd/admin-heal-ops.go
defer periodicTimer.Stop() for { select { case <-periodicTimer.C: now := UTCNow() ahs.Lock() for path, h := range ahs.healSeqMap { if h.hasEnded() && h.endTime.Add(keepHealSeqStateDuration).Before(now) { delete(ahs.healSeqMap, path) } } ahs.Unlock() periodicTimer.Reset(time.Minute * 5) case <-ctx.Done():
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 25.4K bytes - Viewed (0)