Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for 86400000 (0.07 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java

            assertEquals("true", customEnv.getFrameworkDebug());
            assertTrue(customEnv.isFrameworkDebug());
            assertEquals("86400000", customEnv.getTimeAdjustTimeMillis());
            assertEquals(Long.valueOf(86400000), customEnv.getTimeAdjustTimeMillisAsLong());
            assertEquals("false", customEnv.getMailSendMock());
            assertFalse(customEnv.isMailSendMock());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         */
        boolean isFrameworkDebug();
    
        /**
         * Get the value for the key 'time.adjust.time.millis'. <br>
         * The value is, e.g. 0 <br>
         * comment: <br>
         * one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000<br>
         * special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)<br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java

            // Test one hour boundaries
            testBoundaryValue(3600000L);
            testBoundaryValue(-3600000L);
    
            // Test one day boundaries
            testBoundaryValue(86400000L);
            testBoundaryValue(-86400000L);
        }
    
        private void testBoundaryValue(long value) {
            FessConfig boundaryConfig = new FessConfig.SimpleImpl() {
                private static final long serialVersionUID = 1L;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/env/crawler/resources/app.xml

    	<component name="intervalControlHelper" class="org.codelibs.fess.helper.IntervalControlHelper">
    		<!--
    		<postConstruct name="addIntervalRule">
    			<arg>"5:00"</arg>
    			<arg>"10:00"</arg>
    			<arg>"2,3,4,5,6"</arg>
    			<arg>3600000</arg>
    		</postConstruct>
    		 -->
    	</component>
    	<component name="indexUpdater" class="org.codelibs.fess.indexer.IndexUpdater"
    		instance="prototype">
    		<!--
    		<property name="maxDocumentCacheSize">5</property>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Nov 07 06:19:20 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/lease/DirectoryLeasingIntegrationTest.java

            // Setup mock files
            when(mockFile1.getName()).thenReturn("document.txt");
            when(mockFile1.length()).thenReturn(2048L);
            when(mockFile1.lastModified()).thenReturn(System.currentTimeMillis() - 3600000);
            when(mockFile1.isDirectory()).thenReturn(false);
            when(mockFile1.getAttributes()).thenReturn(0x20); // FILE_ATTRIBUTE_ARCHIVE
            when(mockFile1.createTime()).thenReturn(System.currentTimeMillis() - 7200000);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  6. src/test/java/jcifs/SmbTreeHandleTest.java

            when(smbTreeHandle.getServerTimeZoneOffset()).thenReturn(3600000L);
            assertEquals(3600000L, smbTreeHandle.getServerTimeZoneOffset(), "Server time zone offset should be 3600000");
        }
    
        /**
         * Test for getServerTimeZoneOffset() method throwing CIFSException.
         * @throws CIFSException
         */
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/fscc/FileBasicInfoTest.java

     */
    class FileBasicInfoTest {
    
        private FileBasicInfo fileBasicInfo;
        // Use realistic time values in milliseconds since 1970 (Unix epoch)
        private static final long TEST_CREATE_TIME = System.currentTimeMillis() - 86400000L; // 1 day ago
        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
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

                    } else {
                        // t not in DST so subtract 1 hour
                        t -= 3600000;
                    }
                } else // not in DST
                if (TZ.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: Thu Aug 14 07:14:38 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/SMB1SigningDigestTest.java

                    .thenReturn(false); // test time
            SMB1SigningDigest.writeUTime(mockConfig, testTime, dst, 0);
    
            expectedSeconds = (int) ((testTime - 3600000) / 1000L);
            actualSeconds = SMBUtil.readInt4(dst, 0);
            assertEquals(expectedSeconds, actualSeconds);
        }
    
        @Test
        @DisplayName("Test writeUTime when not in DST")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

                } 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)
Back to top