Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setSystemCpuCheckInterval (0.12 sec)

  1. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            }
        }
    
        public void test_createTempFile() {
            assertNotNull(systemHelper.createTempFile("test", ".txt"));
        }
    
        public void test_calibrateCpuLoad() {
            systemHelper.setSystemCpuCheckInterval(0L);
            systemHelper.calibrateCpuLoad();
            assertEquals(0, systemHelper.waitingThreadNames.size());
            systemHelper.waitForNoWaitingThreads();
        }
    
        public void test_getVersion() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        }
    
        public int getMinorVersion() {
            return minorVersion;
        }
    
        public String getProductVersion() {
            return productVersion;
        }
    
        public void setSystemCpuCheckInterval(final long systemCpuCheckInterval) {
            this.systemCpuCheckInterval = systemCpuCheckInterval;
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 17 12:10:08 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top