- Sort Score
- Num 10 results
- Language All
Results 41 - 44 of 44 for configParameter (0.32 seconds)
-
src/main/resources/fess_label_ja.properties
labels.crawlingConfigPath=クロールするパス labels.processType=処理の種別 labels.parameters=パラメーター labels.designFile=アップロードするファイル labels.bulkFile=バルクファイル labels.appendQueryParameter=検索パラメーターの追加 labels.configId=設定ID labels.configParameter=設定パラメーター labels.content=コンテンツ labels.csvFileEncoding=CSVエンコーディング labels.defaultLabelValue=デフォルトラベル labels.designFileName=ファイル名 labels.incrementalCrawling=最終更新日時の確認 labels.errorCount=エラー回数 labels.errorLog=エラーログ
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 56.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
public static final String LABELS_CONFIG_ID = "{labels.configId}"; /** The key of the message: Config Parameter */ public static final String LABELS_CONFIG_PARAMETER = "{labels.configParameter}"; /** The key of the message: Content */ public static final String LABELS_CONTENT = "{labels.content}"; /** The key of the message: CSV Encoding */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 172.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/ParameterUtilTest.java
// Test with parameters that don't match any prefix configParameters = "unknown.param=value\nother=value2"; result = ParameterUtil.createConfigParameterMap(configParameters); for (Map<String, String> map : result.values()) { assertEquals(0, map.size()); } // Test with empty values configParameters = "config.empty=\nfield.xpath.empty=";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) -
src/main/java/org/codelibs/fess/util/ParameterUtil.java
} } /** * Creates a configuration parameter map. * * @param configParameters the configuration parameters * @return the configuration parameter map */ public static Map<ConfigName, Map<String, String>> createConfigParameterMap(final String configParameters) { final Map<ConfigName, Map<String, String>> map = new HashMap<>();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.5K bytes - Click Count (0)