- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 455 for setting (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/general/ApiAdminGeneralAction.java
form.ldapAdminSecurityCredentials = null; return asJson(new ApiConfigResponse().setting(form).status(Status.OK).result()); } // PUT /api/admin/general /** * Updates the general system settings. * Merges the provided settings with existing configuration and applies changes. * * @param body the general settings data to update * @return JSON response with update status */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
* * @param session the HTTP session * @return the result document IDs cache map */ private Map<String, String[]> getResultDocIdsCache(final HttpSession session) { @SuppressWarnings("unchecked") Map<String, String[]> resultDocIdsCache = (Map<String, String[]>) session.getAttribute(Constants.RESULT_DOC_ID_CACHE); if (resultDocIdsCache == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/dict/DictCrudTestBase.java
return ITEM_ENDPOINT_SUFFIX + "/" + dictId; } @BeforeEach protected void initializeDictId() { final Map<String, Object> searchBody = new HashMap<>(); final String response = checkMethodBase(searchBody).get("/api/admin/dict").asString(); final List<Map<String, String>> dicts = JsonPath.from(response).getList("response.settings");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/WebApiUtil.java
/** * Utility class for web API operations. * Provides functionality for setting and retrieving objects from request attributes, * error handling, and validation in web API context. */ public final class WebApiUtil { /** * Request attribute key for storing web API exceptions. */ private static final String WEB_API_EXCEPTION = "webApiException"; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
public String userFavorite; /** * Enable or disable JSON Web API. * When enabled, search results can be retrieved via JSON API. */ @Size(max = 10) public String webApiJson; /** * Application-specific value for custom configurations. * This field can be used to store custom application settings. */ @Size(max = 10000) public String appValue; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
dbflute_fess/dfprop/documentMap.dfprop
# You can set SchemaSyncCheck settings. # This property is valid when the property 'user' is set. # Elements of this map are as below: # o url: The URL for connecting database. (NotRequired - Default same as databaseInfoMap) # o schema: The schema name. (NotRequired - Default '' e.g. no setting when MySQL) # o user: The database user name. (Required)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 9.4K bytes - Viewed (0) -
dbflute_fess/dfprop/outsideSqlMap.dfprop
# This property is valid only when isGenerateProcedureParameterBean is valid. # e.g. list:{prefix:SP_} # And you can specify procedures through DB link. # This is treated as additional setting # so it is independent from specifications for main schema. # e.g. SP_FOO@NEXT_LINK (when DB link name is 'NEXT_LINK') #
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 25 06:04:16 UTC 2015 - 8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java
public void test_getId_defaultValue() { // Test that default ID value is 0 assertEquals(0L, dictionaryItem.getId()); } public void test_getId_afterSetting() { // Test getting ID after setting it dictionaryItem.id = 123L; assertEquals(123L, dictionaryItem.getId()); } public void test_getId_negativeValue() { // Test with negative ID value
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
/** The list of documents returned by the search query. */ protected final List<Map<String, Object>> documentList; /** The total number of records that match the search criteria. */ protected final long allRecordCount; /** The relation type indicating how the record count should be interpreted (e.g., "eq", "gte"). */ protected final String allRecordCountRelation;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java
private static class TestScriptEngine implements ScriptEngine { private String lastScript; private Map<String, Object> lastParams; private final String prefix; public TestScriptEngine() { this.prefix = ""; } public TestScriptEngine(String prefix) { this.prefix = prefix + ":"; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0)