- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for SourceMap (0.04 sec)
-
src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java
if (uidNumber != null) { addFieldToSource(sourceMap, "uidNumber", uidNumber); } if (x121Address != null) { addFieldToSource(sourceMap, "x121Address", x121Address); } return sourceMap; } protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) { sourceMap.put(field, value); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 22.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsSearchLog.java
Map<String, Object> sourceMap = new HashMap<>(); if (accessType != null) { addFieldToSource(sourceMap, "accessType", accessType); } if (clientIp != null) { addFieldToSource(sourceMap, "clientIp", clientIp); } if (hitCount != null) { addFieldToSource(sourceMap, "hitCount", hitCount); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFileConfig.java
addFieldToSource(sourceMap, "updatedBy", updatedBy); } if (updatedTime != null) { addFieldToSource(sourceMap, "updatedTime", updatedTime); } if (virtualHosts != null) { addFieldToSource(sourceMap, "virtualHosts", virtualHosts); } return sourceMap; } protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 13.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsWebConfig.java
Map<String, Object> sourceMap = new HashMap<>(); if (available != null) { addFieldToSource(sourceMap, "available", available); } if (boost != null) { addFieldToSource(sourceMap, "boost", boost); } if (configParameter != null) { addFieldToSource(sourceMap, "configParameter", configParameter); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsDataConfig.java
addFieldToSource(sourceMap, "updatedBy", updatedBy); } if (updatedTime != null) { addFieldToSource(sourceMap, "updatedTime", updatedTime); } if (virtualHosts != null) { addFieldToSource(sourceMap, "virtualHosts", virtualHosts); } return sourceMap; } protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java
Map<String, Object> sourceMap = new HashMap<>(); sourceMap.put("string", "test"); sourceMap.put("integer", 42); sourceMap.put("long", 100L); sourceMap.put("double", 3.14); sourceMap.put("boolean", false); sourceMap.put("null_value", null); sourceMap.put("nested", nestedMap); event.setSourceMap(sourceMap);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/DocMapTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 10.5K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
* * @param sourceMap The source map containing the date field. * @param name The name of the date field. * @return The Date object, or null if the field doesn't contain a valid date. */ protected Date getDateFromSource(final Map<String, Object> sourceMap, final String name) { final Object obj = sourceMap.get(name); if (obj instanceof Date) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 34.2K bytes - Viewed (0) -
android/guava/src/com/google/common/net/HttpHeaders.java
public static final String SET_COOKIE2 = "Set-Cookie2"; /** * The HTTP <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/SourceMap">{@code * SourceMap}</a> header field name. * * @since 27.1 */ public static final String SOURCE_MAP = "SourceMap"; /** * The HTTP <a href="https://github.com/WICG/nav-speculation/blob/main/opt-in.md">{@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 27 20:37:16 UTC 2025 - 35.4K bytes - Viewed (0)