Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 141 - 150 of 272 for accent (0.08 seconds)

  1. dbflute_fess/dfprop/littleAdjustmentMap.dfprop

        # o isAvailableDatabaseNativeJDBC: (NotRequired - Default false)
        #   [true]
        #     Use classes of database native JDBC on generated classes to get best performances of DB access.
        #     Your project needs to refer to database native JDBC.
        #
        #; isAvailableDatabaseNativeJDBC = false
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 8.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/entity/ChatSession.java

                    messages.clear();
                }
            }
            this.lastAccessedAt = LocalDateTime.now();
        }
    
        /**
         * Trims the message history to keep only the most recent messages.
         *
         * @param maxMessages the maximum number of messages to retain
         */
        public void trimHistory(final int maxMessages) {
            synchronized (messagesLock) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 01:53:06 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/app/service/FessAppServiceTest.java

        }
    
        @Test
        public void test_wrapQuery_multipleInternalWildcards() {
            assertEquals("*test*query*search*", service.callWrapQuery("test*query*search"));
        }
    
        // Test subclass to access protected method
        private static class TestFessAppService extends FessAppService {
            public String callWrapQuery(final String query) {
                return wrapQuery(query);
            }
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/pager/AccessTokenPager.java

     */
    package org.codelibs.fess.app.pager;
    
    import java.io.Serializable;
    import java.util.List;
    
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * The pager for access token.
     */
    public class AccessTokenPager implements Serializable {
        private static final long serialVersionUID = 1L;
    
        /**
         * Default constructor.
         */
        public AccessTokenPager() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

     *
     * <p>Data configurations define how the crawler should access and process
     * various data sources such as databases, CSV files, or other structured data.</p>
     */
    public class DataConfigService extends FessAppService {
    
        /**
         * DBFlute behavior for data configuration operations.
         * Provides database access methods for DataConfig entities.
         */
        @Resource
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8K bytes
    - Click Count (0)
  6. AI_POLICY.md

    ## What contributors can expect from us
    
    1. **Human review, human decisions.** A real human developer will review your PR, provide feedback, and decide whether to accept or reject it. We may use AI tools to help us understand your changes, but a human is always in charge.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  7. .teamcity/subprojects.json

        "crossVersionTests": false
      },
      {
        "name": "instrumentation-agent",
        "path": "platforms/core-runtime/instrumentation-agent",
        "unitTests": false,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "instrumentation-agent-services",
        "path": "platforms/core-runtime/instrumentation-agent-services",
        "unitTests": false,
        "functionalTests": true,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 15:03:00 GMT 2026
    - 42K bytes
    - Click Count (0)
  8. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepPromote.kt

        init {
            id("Promotion_SnapshotFromQuickFeedbackStepPromote")
            name = "Nightly Snapshot (from QuickFeedback) - Promote"
            description =
                "Promotes a previously built distribution on this agent on '${branch.branchName}' from Quick Feedback as a new nightly snapshot. This build checks out gradle-promote, so don't be misled by the 'master' branch."
    
            steps {
                buildStep(
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 20 06:13:56 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

         * Statistics data object that stores timestamped events and maintains reference counting.
         * Extends LinkedHashMap to store event names mapped to their timestamps.
         * Includes reference counting for multi-threaded access tracking.
         */
        public static class StatsObject extends LinkedHashMap<String, Long> {
            /** Serial version UID for serialization. */
            private static final long serialVersionUID = 1L;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 17.4K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

            if (StringUtil.isBlank(crawlingInfoId)) {
                throw new CrawlingAccessException("sessionId is null. Cannot access document without a valid session ID.");
            }
    
            final CrawlerClientFactory crawlerClientFactory = crawlingConfig.initializeClientFactory(ComponentUtil::getCrawlerClientFactory);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:27:04 GMT 2026
    - 17.4K bytes
    - Click Count (0)
Back to Top