- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,662 for eravate (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java
private static final Logger logger = LogManager.getLogger(AdminElevatewordAction.class); // =================================================================================== // Attribute // ========= @Resource private ElevateWordService elevateWordService; @Resource
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java
import jakarta.annotation.Resource; /** * API action for admin elevate word management. * Provides RESTful API endpoints for managing elevate word settings in the Fess search engine. * Elevate words boost specific search terms to appear higher in search results. */ public class ApiAdminElevatewordAction extends FessApiAdminAction { private static final Logger logger = LogManager.getLogger(ApiAdminElevatewordAction.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
import jakarta.annotation.Resource; /** * Service class for managing elevate words functionality. * Elevate words are used to boost the relevance of documents containing specific terms in search results. * This service provides CRUD operations, CSV import/export, and related functionality. */ public class ElevateWordService { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(ElevateWordService.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
* * <p>This class provides methods to initialize settings, get and set individual settings, * and manage various types of settings such as array settings, analyzer settings, bad word settings, * and elevate word settings.</p> * * <p>It also includes a nested TimeoutSettings class to manage various timeout configurations.</p> * * <p>Usage example:</p> * <pre> * {@code * Client client = ...;
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
logger.info("Finished SuggestCreator."); System.exit(exitCode); } private static void destroyContainer() { TimeoutManager.getInstance().stop(); synchronized (SingletonLaContainerFactory.class) { SingletonLaContainerFactory.destroy(); } } private static int process(final Options options) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
* <li>{@link #deleteBadWord(String)} - Delete a bad word. * <li>{@link #addElevateWord(ElevateWord, boolean)} - Add an elevate word and optionally apply it. * <li>{@link #deleteElevateWord(String, boolean)} - Delete an elevate word and optionally apply it. * <li>{@link #restoreElevateWord()} - Restore elevate words. * <li>{@link #deleteOldWords(ZonedDateTime)} - Delete old words based on a threshold date.
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 34.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
* This class provides methods for initializing the suggester, indexing data from * various sources, and managing elevate words and bad words. */ public class SuggestHelper { /** * Constructs a new suggest helper. */ public SuggestHelper() { // do nothing } private static final Logger logger = LogManager.getLogger(SuggestHelper.class); /** The separator for text content. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
private final List<CircuitBreakerListener> listeners = new CopyOnWriteArrayList<>(); // Configuration private volatile int failureThreshold; private final int successThreshold; private final long resetTimeoutMillis; private final long halfOpenMaxAttempts; private final AtomicInteger halfOpenAttempts = new AtomicInteger(0); // Dynamic threshold adjustment private final boolean dynamicThresholdEnabled;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java
private int nextEntryOffset; private int fileIndex; private long creationTime; private long lastAccessTime; private long lastWriteTime; private long changeTime; private long endOfFile; private long allocationSize; private int extFileAttributes; private int eaSize; private String shortName; private String filename;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/jcifs/netbios/UniAddressTest.java
} } @Nested @DisplayName("hashCode and equals tests") class HashCodeAndEqualsTests { private InetAddress inetAddress1; private InetAddress inetAddress2; private NbtAddress nbtAddress1; private NbtAddress nbtAddress2; @BeforeEach void setup() throws UnknownHostException { inetAddress1 = InetAddress.getByName("192.168.1.1");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.4K bytes - Viewed (0)