- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 31 for minuts (0.06 seconds)
-
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
public IntervalRule(final String from, final String to, final String days, final long delay) { final int[] fints = parseTime(from); fromHours = fints[0]; fromMinutes = fints[1]; final int[] tints = parseTime(to); toHours = tints[0]; toMinutes = tints[1]; final String[] values = days.split(","); final List<Integer> list = new ArrayList<>();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Nov 23 12:34:02 GMT 2025 - 10K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java
protected long getCurrentTime() { return System.currentTimeMillis(); } }; roleQueryHelper.maxAge = 60; // 1 minute Set<String> roleSet = new HashSet<>(); // Create timestamp that's 2 minutes old long expiredTimestamp = System.currentTimeMillis() / 1000 - 120; String value = expiredTimestamp + "\nrole1,role2";
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 28.8K bytes - Click Count (0) -
src/main/webapp/js/admin/plugins/timepicker/bootstrap-timepicker.min.js
our)return this.hour++,this.toggleMeridian();12===this.hour&&(this.hour=0)}return this.hour===this.maxHours-1?void(this.hour=0):void this.hour++},incrementMinute:function(a){var b;b=a?this.minute+a:this.minute+this.minuteStep-this.minute%this.minuteStep,b>59?(this.incrementHour(),this.minute=b-60):this.minute=b},incrementSecond:function(){var a=this.second+this.secondStep-this.second%this.secondStep;a>59?(this.incrementMinute(!0),this.second=a-60):this.second=a},mousewheel:function(b){if(!this.d...
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Feb 13 04:21:06 GMT 2020 - 18.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java
try { IntervalControlHelper.parseTime("12:60"); fail("Should throw FessSystemException"); } catch (FessSystemException e) { assertEquals("Invalid minute value: 60 in time: 12:60. Minute must be between 0 and 59", e.getMessage()); } try { IntervalControlHelper.parseTime("-1:30"); fail("Should throw FessSystemException");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 13.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
String[] inputs = { "x", "y" }; CharMappingItem item = new CharMappingItem(0L, inputs, "result"); assertEquals(0L, item.getId()); assertNotNull(item.getNewInputs()); assertEquals("result", item.getNewOutput()); // NewInputs should have same content as inputs for id=0 (defensive copy is returned) assertArrayEquals(inputs, item.getNewInputs());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 15.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatSessionManager.java
return LocalDateTime.now().isAfter(expirationTime); } /** * Gets the session timeout in minutes. * * @return the session timeout in minutes */ protected int getSessionTimeoutMinutes() { final int value = ComponentUtil.getFessConfig().getRagChatSessionTimeoutMinutesAsInteger(); if (value <= 0) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 13.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/PopularWordHelperTest.java
.maximumSize(fessConfig.getSuggestPopularWordCacheSizeAsInteger().longValue()) .expireAfterWrite(fessConfig.getSuggestPopularWordCacheExpireAsInteger().longValue(), TimeUnit.MINUTES) .build(); } }; popularWordHelper.init(); } @Test public void test_getCacheKey_allParameters() { String seed = "test_seed";
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
* Cache for storing resource file modification timestamps to enable cache busting. * The cache expires after 10 minutes and has a maximum size of 1000 entries. */ private static LoadingCache<String, Long> resourceHashCache = CacheBuilder.newBuilder().maximumSize(1000).expireAfterWrite(10, TimeUnit.MINUTES).build(new CacheLoader<String, Long>() { @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25.4K bytes - Click Count (1) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java
TaskInputs inputs = task.getInputs(); inputs.files(extension.getCssFiles()) .withPropertyName("manual") .withPathSensitivity(PathSensitivity.RELATIVE); inputs.dir("src/main/resources") .withPropertyName("resources") .withPathSensitivity(PathSensitivity.RELATIVE); inputs.dir(extension.getUserManual().getSnippets())
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 12 22:33:18 GMT 2026 - 17.8K bytes - Click Count (0)