- Sort Score
- Num 10 results
- Language All
Results 291 - 300 of 354 for NO (0.02 seconds)
-
src/test/java/org/codelibs/fess/util/ParameterUtilTest.java
@Test public void test_createConfigParameterMap_edgeCases() { String configParameters; Map<ConfigName, Map<String, String>> result; // Test with parameters that have prefix but no suffix configParameters = "config.=value\nclient.=value2"; result = ParameterUtil.createConfigParameterMap(configParameters); assertEquals("value", result.get(ConfigName.CONFIG).get(""));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 22.8K bytes - Click Count (0) -
dbflute_fess/dfprop/conditionBeanMap.dfprop
Shinsuke Sugaya <******@****.***> 1446334514 +0900
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 31 23:35:14 GMT 2015 - 4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java
assertTrue(searchRequestParams.hasConditionQuery()); } @Test public void test_hasConditionQuery_withNoConditions() { // Test with no conditions assertFalse(searchRequestParams.hasConditionQuery()); } @Test public void test_hasConditionQuery_withNullValues() { // Test with null values
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 26.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java
engine.evaluate("return 1", new HashMap<>()); engine.close(); engine.close(); // second close should not throw } /** * Test that close() on a fresh engine (no evaluations) works */ @Test public void test_close_noEvaluations() { final GroovyEngine engine = new GroovyEngine(); engine.close(); } // ===== Edge Cases =====
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 29.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java
@Test public void test_put$start_loggingDisabled_returnsNullJobLogId() throws Exception { // Setup: job with logging disabled final ScheduledJob scheduledJob = createScheduledJob("job-2", "Test Job No Log", false, true); registerMockJobManager("job-2", null, () -> {}); final ApiAdminSchedulerAction action = createActionWithMockService(scheduledJob); // Execute the real put$start() methodCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 13K bytes - Click Count (0) -
src/main/resources/fess_message.properties
errors.not_found_on_file_system = Not found. Cause: {0} errors.could_not_open_on_system = Could not open {0}.<br>Please check if the file is associated with an application. errors.result_size_exceeded = No more results can be displayed. errors.target_file_does_not_exist = The file {0} does not exist. errors.failed_to_delete_file = Failed to delete the file {0}. errors.docid_not_found = Doc ID is not found. Cause: {0}Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 12.4K bytes - Click Count (0) -
src/main/resources/fess_message_en.properties
errors.not_found_on_file_system = Not found. Cause: {0} errors.could_not_open_on_system = Could not open {0}.<br>Please check if the file is associated with an application. errors.result_size_exceeded = No more results can be displayed. errors.target_file_does_not_exist = The file {0} does not exist. errors.failed_to_delete_file = Failed to delete the file {0}. errors.docid_not_found = Doc ID is not found. Cause: {0}Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 12.4K bytes - Click Count (0) -
src/main/resources/fess_label_en.properties
labels.sessionId=Session ID labels.sortOrder=Sort Order labels.updatedBy=Updated By labels.updatedTime=Updated Time labels.urls=URLs labels.userAgent=User Agent labels.username=Username labels.value=Value labels.versionNo=Version No labels.cronExpression=Schedule labels.dayForCleanup=Delete documents older than specified days labels.crawlingThreadCount=Concurrent Crawling Count labels.boost=Boost labels.crawlingConfigName=Name
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 48.9K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt
get() = gradleProperty(DEFAULT_RFN_PERFORMANCE_BASELINES) val Project.defaultRfrPerformanceBaselines: Provider<String> get() = gradleProperty(DEFAULT_RFR_PERFORMANCE_BASELINES) // null means no limit: use all available executors val Project.maxTestDistributionRemoteExecutors: Int? get() = gradleProperty(MAX_TEST_DISTRIBUTION_REMOTE_EXECUTORS).orNull?.toInt() val Project.maxTestDistributionLocalExecutors: Int?
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Jan 19 05:13:29 GMT 2026 - 18K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
this.execTime = execTime; } /** * Gets the facet response containing aggregated search facets and their counts. * * @return the facet response, or null if no facets were requested */ public FacetResponse getFacetResponse() { return facetResponse; } /** * Checks whether the search results are partial (not complete). *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 14.5K bytes - Click Count (0)