Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 111 - 120 of 316 for timers (0.05 seconds)

  1. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

         */
        @Override
        public long getDocumentSize() {
            return documentSize.get();
        }
    
        /**
         * Returns the total execution time for all operations.
         *
         * @return the total execution time in milliseconds
         */
        @Override
        public long getExecuteTime() {
            return executeTime;
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/LogNotificationAppenderTest.java

        }
    
        @Test
        public void test_append_excludedLogger_logNotificationTarget() {
            final LogEvent event = createLogEvent(Level.ERROR, "org.codelibs.fess.timer.LogNotificationTarget", "should be excluded");
            appender.append(event);
            final List<LogNotificationEvent> events = ComponentUtil.getLogNotificationHelper().drainAll();
            assertEquals(0, events.size());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  3. architecture/README.md

    When working on some source code it is important to be aware of the runtimes in which it will run, so that you don't break these constraints.
    There is some assistance in the IDE for this plus a lot of validation that is applied at build time and on CI, but it is useful to keep these constraints in mind as well.
    
    See [Gradle runtimes](runtimes.md) for a list of these runtimes and more details.
    
    ### Build execution model
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 12 09:50:57 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  4. src/main/webapp/WEB-INF/orig/view/index.jsp

    							<c:if test="${eoled}">
    								<li class="nav-item" data-bs-toggle="tooltip" data-placement="left" title="<la:message key="labels.eol_error" />">
    									<a class="nav-link active" href="${eolLink}" target="_olh"><i class="fas fa-times-circle text-danger" aria-hidden="true"></i></a>
    								</li>
    							</c:if>
    							<c:if test="${developmentMode}">
    								<li class="nav-item" data-bs-toggle="tooltip" data-placement="left"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 7.3K bytes
    - Click Count (1)
  5. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

            final Map<String, Object> map = Map.of("time", 12345);
            assertEquals(12345L, coordinatorHelper.getLongValue(map, "time"));
        }
    
        @Test
        public void test_getLongValue_long() {
            final Map<String, Object> map = Map.of("time", 9876543210L);
            assertEquals(9876543210L, coordinatorHelper.getLongValue(map, "time"));
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

                    if (file.getName().equals("package-info.java")) {
                        if (canonicalPackageInfos.contains(file.getAbsoluteFile())) {
                            // The file collection may be resolved several times, e.g. for fingerprinting and for actual javadoc invocation.
                            // The method should be idempotent, so we record all package-info.java files we ever allowed and allow them afterward.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Sun Mar 01 05:52:34 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

            crawlingInfoHelper.putToInfoMap(Constants.WEB_FS_CRAWLING_EXEC_TIME, Long.toString(execTime));
            if (logger.isInfoEnabled()) {
                logger.info("[EXEC TIME] crawling time: {}ms", execTime);
            }
    
            indexUpdater.setFinishCrawling(true);
            try {
                indexUpdater.join();
            } catch (final InterruptedException e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 25K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Crawler Start Time */
        public static final String LABELS_crawling_info_CrawlerStartTime = "{labels.crawling_info_CrawlerStartTime}";
    
        /** The key of the message: Crawler End Time */
        public static final String LABELS_crawling_info_CrawlerEndTime = "{labels.crawling_info_CrawlerEndTime}";
    
        /** The key of the message: Crawler Execution Time */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 172.6K bytes
    - Click Count (0)
  9. src/main/webapp/js/chat.js

                button.removeClass('copied').html(originalHtml);
            }, 2000);
        }
    
        function showCopyError(button) {
            var originalHtml = button.html();
            button.html('<i class="fa fa-times"></i> ' + config.labels.copyFailed);
            setTimeout(function() {
                button.html(originalHtml);
            }, 2000);
        }
    
        /**
         * Send a message
         */
        function sendMessage() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  10. dbflute_fess/dfprop/databaseInfoMap.dfprop

    # | FLOAT         | java.math.BigDecimal | decimal?      |
    # | DOUBLE        | java.math.BigDecimal | decimal?      |
    # | DATE          | java.util.Date       | DateTime?     |
    # | TIME          | java.sql.Time        | DateTime?     |
    # | TIMESTAMP     | java.sql.Timestamp   | DateTime?     |
    # | BIT           | java.lang.Boolean    | bool?         |
    # | BOOLEAN       | java.lang.Boolean    | bool?         |
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 7.3K bytes
    - Click Count (0)
Back to Top