Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for smooth (0.09 seconds)

  1. src/main/webapp/css/chat.css

    /* ============================================
       Chat messages area
       ============================================ */
    .chat-messages {
        flex: 1;
        overflow-y: auto;
        padding: 1rem;
        scroll-behavior: smooth;
        min-height: 200px;
    }
    
    .chat-messages:not(:has(.chat-message)) .empty-state {
        display: flex;
    }
    
    .chat-messages:has(.chat-message) .empty-state {
        display: none;
    }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/api/chat/ChatApiManagerTest.java

            setupViewHelperWithFacetGroups(createFacetQueryView("filetype", "HTML", "filetype:HTML", "WORD", "filetype:WORD"),
                    createFacetQueryView("timestamp", "1month", "timestamp:[now-1M TO *]", "1year", "timestamp:[now-1y TO *]"));
            final MockHttpServletRequest request = new MockHttpServletRequest();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 14 01:39:16 GMT 2026
    - 35K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java

        @Test
        public void test_edgeCaseBehavior() {
            String[] edgeCases = { "0 0 25 * * ?", // Invalid day of month
                    "0 60 * * * ?", // Invalid minute
                    "0 0 0 32 1 ?", // Invalid day
                    "0 0 0 1 13 ?", // Invalid month
            };
    
            for (String cron : edgeCases) {
                boolean result = validator.determineValid(cron);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  4. src/main/resources/fess_label_en.properties

    labels.facet_label_title=Label
    labels.facet_timestamp_title=Time
    labels.facet_timestamp_1day=Within 24 hours
    labels.facet_timestamp_1week=Within a week
    labels.facet_timestamp_1month=Within a month
    labels.facet_timestamp_1year=Within a year
    labels.facet_timestamp_3month=Within 3 months
    labels.facet_timestamp_6month=Within 6 months
    labels.facet_timestamp_2year=Within 2 years
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  5. src/main/resources/fess_label.properties

    labels.facet_label_title=Label
    labels.facet_timestamp_title=Time
    labels.facet_timestamp_1day=Within 24 hours
    labels.facet_timestamp_1week=Within a week
    labels.facet_timestamp_1month=Within a month
    labels.facet_timestamp_1year=Within a year
    labels.facet_timestamp_3month=Within 3 months
    labels.facet_timestamp_6month=Within 6 months
    labels.facet_timestamp_2year=Within 2 years
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Within a week */
        public static final String LABELS_facet_timestamp_1week = "{labels.facet_timestamp_1week}";
    
        /** The key of the message: Within a month */
        public static final String LABELS_facet_timestamp_1month = "{labels.facet_timestamp_1month}";
    
        /** The key of the message: Within a year */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 172.6K bytes
    - Click Count (0)
Back to Top