Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for end_time (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/test/java/jcifs/internal/fscc/FileSystemInformationTest.java

                long startTime = System.nanoTime();
                info.decode(largeBuffer, 0, 24);
                long endTime = System.nanoTime();
    
                // Should complete quickly (under 1ms)
                assertTrue((endTime - startTime) < 1_000_000);
            }
    
            @ParameterizedTest
            @ValueSource(ints = { 24, 32, 100, 1000, 10000 })
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/JobHelperTest.java

            jobLog.setEndTime(System.currentTimeMillis());
    
            MonitorTarget target = new MonitorTarget(jobLog);
            try {
                target.expired();
                // Should not update when endTime is set - no exception expected
            } catch (Exception e) {
                // May fail due to missing client in test environment
                assertTrue(e.getMessage().contains("client"));
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsJobLogBhv.java

            try {
                final RESULT result = entityType.newInstance();
                result.setEndTime(DfTypeUtil.toLong(source.get("endTime")));
                result.setJobName(DfTypeUtil.toString(source.get("jobName")));
                result.setJobStatus(DfTypeUtil.toString(source.get("jobStatus")));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/util/Encdec.java

         * @param di the starting index in the destination array
         * @param enc the time encoding type (e.g., TIME_1970_SEC_32BE)
         * @return the number of bytes written
         */
        public static int enc_time(final Date date, final byte[] dst, final int di, final int enc) {
            long t;
    
            return switch (enc) {
            case TIME_1970_SEC_32BE -> enc_uint32be((int) (date.getTime() / 1000L), dst, di);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 17.4K bytes
    - Viewed (0)
Back to top