Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for HOUR (0.02 sec)

  1. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

                    // t also in DST so no correction
                } else {
                    // t not in DST so subtract 1 hour
                    t -= 3600000;
                }
            } else // not in DST
            if (cfg.getLocalTimezone().inDaylightTime(new Date(t))) {
                // t is in DST so add 1 hour
                t += 3600000;
            } else {
                // t isn't in DST either
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/ResourceManager.java

        private ScheduledFuture<?> cleanupTask;
        private volatile boolean shutdownInProgress = false;
    
        // Configuration
        private long maxResourceAge = TimeUnit.HOURS.toMillis(1); // 1 hour default
        private long cleanupInterval = TimeUnit.MINUTES.toMillis(5); // 5 minutes default
        private boolean leakDetectionEnabled = true;
        private boolean autoCleanupEnabled = true;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/SmbComQueryInformationResponseTest.java

     * Unit tests for the SmbComQueryInformationResponse class.
     */
    public class SmbComQueryInformationResponseTest {
    
        private SmbComQueryInformationResponse response;
        private final long serverTimeZoneOffset = 3600000; // 1 hour in milliseconds
    
        @BeforeEach
        public void setUp() {
            response = new SmbComQueryInformationResponse(serverTimeZoneOffset);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  4. 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)
  5. src/test/java/jcifs/internal/fscc/FileBasicInfoTest.java

        private static final long TEST_LAST_ACCESS_TIME = System.currentTimeMillis() - 43200000L; // 12 hours ago
        private static final long TEST_LAST_WRITE_TIME = System.currentTimeMillis() - 3600000L; // 1 hour ago
        private static final long TEST_CHANGE_TIME = System.currentTimeMillis(); // now
        private static final int TEST_ATTRIBUTES = 0x00000020; // FILE_ATTRIBUTE_ARCHIVE
    
        @BeforeEach
        void setUp() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/moment-with-locales.min.js

    0,function(){return""+this.hours()+H(this.minutes(),2)}),W("Hmmss",0,0,function(){return""+this.hours()+H(this.minutes(),2)+H(this.seconds(),2)}),Xe("a",!0),Xe("A",!1),z("hour","h"),C("hour",13),le("a",ea),le("A",ea),le("H",ae),le("h",ae),le("k",ae),le("HH",ae,$),le("hh",ae,$),le("kk",ae,$),le("hmm",te),le("hmmss",se),le("Hmm",te),le("Hmmss",se),Le(["H","HH"],De),Le(["k","kk"],function(e,a,t){var s=G(e);a[De]=24===s?0:s}),Le(["a","A"],function(e,a,t){t._isPm=t._locale.isPM(e),t._meridiem=e}),Le(...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 360.5K bytes
    - Viewed (2)
  7. 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)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java

             */
            public int elapsedt;
            /**
             * The number of milliseconds from the start of the current second.
             */
            public int msecs;
            /**
             * The current hour (0-23).
             */
            public int hours;
            /**
             * The current minute (0-59).
             */
            public int mins;
            /**
             * The current second (0-59).
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top