Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for behaviors (0.79 sec)

  1. 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 endpoints
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EXTRACTOR_TESTS_README.md

    **Key Test Areas**:
    - `validateInputStream()` method behavior
    - Exception types and messages
    - Stream consumption (should not consume)
    - Consistency across multiple calls
    
    **Test Count**: 11 tests
    
    **Key Scenarios**:
    - ✅ Validates non-null streams
    - ✅ Throws CrawlerSystemException for null
    - ✅ Called during getText execution
    - ✅ Does not consume or modify stream
    - ✅ Consistent behavior across multiple calls
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Wed Nov 19 08:55:01 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  3. 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)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolverTest.java

            try {
                resolver.resolve("[]");
                fail("Should throw UnknownHostException for empty brackets");
            } catch (UnknownHostException e) {
                // Expected behavior
            }
        }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 06 07:24:43 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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 constructor
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.6K bytes
    - Viewed (0)
Back to top