Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 775 for kime (0.02 sec)

  1. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

            this.appendHighlightParams = appendHighlightParams;
        }
    
        /**
         * Sets the formatted execution time for the search request.
         *
         * @param execTime The formatted execution time string
         */
        public void setExecTime(final String execTime) {
            this.execTime = execTime;
        }
    
        /**
         * Sets the number of results per page.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_en.properties

    labels.crawling_info_CrawlerStartTime=Crawler Start Time
    labels.crawling_info_CrawlerEndTime=Crawler End Time
    labels.crawling_info_CrawlerExecTime=Crawler Execution Time
    labels.crawling_info_CrawlerStatus=Crawler Status
    labels.crawling_info_WebFsCrawlExecTime=Crawl Execution Time (Web/File)
    labels.crawling_info_WebFsCrawlStartTime=Crawl Start Time (Web/File)
    labels.crawling_info_WebFsCrawlEndTime=Crawl End Time (Web/File)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

         */
        public String getAllRecordCountRelation() {
            return allRecordCountRelation;
        }
    
        /**
         * Gets the time taken to execute the search query.
         *
         * @return The query execution time in milliseconds
         */
        public long getQueryTime() {
            return queryTime;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

            assertEquals(4000, intervalControlHelper.getDelay());
        }
    
        private IntervalControlHelper createHelper(final String time, final int day) throws ParseException {
            final Date date = new SimpleDateFormat("HH:mm").parse(time);
            return new IntervalControlHelper() {
                @Override
                protected Calendar getCurrentCal() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/util/concurrent/testing/MockFutureListener.java

       * returns the expected data.
       *
       * @throws Throwable if the listener isn't called or if it resulted in a throwable or if the
       *     result doesn't match the expected value.
       */
      public void assertSuccess(Object expectedData) throws Throwable {
        // Verify that the listener executed in a reasonable amount of time.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri May 12 18:12:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/com/SmbComQueryInformationResponse.java

        }
    
        /**
         * @param time
         * @return
         */
        private long convertTime(final long time) {
            return time + this.serverTimeZoneOffset;
        }
    
        @Override
        public long getLastWriteTime() {
            return convertTime(this.lastWriteTime);
        }
    
        @Override
        public long getLastAccessTime() {
            // Fake access time
            return convertTime(this.lastWriteTime);
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb1/util/MimeMapTest.java

            mimeMap = new MimeMap();
        }
    
        @Nested
        @DisplayName("getMimeType with extension only")
        class GetMimeTypeWithExtension {
    
            @Test
            @DisplayName("Should return correct mime type for known extensions")
            void testKnownExtensions() throws IOException {
                assertEquals("application/pdf", mimeMap.getMimeType("pdf"));
                assertEquals("application/msword", mimeMap.getMimeType("doc"));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyCoordinates.java

         * a <abbr>JAR</abbr> containing test classes, a POM file, <i>etc.</i>
         */
        @Nonnull
        Type getType();
    
        /**
         * {@return the time at which the dependency will be used}
         * It may be, for example, at compile time only, at run time, or at test time.
         */
        @Nonnull
        DependencyScope getScope();
    
        /**
         * Returns whether the dependency is optional, mandatory, or of unspecified obligation.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Mar 05 14:29:21 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/util/SmbCircuitBreaker.java

        }
    
        /**
         * Get average response time
         *
         * @return average response time in milliseconds
         */
        public long getAverageResponseTime() {
            return avgResponseTime.get();
        }
    
        /**
         * Get 95th percentile response time
         *
         * @return 95th percentile response time in milliseconds
         */
        public long getP95ResponseTime() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTimingAttackTest.java

                // Should complete in reasonable time (< 10ms for 3000 operations)
                assertTrue(totalTime < 10_000_000L, "Null/empty password comparisons taking too long: " + totalTime + " ns");
            } finally {
                auth1.close();
                auth2.close();
                auth3.close();
            }
        }
    
        /**
         * Test that the constant-time comparison method is actually used internally.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 11.2K bytes
    - Viewed (0)
Back to top