- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for Arklid (0.09 sec)
-
BsClickLog.java
======== L140: public String getUrlId() { L141: checkSpecifiedProperty("urlId"); L142: return convertEmptyToNull(urlId); L143: } L144: L145: public void setUrlId(String value) { L146: registerModifiedProperty("urlId"); L147: this.urlId = value; L148: } L149: L150: public String getDocId() { L151: checkSpecifiedProperty("docId"); L152: return convertEmptyToNull(docId);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 7K bytes -
click_log.json
L1:{ L2: "properties": { L3: "urlId": { L4: "type": "keyword" L5: }, L6: "docId": { L7: "type": "keyword" L8: }, L9: "queryId": { L10: "type": "keyword" L11: }, L12: "userSessionId": { L13: "type": "keyword" L14: }, L15: "url": { L16: "type": "keyword" L17: }, L18: "order": { L19: "type": "integer" L20: }, L21: "requestedAt": { L22: "type": "date", L23: "format": "date_optional_time"...github.com/codelibs/fess/src/main/resources/fes...Sun Feb 24 22:07:26 UTC 2019 544 bytes -
fess_log_click_log.json
L1:{ L2: "fess_log.click_log" : { L3: "aliases" : { }, L4: "mappings" : { L5: "click_log" : { L6: "properties" : { L7: "urlId" : { L8: "type" : "keyword" L9: }, L10: "docId" : { L11: "type" : "keyword" L12: }, L13: "order" : { L14: "type" : "integer" L15: }, L16: "queryId" : { L17: "type" : "keyword" L18: }, L19: "queryRequestedAt" : { L20: "type"...github.com/codelibs/fess/src/main/config/es/fes...Sat Jun 30 05:55:50 UTC 2018 1.1K bytes -
BsClickLogCB.java
void doColumn(String name) { L172: columnList.add(name); L173: } L174: L175: public void columnId() { L176: doColumn("_id"); L177: } L178: L179: public void columnUrlId() { L180: doColumn("urlId"); L181: } L182: L183: public void columnDocId() { L184: doColumn("docId"); L185: } L186: L187: public void columnOrder() { L188: doColumn("order"); L189: } L190: L191: public void columnQueryId()...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 6.9K bytes -
BsClickLogBhv.java
extends ClickLog> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { L74: try { L75: final RESULT result = entityType.newInstance(); L76: result.setUrlId(DfTypeUtil.toString(source.get("urlId"))); L77: result.setDocId(DfTypeUtil.toString(source.get("docId"))); L78: result.setOrder(DfTypeUtil.toInteger(source.get("order"))); L79: result.setQueryId(DfTypeUtil.toString(source.get("queryId"))); L80: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.5K bytes