Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 14 for minuty (0.03 seconds)

  1. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

             * @param minutes the minute of the hour (0-59)
             * @param day the day of the week (1=Sunday, 7=Saturday)
             * @return true if this rule applies, false otherwise
             */
            public boolean isTarget(final int hours, final int minutes, final int day) {
                if (!reverse) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Nov 23 12:34:02 GMT 2025
    - 10K bytes
    - Click Count (0)
  2. 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)
  3. src/test/java/org/codelibs/fess/validation/CustomSizeTest.java

    public class CustomSizeTest extends UnitFessTestCase {
    
        // Test field with CustomSize annotation for testing
        @CustomSize(minKey = "test.min", maxKey = "test.max")
        private String testField;
    
        // Test field with only minKey
        @CustomSize(minKey = "test.min.only")
        private String testFieldMinOnly;
    
        // Test field with only maxKey
        @CustomSize(maxKey = "test.max.only")
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

                ByteArrayOutputStream stderr = connectStream(process.getErrorStream(), latch);
    
                process.waitFor(1, TimeUnit.MINUTES);
                latch.await(1, TimeUnit.MINUTES);
                return new ExecResult(args, process.exitValue(), stdout.toString(UTF_8), stderr.toString(UTF_8));
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Sep 23 13:49:45 GMT 2025
    - 12K bytes
    - Click Count (0)
  10. 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)
Back to Top