- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for MINUTE (0.09 sec)
-
src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java
} // Test edge cases to understand the validation behavior public void test_edgeCaseBehavior() { String[] edgeCases = { "0 0 25 * * ?", // Invalid day of month "0 60 * * * ?", // Invalid minute "0 0 0 32 1 ?", // Invalid day "0 0 0 1 13 ?", // Invalid month }; for (String cron : edgeCases) { boolean result = validator.determineValid(cron);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.5K bytes - Viewed (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);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/LongMathTest.java
} } @J2ktIncompatible // slow enough to cause flakiness @GwtIncompatible // far too slow public void testSqrtOfPerfectSquareAsDoubleIsPerfect() { // This takes just over a minute on my machine. for (long n = 0; n <= LongMath.FLOOR_SQRT_MAX_LONG; n++) { long actual = (long) Math.sqrt((double) (n * n)); assertTrue(actual == n); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 31.4K bytes - Viewed (0)