- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 30 for jours (0.01 sec)
-
src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java
// Test with cross-midnight rule IntervalRule crossRule = new IntervalRule("22:00", "02:00", "1", 1000); // Sunday only // For cross-midnight rule, when checking early morning hours (1:30), it checks day+1 // day=8 becomes day=1, so day+1=2, which is Monday (not Sunday) assertFalse(crossRule.isTarget(1, 30, 8)); // Should be treated as day 1 (Sunday), checking day+1=2 (Monday) }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 13.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
and night! You see the earth takes twenty-four hours to turn round on its axis--' `Talking of axes,' said the Duchess, `chop off her head!' Alice glanced rather anxiously at the cook, to see if she meant to take the hint; but the cook was busily stirring the soup, and seemed not to be listening, so she went on again: `Twenty-four hours, I THINK; or is it twelve? I--'
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Apr 21 02:27:51 UTC 2017 - 145.2K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeResolver.java
* possible cases: * * 1. Under Android, the built-in TypeVariable implementation interoperates with ours. * Therefore, we can always create our own TypeVariable. * * 2. Under the JDK, the built-in TypeVariable implementation does not interoperate with * ours. Therefore, we have to be careful about whether we create our own TypeVariable: *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 24.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
*/ @Resource protected FessConfig fessConfig; /** * Time interval in milliseconds after which jobs are considered expired. * Default is 2 hours (2 * 60 * 60 * 1000L). */ protected long expiredJobInterval = 2 * 60 * 60 * 1000L; // 2hours /** * Retrieves a paginated list of job logs based on the provided pager configuration. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
guava/src/com/google/common/reflect/TypeResolver.java
* possible cases: * * 1. Under Android, the built-in TypeVariable implementation interoperates with ours. * Therefore, we can always create our own TypeVariable. * * 2. Under the JDK, the built-in TypeVariable implementation does not interoperate with * ours. Therefore, we have to be careful about whether we create our own TypeVariable: *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 24.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java
* cmp -s <(echo $A) <(echo $B) || echo "$X[0] -> $A vs. $B" * done | tee testoutput * - Move that testcases file to the appropriate name under testdata. * * The last test will take hours, and if it passes, the output will be empty. */ doExtensiveTest("testdata/simplifypathnoprefixtests.txt"); } private void doExtensiveTest(String resourceName) throws IOException {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 11K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.search_result_more=More.. labels.search_result_cache=Cache labels.search_result_similar=Similar Results ({0}) labels.facet_label_title=Label labels.facet_timestamp_title=Time labels.facet_timestamp_1day=Within 24 hours labels.facet_timestamp_1week=Within a week labels.facet_timestamp_1month=Within a month labels.facet_timestamp_1year=Within a year labels.facet_timestamp_3month=Within 3 months
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheStrategy.kt
/** Age of the cached response. */ private var ageSeconds = -1 /** * Returns true if computeFreshnessLifetime used a heuristic. If we used a heuristic to serve a * cached response older than 24 hours, we are required to attach a warning. */ private fun isFreshnessLifetimeHeuristic(): Boolean = cacheResponse!!.cacheControl.maxAgeSeconds == -1 && expires == null init { if (cacheResponse != null) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.search_result_more=More.. labels.search_result_cache=Cache labels.search_result_similar=Similar Results ({0}) labels.facet_label_title=Label labels.facet_timestamp_title=Time labels.facet_timestamp_1day=Within 24 hours labels.facet_timestamp_1week=Within a week labels.facet_timestamp_1month=Within a month labels.facet_timestamp_1year=Within a year labels.facet_timestamp_3month=Within 3 months
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 28 08:40:50 UTC 2025 - 40.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
protected long thumbnailTaskQueueTimeout = 10 * 1000L; /** * Expiration time in milliseconds for no-image placeholder files. */ protected long noImageExpired = 24 * 60 * 60 * 1000L; // 24 hours /** * Hash size for splitting thumbnail storage directories. */ protected int splitHashSize = 10; /** * Default constructor for ThumbnailManager. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0)