- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 24 for minste (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/resources/fess_label_fr.properties
labels.related_content_list=Liste de contenu associé labels.plugin_list=Liste des plugins labels.pathmap_list=Liste de mappage de chemins labels.log_file_list=Liste des fichiers journaux labels.labeltype_list=Liste des types d'étiquettes labels.key_match_list=Liste de correspondance de clés labels.job_log_list=Liste des journaux de tâches labels.group_list=Liste des groupes labels.file_config_list=Liste de configuration de fichiers
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 54.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java
// Test edge cases to understand the validation behavior @Test 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);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 4.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java
protected long getCurrentTime() { return System.currentTimeMillis(); } }; roleQueryHelper.maxAge = 60; // 1 minute Set<String> roleSet = new HashSet<>(); // Create timestamp that's 2 minutes old long expiredTimestamp = System.currentTimeMillis() / 1000 - 120; String value = expiredTimestamp + "\nrole1,role2";
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 28.8K bytes - Click Count (0) -
src/main/resources/fess_label_de.properties
labels.plugin_list=Plugin-Liste labels.pathmap_list=Pfadzuordnungs-Liste labels.log_file_list=Logdatei-Liste labels.labeltype_list=Label-Typ-Liste labels.key_match_list=Schlüsselübereinstimmungs-Liste labels.job_log_list=Job-Log-Liste labels.group_list=Gruppen-Liste labels.file_config_list=Dateikonfigurations-Liste labels.file_auth_list=Dateiauthentifizierungs-Liste labels.failure_url_list=Fehler-URL-Liste
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 52.3K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/chat/ChatSessionManager.java
return LocalDateTime.now().isAfter(expirationTime); } /** * Gets the session timeout in minutes. * * @return the session timeout in minutes */ protected int getSessionTimeoutMinutes() { final int value = ComponentUtil.getFessConfig().getRagChatSessionTimeoutMinutesAsInteger(); if (value <= 0) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 13.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java
try { IntervalControlHelper.parseTime("12:60"); fail("Should throw FessSystemException"); } catch (FessSystemException e) { assertEquals("Invalid minute value: 60 in time: 12:60. Minute must be between 0 and 59", e.getMessage()); } try { IntervalControlHelper.parseTime("-1:30"); fail("Should throw FessSystemException");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 13.6K bytes - Click Count (0) -
.github/workflows/maven.yml
- master - "*.x" pull_request: branches: - master - "*.x" workflow_dispatch: jobs: build: runs-on: ubuntu-24.04 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@v4Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 1.5K bytes - Click Count (0) -
src/main/webapp/js/chat.js
*/ function formatTimestamp(date) { var hours = date.getHours(); var minutes = date.getMinutes(); var ampm = hours >= 12 ? 'PM' : 'AM'; hours = hours % 12; hours = hours ? hours : 12; minutes = minutes < 10 ? '0' + minutes : minutes; return hours + ':' + minutes + ' ' + ampm; } /** * Add a message to the chat */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 01:36:02 GMT 2026 - 30.6K bytes - Click Count (0) -
src/main/resources/fess_label_tr.properties
labels.crud_button_duplicate=\u00c7o\u011falt labels.crud_link_create=Yeni Oluştur labels.crud_link_delete=Sil labels.crud_link_edit=Düzenle labels.crud_link_details=Detaylar labels.crud_link_list=Liste labels.crud_title_list=Liste labels.crud_title_create=Oluştur labels.crud_title_edit=Düzenle labels.crud_title_delete=Silmeyi Onayla labels.crud_title_details=Detaylar
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 52.2K bytes - Click Count (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. *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 7.3K bytes - Click Count (0)