- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for minuter (0.03 sec)
-
src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java
final ConstraintValidatorContext context = null; // Test basic patterns that should be valid String[] potentiallyValidCrons = { "0 0 * * * ?", // Every hour "0 */15 * * * ?", // Every 15 minutes "0 0 12 * * ?", // Daily at noon "0 15 10 ? * MON-FRI" // Weekdays at 10:15 }; // Test each pattern and see what actually works
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/WrappingScheduledExecutorServiceTest.java
public void testSchedule() { MockExecutor mock = new MockExecutor(); TestExecutor testExecutor = new TestExecutor(mock); Future<?> unused1 = testExecutor.schedule(DO_NOTHING, 10, MINUTES); mock.assertLastMethodCalled("scheduleRunnable", 10, MINUTES); Future<?> unused2 = testExecutor.schedule(callable(DO_NOTHING), 5, SECONDS); mock.assertLastMethodCalled("scheduleCallable", 5, SECONDS); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 7.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/ConnectionPool.kt
* Currently this pool holds up to 5 idle connections which will be evicted after 5 minutes of * inactivity. */ class ConnectionPool internal constructor( internal val delegate: RealConnectionPool, ) { internal constructor( maxIdleConnections: Int = 5, keepAliveDuration: Long = 5, timeUnit: TimeUnit = TimeUnit.MINUTES, taskRunner: TaskRunner = TaskRunner.INSTANCE,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jun 03 17:10:08 UTC 2025 - 4.8K bytes - Viewed (0) -
.github/workflows/maven.yml
- master - "*.x" pull_request: branches: - master - "*.x" workflow_dispatch: jobs: build: runs-on: macos-14 env: PARENT_BRANCH: main timeout-minutes: 15 steps: - uses: actions/checkout@v4 - name: Set up JDK 21 uses: actions/setup-java@v4 with: java-version: '21' distribution: 'temurin' - uses: actions/cache@v4
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue May 06 09:07:19 UTC 2025 - 1.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/PeekingIteratorTest.java
} // TODO(cpovirk): instead of skipping, use a smaller number of steps @GwtIncompatible // works but takes 5 minutes to run public void testPeekingIteratorBehavesLikeIteratorOnThreeElementIterable() { actsLikeIteratorHelper(Lists.newArrayList("A", "B", "C")); } @GwtIncompatible // works but takes 5 minutes to run public void testPeekingIteratorAcceptsNullElements() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PopularWordHelper.java
.maximumSize(fessConfig.getSuggestPopularWordCacheSizeAsInteger().longValue()) .expireAfterWrite(fessConfig.getSuggestPopularWordCacheExpireAsInteger().longValue(), TimeUnit.MINUTES) .build(); } /** * Retrieves a list of popular words based on the specified search parameters. * Uses caching to improve performance for repeated requests. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/webapp/js/help.js
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Mar 30 05:45:24 UTC 2023 - 2K bytes - Viewed (0) -
src/main/webapp/js/advance.js
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Mar 30 05:45:24 UTC 2023 - 1.3K bytes - Viewed (0) -
src/main/webapp/js/index.js
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Mar 30 05:45:24 UTC 2023 - 2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java
helper.init(); assertNotNull(helper.userInfoCache); assertNotNull(helper.searchLogLogger); } public void test_setUserCheckInterval() { long interval = 5 * 60 * 1000L; // 5 minutes searchLogHelper.setUserCheckInterval(interval); assertEquals(interval, searchLogHelper.userCheckInterval); } public void test_setUserInfoCacheSize() { int cacheSize = 5000;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 6K bytes - Viewed (0)