- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 30 for rank (0.01 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) -
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) -
src/main/resources/fess_config.properties
labels.facet_filetype_txt=filetype:txt\t\ labels.facet_filetype_others=filetype:others\n\ # ranking # Window size for rank fusion. rank.fusion.window_size=200 # Rank constant for rank fusion. rank.fusion.rank_constant=20 # Number of threads for rank fusion. rank.fusion.threads=-1 # Score field for rank fusion. rank.fusion.score_field=rf_score # acl # Whether to get SMB roles from a file. smb.role.from.file=true
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0)