- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 323 for getMd (0.01 sec)
-
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 09:24:04 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 Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 14.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/entity/SuggestItemTest.java
assertEquals(50L, item.getQueryFreq()); assertEquals(100L, item.getDocFreq()); assertEquals(1.5f, item.getUserBoost(), 0.001f); assertNotNull(item.getTimestamp()); assertNotNull(item.getId()); } @Test public void testConstructorWithNullArrays() { // Test constructor handles null arrays gracefully String[] text = { "text" }; String[][] readings = { { "reading" } };
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
* @throws ThemeException if theme name cannot be determined */ protected String getThemeName(final Artifact artifact) { final String themeName = artifact.getName().substring(ArtifactType.THEME.getId().length() + 1); if (StringUtil.isBlank(themeName)) { throw new ThemeException("Theme name is empty: " + artifact); } return themeName; } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
for (Repository remoteRepository : rawProfile.getRepositories()) { remoteRepositories.put(remoteRepository.getId(), remoteRepository); } for (Repository pluginRepository : rawProfile.getPluginRepositories()) { remotePluginRepositories.put(pluginRepository.getId(), pluginRepository); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Oct 28 13:01:07 UTC 2025 - 43.2K bytes - Viewed (0) -
compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java
} } } protected void mergeSite_Id(Site target, Site source, boolean sourceDominant, Map<Object, Object> context) { String src = source.getId(); if (src != null) { if (sourceDominant || target.getId() == null) { target.setId(src); target.setLocation("id", source.getLocation("id")); } } }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Apr 03 11:21:39 UTC 2025 - 99.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelData.java
/** * Gets the effective identifier of the model in the form {@code <groupId>:<artifactId>:<version>}. * * @return The effective identifier of the model, never {@code null}. */ public String getId() { StringBuilder buffer = new StringBuilder(128); buffer.append(getGroupId()) .append(':') .append(getArtifactId()) .append(':')Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 5.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java
} } private static String getExecutionId(Plugin plugin, String goal) { Set<String> existingIds = plugin != null ? plugin.getExecutions().stream().map(PluginExecution::getId).collect(Collectors.toSet()) : Set.of(); String base = "default-" + goal; String id = base; for (int index = 1; existingIds.contains(id); index++) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 7.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java
public interface Artifact { /** * {@return a unique identifier for this artifact}. * The identifier is composed of groupId, artifactId, extension, classifier, and version. * * @see ArtifactCoordinates#getId() */ @Nonnull default String key() { String c = getClassifier(); return getGroupId() + ':' + getArtifactId() + ':'Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 4.6K bytes - Viewed (0)