- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 209 for PUT (0.01 sec)
-
ScriptEngineFactory.java
new IllegalArgumentException("name or scriptEngine is null."); L34: } L35: if (logger.isDebugEnabled()) { L36: logger.debug("Loaded {}", name); L37: } L38: scriptEngineMap.put(name.toLowerCase(Locale.ROOT), scriptEngine); L39: scriptEngineMap.put(scriptEngine.getClass().getSimpleName().toLowerCase(Locale.ROOT), scriptEngine); L40: } L41: L42: public ScriptEngine getScriptEngine(final String name) { L43: if (name == null) { L44: throw...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2K bytes -
FileConfig.java
ftpAuthList.add(ftpAuth); L196: } L197: } L198: paramMap.put(Param.Client.SMB_AUTHENTICATIONS, smbAuthList.toArray(new SmbAuthentication[smbAuthList.size()])); L199: paramMap.put(Param.Client.SMB1_AUTHENTICATIONS, L200: smb1AuthList.toArray(new org.codelibs.fess.crawler.client.smb1.SmbAuthentication[smb1AuthList.size()])); L201: paramMap.put(Param.Client.FTP_AUTHENTICATIONS, ftpAuthList.toArray(new FtpAuthentication[ftpAuthList.size()]));...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.8K bytes -
AdminDataconfigAction.java
); L337: final List<Map<String, String>> itemList = new ArrayList<>(); L338: for (final String name : dataStoreNames) { L339: final Map<String, String> map = new HashMap<>(); L340: map.put(Constants.ITEM_LABEL, name); L341: map.put(Constants.ITEM_VALUE, name); L342: itemList.add(map); L343: } L344: RenderDataUtil.register(data, "handlerNameItems", itemList); L345: } L346: L347: // ======================================...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 17.5K bytes -
AbstractFessFileTransformer.java
final Map<String, String> params = new HashMap<>(crawlingConfig.getConfigParameterMap(ConfigName.CONFIG)); L374: params.put(ExtractData.RESOURCE_NAME_KEY, getResourceName(responseData)); L375: params.put(ExtractData.CONTENT_TYPE, responseData.getMimeType()); L376: params.put(ExtractData.CONTENT_ENCODING, responseData.getCharSet()); L377: params.put(ExtractData.URL, responseData.getUrl()); L378: final Map<String, String> configParam = crawlingConfig.getConfigParame...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 23.6K bytes -
ApiAdminSearchlistAction.java
throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); L112: return null; L113: })).status(Status.OK).result()); L114: } L115: L116: // PUT /api/admin/searchlist/doc L117: @Execute L118: public JsonResponse<ApiResult> put$doc(final CreateBody body) { L119: validateApi(body, messages -> {}); L120: if (body.doc == null) { L121: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL,...github.com/codelibs/fess/src/main/java/org/code...Wed Jul 24 09:03:45 UTC 2024 10.2K bytes -
ViewHelper.java
lper().replaceUrls(cache); L581: if (queries != null && queries.length > 0) { L582: doc.put(HL_CACHE, replaceHighlightQueries(cache, queries)); L583: } else { L584: doc.put(HL_CACHE, cache); L585: } L586: } else { L587: doc.put(fessConfig.getIndexFieldCache(), StringUtil.EMPTY); L588: doc.put(HL_CACHE, StringUtil.EMPTY); L589: } L590: L591: try { L592: final Template template = ha...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 40.2K bytes -
LabelTypeTests.java
requestBody = new HashMap<>(); L63: final String keyProp = NAME_PREFIX + id; L64: requestBody.put(KEY_PROPERTY, keyProp); L65: requestBody.put("value", new Integer(id).toString()); L66: return requestBody; L67: } L68: L69: @Override L70: protected Map<String, Object> getUpdateMap() { L71: final Map<String, Object> updateMap = new HashMap<>(); L72: updateMap.put("value", "newValue"); L73: return updateMap; L74: } L75: L76: @Test L77: void crudTest()...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.3K bytes -
StemmerOverrideTests.java
requestBody = new HashMap<>(); L68: final String keyProp = NAME_PREFIX + id; L69: requestBody.put(KEY_PROPERTY, keyProp); L70: requestBody.put("output", "output"); L71: return requestBody; L72: } L73: L74: @Override L75: protected Map<String, Object> getUpdateMap() { L76: final Map<String, Object> updateMap = new HashMap<>(); L77: updateMap.put("output", "new_output"); L78: return updateMap; L79: } L80: L81: @Test L82: void crudTest()...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.4K bytes -
DataIndexHelper.java
initParamMap = new DataStoreParams(); L95: final String sid = ComponentUtil.getCrawlingConfigHelper().store(sessionId, dataConfig); L96: sessionIdList.add(sid); L97: L98: initParamMap.put(Constants.SESSION_ID, sessionId); L99: initParamMap.put(Constants.CRAWLING_INFO_ID, sid); L100: L101: final DataCrawlingThread dataCrawlingThread = new DataCrawlingThread(dataConfig, indexUpdateCallback, initParamMap); L102: dataCrawlingThread.setP...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 12K bytes -
LabelTypeHelper.java
for (final LabelTypeItem item : labelList) { L108: if (item.getPermissions().length == 0) { L109: final Map<String, String> map = new HashMap<>(2); L110: map.put(Constants.ITEM_LABEL, item.getLabel()); L111: map.put(Constants.ITEM_VALUE, item.getValue()); L112: itemList.add(map); L113: } L114: } L115: } else { L116: for (final LabelTypeItem item : labelList) { L117:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 11.7K bytes