- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 23 for Item (0.03 sec)
-
CharMappingFile.java
return new CharMappingItem(item.getId(), item.getNewInputs(), item.getNewOutput()); L253: } L254: return null; L255: } finally { L256: item.setNewInputs(null); L257: item.setNewOutput(null); L258: } L259: } catch (final IOException e) { L260: throw new DictionaryException("Failed to write: " + oldItem + " -> " + item, e); L261: } L262: }...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 10.2K bytes -
FessMultipartRequestHandler.java
protected void showFormFieldParameter(final DiskFileItem item) { L237: if (logger.isDebugEnabled()) { L238: logger.debug("[param] {}={}", item.getFieldName(), item.getString()); L239: } L240: } L241: L242: protected void showFileFieldParameter(final DiskFileItem item) { L243: if (logger.isDebugEnabled()) { L244: logger.debug("[param] {}:{name={}, size={}}", item.getFieldName(), item.getName(), item.getSize()); L245: } L246: } L247: L248: //...github.com/codelibs/fess/src/main/java/org/code...Wed Oct 23 13:27:21 UTC 2024 18.6K bytes -
LabelTypeHelper.java
LabelType labelType : labelTypeList) { L73: final LabelTypeItem item = new LabelTypeItem(); L74: item.setLabel(labelType.getName()); L75: item.setValue(labelType.getValue()); L76: item.setPermissions(labelType.getPermissions()); L77: item.setVirtualHost(labelType.getVirtualHost()); L78: item.setLocale(labelType.getLocale()); L79: itemList.add(item); L80: } L81: labelTypeItemList = itemList; L82: } L83: L84:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 11.7K bytes -
StemmerOverrideFile.java
return new StemmerOverrideItem(item.getId(), item.getNewInput(), item.getNewOutput()); L250: } L251: return null; L252: } finally { L253: item.setNewInput(null); L254: item.setNewOutput(null); L255: } L256: } catch (final IOException e) { L257: throw new DictionaryException("Failed to write: " + oldItem + " -> " + item, e); L258: } L259: } L260:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 10.6K bytes -
ProtwordsFile.java
ProtwordsItem commit() { L258: isCommit = true; L259: if (item != null && item.isUpdated()) { L260: try { L261: writer.write(item.toLineString()); L262: writer.write(Constants.LINE_SEPARATOR); L263: return item; L264: } catch (final IOException e) { L265: throw new DictionaryException("Failed to write: " + item, e); L266: } L267: } L268: return...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.6K bytes -
StopwordsFile.java
StopwordsItem commit() { L258: isCommit = true; L259: if (item != null && item.isUpdated()) { L260: try { L261: writer.write(item.toLineString()); L262: writer.write(Constants.LINE_SEPARATOR); L263: return item; L264: } catch (final IOException e) { L265: throw new DictionaryException("Failed to write: " + item, e); L266: } L267: } L268: return...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.6K bytes -
ApiAdminDocumentsAction.java
L147: return asJson(new ApiBulkResponse().items(Arrays.stream(response.getItems()).map(item -> { L148: final Map<String, Object> itemMap = new HashMap<>(); L149: itemMap.put("result", item.status().name()); L150: if (item.isFailed()) { L151: itemMap.put("message", item.getFailureMessage()); L152: } else { L153: itemMap.put("id", item.getId()); L154: } L155: return itemMap; L156: }).toList())....github.com/codelibs/fess/src/main/java/org/code...Thu Jul 25 01:48:41 UTC 2024 7.5K bytes -
DictCrudTestBase.java
final List<Map<String, String>> dicts = JsonPath.from(response).getList("response.settings"); L55: L56: for (Map<String, String> item : dicts) { L57: assertTrue(item.containsKey("id")); L58: assertTrue(item.containsKey("type")); L59: if (getDictType().equals(item.get("type"))) { L60: dictId = item.get("id"); L61: return; L62: } L63: } L64: L65: fail(); L66: } L67: L68: @Override L69: protected...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 3.3K bytes -
ElevateWordService.java
list.size()) { L329: return StringUtil.EMPTY; L330: } L331: String item = list.get(index).trim(); L332: if (StringUtil.isBlank(item)) { L333: return StringUtil.EMPTY; L334: } L335: if (item.length() > 1 && item.charAt(0) == '"' && item.charAt(item.length() - 1) == '"') { L336: item = item.substring(1, item.length() - 1); L337: } L338: return item; L339: } L340: L341:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 15.5K bytes -
AdminPluginAction.java
String> beanToMap(final Artifact artifact) { L184: final Map<String, String> item = new HashMap<>(); L185: item.put("type", artifact.getType().getId()); L186: item.put("id", artifact.getName() + ":" + artifact.getVersion()); L187: item.put("name", artifact.getName()); L188: item.put("version", artifact.getVersion()); L189: item.put("url", artifact.getUrl()); L190: return item; L191: } L192: L193: private Artifact getArtifactFromInstallForm(final InstallForm...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.9K bytes