- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 240 for gnetId (0.04 sec)
-
src/main/java/org/codelibs/fess/app/service/FileConfigService.java
* * @param fileConfig the file configuration to be deleted */ public void delete(final FileConfig fileConfig) { final String fileConfigId = fileConfig.getId(); fileConfigBhv.delete(fileConfig, op -> { op.setRefreshPolicy(Constants.TRUE); }); fileAuthenticationBhv.queryDelete(cb -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ProtwordsService.java
* @param protwordsItem the item to store */ public void store(final String dictId, final ProtwordsItem protwordsItem) { getProtwordsFile(dictId).ifPresent(file -> { if (protwordsItem.getId() == 0) { file.insert(protwordsItem); } else { file.update(protwordsItem); } }); } /** * Deletes a protected words item.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java
* </ul> * * <h2>Usage Example</h2> * * <pre> * {@code * Session session = ... // Obtain a Maven session * Packaging packaging = session.requirePackaging("jar"); * System.out.println(packaging.getId()); // Outputs "jar" * } * </pre> * * @see org.apache.maven.api.Session#requirePackaging(String) * @see org.apache.maven.api.Project#getPackaging() * @see org.apache.maven.api.model.Model#getPackaging()
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResult.java
*/ void init(ResponseData responseData, ResultData resultData); /** * Returns the identifier of the access result. * * @return the identifier */ IDTYPE getId(); /** * Sets the identifier of the access result. * * @param id the identifier */ void setId(IDTYPE id); /** * Returns the session identifier. *
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueue.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
docMap.put(Constants.SCORE, score); } } if (!docMap.containsKey(fessConfig.getIndexFieldId())) { docMap.put(fessConfig.getIndexFieldId(), searchHit.getId()); } final String[] searchers = DocumentUtil.getValue(docMap, Constants.SEARCHER, String[].class); if (searchers != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.6K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java
} // ---------------------------------------------------------------------- // // ---------------------------------------------------------------------- @Override public String getId() { return getDependencyConflictId() + ":" + getBaseVersion(); } @Override public String getDependencyConflictId() { StringBuilder sb = new StringBuilder(128);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 14.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
if (StringUtil.isBlank(userCode)) { userCode = getUserCodeFromUserBean(request); if (StringUtil.isBlank(userCode)) { userCode = getId(); } } if (StringUtil.isNotBlank(userCode)) { updateUserSessionId(userCode); } return userCode; }).orElse(null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java
// always return true return Constants.TRUE; } @Override public String getConfigId() { return ConfigType.DATA.getConfigId(getId()); } public Map<String, String> getHandlerParameterMap() { if (handlerParameterMap == null) { handlerParameterMap = ParameterUtil.parse(getHandlerParameter()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java
try { writer.write("{\"index\":{\"_index\":\"" + index + "\",\"_id\":\"" + StringEscapeUtils.escapeJson(hit.getId()) + "\"}}\n"); writer.write(hit.getSourceAsString()); writer.write("\n"); } catch (final IOException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0)