- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 86 for ranking (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/elevateword/UploadForm.java
import org.lastaflute.web.validation.Required; /** * Form for uploading elevate word files to the Fess search engine. * Elevate words are terms that should be promoted or given higher ranking in search results. * This form is used in the admin interface to upload elevate word configuration files. */ public class UploadForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoForm.java
*/ public String hash; /** * Query identifier associated with the search that led to this document access. * This is required for tracking and analytics purposes. */ @Required public String queryId; /** * Order or ranking position of the document in search results. * This optional field helps track which result position was clicked. */ public Integer order;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionSearcher.java
/** * Abstract base class for rank fusion searchers in the Fess search system. * Rank fusion searchers are responsible for executing search queries and * can be combined to implement advanced ranking strategies. */ public abstract class RankFusionSearcher { /** The name of this searcher, lazily initialized. */ protected String name; /**
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/app/web/admin/fileconfig/CreateForm.java
@Required @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer intervalTime; /** The boost value for search ranking (required). */ @Required @ValidateTypeFailure public Float boost; /** Whether this configuration is available for crawling (required, maximum 5 characters). */ @Required @Size(max = 5)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
/** * RankFusionProcessor manages multiple search engines and combines their results using rank fusion algorithms. * This processor supports searching with multiple searchers concurrently and merging their results based on * ranking scores to provide more comprehensive and accurate search results. * * The processor maintains a pool of searchers and an executor service for concurrent operations.
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/app/pager/FileConfigPager.java
/** Number of threads for crawling */ public String numOfThread; /** Interval time between crawling operations */ public String intervalTime; /** Boost value for search ranking */ public String boost; /** Availability status of the configuration */ public String available; /** Sort order for the configuration */ public String sortOrder;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/resources/fess_config.properties
indexer.thread.dump.enabled=true # Maximum number of unprocessed documents for the indexer. indexer.unprocessed.document.size=1000 # Whether to enable click count tracking in the indexer. indexer.click.count.enabled=true # Whether to enable favorite count tracking in the indexer. indexer.favorite.count.enabled=true # Commit margin time (ms) for webfs in the indexer. indexer.webfs.commit.margin.time=5000
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java
* <li>an {@linkplain Thread#setUncaughtExceptionHandler uncaught exception handler} * <li>a {@linkplain ThreadFactory#newThread backing thread factory} * </ul> * * <p>If no backing thread factory is provided, a default backing thread factory is used as if by * calling {@code setThreadFactory(}{@link Executors#defaultThreadFactory()}{@code )}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:35:26 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/boostdoc/CreateForm.java
import jakarta.validation.constraints.Size; /** * Form class for creating boost document configurations. * Boost documents allow administrators to define URL patterns and boost expressions * to influence search result rankings for specific documents. */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { // Default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/jcifs/audit/SecurityAuditLoggerTest.java
assertEquals(Long.valueOf(2), stats.get(EventType.AUTHENTICATION_SUCCESS), "Should have 2 authentication success events"); } @Test @DisplayName("Test sensitive data masking") void testSensitiveDataMasking() { logger.setSensitiveDataMaskingEnabled(true); Map<String, Object> context = new HashMap<>(); context.put("password", "secretpassword123");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.6K bytes - Viewed (0)