- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 41 for rank (0.13 sec)
-
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
} /** * Loads the available searcher names from system properties. * Parses the "rank.fusion.searchers" system property to determine which searchers * are available for use in rank fusion processing. */ protected void load() { final String value = System.getProperty("rank.fusion.searchers"); if (StringUtil.isBlank(value)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.rank.fusion; import java.util.HashMap; import java.util.Map; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.core.collection.ArrayUtil;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ExplicitOrdering.java
this.rankMap = rankMap; } @Override public int compare(T left, T right) { return rank(left) - rank(right); // safe because both are nonnegative } private int rank(T value) { Integer rank = rankMap.get(value); if (rank == null) { throw new IncomparableValueException(value); } return rank; } @Override public boolean equals(@Nullable Object object) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jun 04 13:03:16 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.rank.fusion; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.apache.lucene.search.TotalHits.Relation; import org.codelibs.fess.util.FacetResponse; /** * Represents the result of a search operation in the rank fusion system. * * This class encapsulates all the information returned from a search query,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionSearcher.java
*/ package org.codelibs.fess.rank.fusion; import java.util.Locale; import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.entity.SearchRequestParams; import org.codelibs.fess.mylasta.action.FessUserBean; import org.dbflute.optional.OptionalThing; /** * Abstract base class for rank fusion searchers in the Fess search system. * Rank fusion searchers are responsible for executing search queries and
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/score/LtrQueryRescorer.java
import org.codelibs.fess.util.ComponentUtil; import org.opensearch.search.rescore.QueryRescorerBuilder; import org.opensearch.search.rescore.RescorerBuilder; /** * Learning to Rank query rescorer implementation. */ public class LtrQueryRescorer implements QueryRescorer { /** * Default constructor. */ public LtrQueryRescorer() { // Default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java
} /** Equivalent to {@code newReentrantReadWriteLock(rank, false)}. */ public ReentrantReadWriteLock newReentrantReadWriteLock(E rank) { return newReentrantReadWriteLock(rank, false); } /** * Creates a {@link ReentrantReadWriteLock} with the given fairness policy and rank. The values
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 18 15:05:43 UTC 2025 - 35.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/DefaultSearcherTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.rank.fusion; import org.codelibs.fess.unit.UnitFessTestCase; public class DefaultSearcherTest extends UnitFessTestCase { @Override public void setUp() throws Exception { super.setUp(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java
import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryShardContext; /** * A query builder for a stored LTR (Learning to Rank) query. * This builder constructs a query that uses a pre-trained LTR model * to re-rank search results based on a given set of features. */ public class StoredLtrQueryBuilder extends AbstractQueryBuilder<StoredLtrQueryBuilder> implements NamedWriteable {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
*/ public static CorsHandlerFactory getCorsHandlerFactory() { return getComponent(CORS_HANDLER_FACTORY); } /** * Gets the rank fusion processor component. * @return The rank fusion processor. */ public static RankFusionProcessor getRankFusionProcessor() { return getComponent(RANK_FUSION_PROCESSOR); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0)