- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 20 for minuto (0.15 seconds)
-
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
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/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/main/webapp/js/chat.js
*/ function formatTimestamp(date) { var hours = date.getHours(); var minutes = date.getMinutes(); var ampm = hours >= 12 ? 'PM' : 'AM'; hours = hours % 12; hours = hours ? hours : 12; minutes = minutes < 10 ? '0' + minutes : minutes; return hours + ':' + minutes + ' ' + ampm; } /** * Add a message to the chat */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 01:36:02 GMT 2026 - 30.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
testBoundaryValue(1L); testBoundaryValue(-1L); // Test one second boundaries testBoundaryValue(1000L); testBoundaryValue(-1000L); // Test one minute boundaries testBoundaryValue(60000L); testBoundaryValue(-60000L); // Test one hour boundaries testBoundaryValue(3600000L); testBoundaryValue(-3600000L);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.8K 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/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/SearchLogHelperTest.java
assertNotNull(helper.userInfoCache); assertNotNull(helper.searchLogLogger); } @Test public void test_setUserCheckInterval() { long interval = 5 * 60 * 1000L; // 5 minutes searchLogHelper.setUserCheckInterval(interval); assertEquals(interval, searchLogHelper.userCheckInterval); } @Test public void test_setUserInfoCacheSize() { int cacheSize = 5000;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 16.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
* The cache is configured with a maximum size of 100 entries and expires after 10 minutes. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initializing {}", this.getClass().getSimpleName()); } crawlingConfigCache = CacheBuilder.newBuilder().maximumSize(100).expireAfterWrite(10, TimeUnit.MINUTES).build(); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19.5K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
/** * Cache for storing available artifacts by type. * The cache expires after 5 minutes and has a maximum size of 10 entries. */ protected LoadingCache<ArtifactType, Artifact[]> availableArtifacts = CacheBuilder.newBuilder() .maximumSize(10) .expireAfterWrite(5, TimeUnit.MINUTES) .build(new CacheLoader<ArtifactType, Artifact[]>() { @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Mar 04 15:19:41 GMT 2026 - 25.1K bytes - Click Count (0)