- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for behaviors (0.07 sec)
-
CLAUDE.md
Generated code: - `opensearch/{index}/bsentity/` - Base entities (do not edit) - `opensearch/{index}/exentity/` - Extended entities (customize here) - `opensearch/{index}/bsbhv/` - Base behaviors (do not edit) - `opensearch/{index}/exbhv/` - Extended behaviors (customize here) ## Key Patterns ### Actions (Controllers) - Located in `app.web.*` or `app.web.admin.*` - Methods with `@Execute` are web endpointsRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
public ElevateWordService() { // Default constructor } /** Behavior handler for ElevateWordToLabel entity operations */ @Resource protected ElevateWordToLabelBhv elevateWordToLabelBhv; /** Behavior handler for ElevateWord entity operations */ @Resource protected ElevateWordBhv elevateWordBhv; /** Behavior handler for LabelType entity operations */ @Resource
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 18.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java
if (host == null) { return; } // Atomically get or create the AtomicLong for this host using Cache.get() // This ensures thread-safe, atomic get-or-create behavior // Initialize with 0 to mark uninitialized state final AtomicLong lastTime = lastTimes.get(host, () -> new AtomicLong(0)); synchronized (lastTime) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 5.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/AbstractIntervalController.java
* Provides a common structure for handling delays at different stages of the crawling process. * It encapsulates the delay logic and exception handling, allowing subclasses to focus on * defining the specific delay behavior for each stage. * * <p> * This class defines the contract for delaying the crawling process at various points, such as: * </p> * <ul> * <li>Before processing a URL ({@link #delayBeforeProcessing()})</li>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:58:39 UTC 2025 - 4.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractorTest.java
assertEquals("The inputstream is null.", e.getMessage()); // Note: validateCalled will be false because exception is thrown // before the flag can be set, which is the expected behavior assertFalse("validateCalled should be false as exception thrown before flag set", extractor.isValidateCalled()); } } /**
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetInfo.java
/** * Entity class representing facet configuration information for search results. * This class holds configuration settings for faceted search including field facets, * query facets, and various parameters that control facet behavior. */ public class FacetInfo { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(FacetInfo.class); /** Array of field names to create facets for */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java
/** * Constructor. */ public ScheduledJobService() { super(); } private static final Logger logger = LogManager.getLogger(ScheduledJobService.class); /** * The behavior for scheduled jobs. */ @Resource protected ScheduledJobBhv scheduledJobBhv; /** * The Fess configuration. */ @Resource protected FessConfig fessConfig; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
import jakarta.validation.constraints.Size; /** * Form class for editing general system settings in the admin interface. * This form handles global configuration settings that affect the entire Fess system, * including crawling behavior, authentication, logging, and various system parameters. * */ public class EditForm { /** * Creates a new EditForm instance. */ public EditForm() { // Default constructorRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.6K bytes - Viewed (0) -
CLAUDE.md
6. Update JavaDoc ### When Fixing Bugs 1. Write failing test first 2. Understand root cause 3. Minimal changes 4. Verify no regressions ### When Refactoring 1. Preserve behavior 2. Keep tests green 3. Small incremental steps 4. Don't mix with new features ### Code Quality Checklist - [ ] Java conventions followed - [ ] JavaDoc for public APIs - [ ] Tests pass (`mvn test`)
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
* This class provides common functionality for job execution including process management, * logging configuration, JVM options, and timeout handling. * * <p>Subclasses must implement the abstract methods to define specific job behavior * and execution type identification.</p> * * @version 1.0 */ public abstract class ExecJob { /** Logger instance for this class */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 14.2K bytes - Viewed (0)