- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for HOUR (0.01 sec)
-
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
*/ public static class IntervalRule { /** Starting hour of the interval */ protected int fromHours; /** Starting minute of the interval */ protected int fromMinutes; /** Ending hour of the interval */ protected int toHours; /** Ending minute of the interval */ protected int toMinutes;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt
var hour = -1 var minute = -1 var second = -1 var dayOfMonth = -1 var month = -1 var year = -1 val matcher = TIME_PATTERN.matcher(s) while (pos < limit) { val end = dateCharacterOffset(s, pos + 1, limit, true) matcher.region(pos, end) when { hour == -1 && matcher.usePattern(TIME_PATTERN).matches() -> {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 23.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java
public void test_basicValidCronExpressions() { final ConstraintValidatorContext context = null; // Test basic patterns that should be valid String[] potentiallyValidCrons = { "0 0 * * * ?", // Every hour "0 */15 * * * ?", // Every 15 minutes "0 0 12 * * ?", // Daily at noon "0 15 10 ? * MON-FRI" // Weekdays at 10:15 };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.searchlog_log_type_search_zeroclick=Zero Click Count labels.searchlog_log_type_search_count_hour=Search Count/Hour labels.searchlog_log_type_search_count_day=Search Count/Day labels.searchlog_log_type_search_user_hour=User Count/Hour labels.searchlog_log_type_search_user_day=User Count/Day labels.searchlog_log_type_search_reqtimeavg_hour=Request Average Time/Hour labels.searchlog_log_type_search_reqtimeavg_day=Request Average Time/Day
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
createSearchLogCondition(pager, cb); cb.aggregation().setRequestedAt_DateHistogram(SearchLogPager.LOG_TYPE_SEARCH_COUNT_HOUR, op -> { op.calendarInterval(DateHistogramInterval.HOUR); op.minDocCount(0); op.order(BucketOrder.key(true)); }, null); });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 32.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/JobHelperTest.java
assertNotNull(task); } public void test_monitorInterval_defaultValue() { JobHelper helper = new JobHelper(); assertEquals(3600, helper.monitorInterval); // Default 1 hour } public void test_monitorTarget_constructor() { JobLog jobLog = new JobLog(); jobLog.setId("test-log-4"); jobLog.setJobName("Test Job 4");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/JobHelper.java
/** * Default constructor. */ public JobHelper() { // Default constructor } /** Monitor interval in seconds (default: 1 hour) */ protected int monitorInterval = 60 * 60;// 1hour /** Thread-local storage for job runtime information */ protected ThreadLocal<LaJobRuntime> jobRuntimeLocal = new ThreadLocal<>(); /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.searchlog_log_type_search_zeroclick=Zero Click Count labels.searchlog_log_type_search_count_hour=Search Count/Hour labels.searchlog_log_type_search_count_day=Search Count/Day labels.searchlog_log_type_search_user_hour=User Count/Hour labels.searchlog_log_type_search_user_day=User Count/Day labels.searchlog_log_type_search_reqtimeavg_hour=Request Average Time/Hour labels.searchlog_log_type_search_reqtimeavg_day=Request Average Time/Day
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/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
testBoundaryValue(1000L); testBoundaryValue(-1000L); // Test one minute boundaries testBoundaryValue(60000L); testBoundaryValue(-60000L); // Test one hour boundaries testBoundaryValue(3600000L); testBoundaryValue(-3600000L); // Test one day boundaries testBoundaryValue(86400000L); testBoundaryValue(-86400000L); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
/** Default cron expression for daily tasks (daily at midnight). */ public static final String DEFAULT_DAILY_CRON_EXPRESSION = "0 0 * * *"; /** Default cron expression for hourly tasks (every hour). */ public static final String DEFAULT_HOURLY_CRON_EXPRESSION = "0 * * * *"; /** Default interval time in milliseconds for file system crawling. */ public static final int DEFAULT_INTERVAL_TIME_FOR_FS = 1000;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0)