- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 507 for isobject (0.06 sec)
-
User.java
return attributes; L105: } L106: L107: public void setAttributes(final Map<String, String> attributes) { L108: this.attributes = attributes; L109: } L110: L111: @Override L112: public Map<String, Object> toSource() { L113: final Map<String, Object> sourceMap = new HashMap<>(); L114: if (name != null) { L115: sourceMap.put("name", name); L116: } L117: if (password != null) { L118: sourceMap.put("password", password); L119:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 3.8K bytes -
EsAbstractConditionAggregation.java
// Invalid Aggregation L235: // ============= L236: protected void checkEsInvalidAggregation(String name, Object value) { L237: if (value == null || (value instanceof String && ((String) value).isEmpty())) { L238: String msg = "Cannot register null or empty aggregation: name=" + name + " value=" + value; L239: throw new InvalidQ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 12.4K bytes -
BsWebAuthenticationBhv.java
} L66: L67: @Override L68: public WebAuthenticationDbm asDBMeta() { L69: return WebAuthenticationDbm.getInstance(); L70: } L71: L72: @Override L73: protected <RESULT extends WebAuthentication> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { L74: try { L75: final RESULT result = entityType.newInstance(); L76: result.setAuthRealm(DfTypeUtil.toString(source.get("authRealm"))); L77: result.setCreatedB...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 10.4K bytes -
BsScheduledJobBhv.java
"scheduled_job"; L65: } L66: L67: @Override L68: public ScheduledJobDbm asDBMeta() { L69: return ScheduledJobDbm.getInstance(); L70: } L71: L72: @Override L73: protected <RESULT extends ScheduledJob> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { L74: try { L75: final RESULT result = entityType.newInstance(); L76: result.setAvailable(DfTypeUtil.toBoolean(source.get("available"))); L77: result.setCrawler...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 10.2K bytes -
ApiAdminSearchlistAction.java
ssages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, "doc is required")); L122: } L123: validateFields(body.doc, this::throwValidationErrorApi); L124: body.crudMode = CrudMode.CREATE; L125: final Map<String, Object> doc = getDoc(body).map(entity -> { L126: try { L127: entity.putAll(fessConfig.convertToStorableDoc(body.doc)); L128: L129: final String newId = ComponentUtil.getCrawlingInfoHelper().generateId(entity); L130:...github.com/codelibs/fess/src/main/java/org/code...Wed Jul 24 09:03:45 UTC 2024 10.2K bytes -
PermissionHelper.java
ArrayList<>(); L207: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L208: if (fessConfig.isFileRoleFromFile() && responseData.getUrl().startsWith("file:")) { L209: final Map<String, Object> metaDataMap = responseData.getMetaDataMap(); L210: final Object fileAttributeView = metaDataMap.get(FileSystemClient.FILE_ATTRIBUTE_VIEW); L211: try { L212: if (fileAttributeView instanceof final AclFileAttributeView aclFileAttributeView) { L213:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 12.3K bytes -
BaseThumbnailGenerator.java
(StringUtil.isBlank(value)) { L71: conditionMap.put(key, regex); L72: } else { L73: conditionMap.put(key, value + "|" + regex); L74: } L75: } L76: L77: @Override L78: public boolean isTarget(final Map<String, Object> docMap) { L79: final String thumbnailFieldName = ComponentUtil.getFessConfig().getIndexFieldThumbnail(); L80: if (logger.isDebugEnabled()) { L81: logger.debug("[{}] thumbnail: {}", name, docMap.get(thumbnailFieldName)); L82:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 11.1K bytes -
RankFusionProcessorTest.java
L496: for (int i = 0; i < mainSize; i++) { L497: Map<String, Object> doc = new HashMap<>(); L498: doc.put(ID_FIELD, Integer.toString(mainSize - i - 1)); L499: doc.put("score", 1.0f / (i + 2)); L500: builder.addDocument(doc); L501: } L502: for (int i = 100; i < inSize + 100; i++) { L503: Map<String, Object> doc = new HashMap<>(); L504: doc.put(ID_FIELD, Integer.toString(i)); L505:...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 25.6K bytes -
BsSearchLogBhv.java
return "search_log"; L65: } L66: L67: @Override L68: public SearchLogDbm asDBMeta() { L69: return SearchLogDbm.getInstance(); L70: } L71: L72: @Override L73: protected <RESULT extends SearchLog> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { L74: try { L75: final RESULT result = entityType.newInstance(); L76: result.setAccessType(DfTypeUtil.toString(source.get("accessType"))); L77: result.setClient...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 10.5K bytes -
SearchLogEvent.java
permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.entity; L17: L18:import java.util.Map; L19: L20:public interface SearchLogEvent { L21: String getId(); L22: L23: Long getVersionNo(); L24: L25: Map<String, Object> toSource(); L26: L27: String getEventType(); L28:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 826 bytes