- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getCurrentCal (0.11 sec)
-
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
if (delay > 0) { ThreadUtil.sleep(delay); } } protected long getDelay() { if (ruleList.isEmpty()) { return 0; } final Calendar cal = getCurrentCal(); final int h = cal.get(Calendar.HOUR_OF_DAY); final int m = cal.get(Calendar.MINUTE); final int d = cal.get(Calendar.DAY_OF_WEEK); // SUN(1) - SAT(7) for (final IntervalRule rule : ruleList) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 5.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java
final Date date = new SimpleDateFormat("HH:mm").parse(time); return new IntervalControlHelper() { @Override protected Calendar getCurrentCal() { final Calendar cal = Calendar.getInstance(); cal.setTimeInMillis(date.getTime()); cal.set(Calendar.DAY_OF_WEEK, day); return cal; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.2K bytes - Viewed (0)