Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getHours (0.04 seconds)

  1. src/main/webapp/js/chat.js

         */
        function showEmptyState() {
            elements.emptyState.show();
        }
    
        /**
         * Format timestamp
         */
        function formatTimestamp(date) {
            var hours = date.getHours();
            var minutes = date.getMinutes();
            var ampm = hours >= 12 ? 'PM' : 'AM';
            hours = hours % 12;
            hours = hours ? hours : 12;
            minutes = minutes < 10 ? '0' + minutes : minutes;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/entity/ChatMessage.java

                this.urlLink = urlLink;
            }
    
            /**
             * Gets the go link URL for navigation.
             *
             * @return the go URL
             */
            public String getGoUrl() {
                return goUrl;
            }
    
            /**
             * Sets the go link URL for navigation.
             *
             * @param goUrl the go URL
             */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 04:52:31 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

            assertEquals("http://proxy.example.com/file.doc", source.getUrlLink());
            assertNull(source.getGoUrl());
    
            source.setGoUrl("/go/?rt=123&docId=doc123&queryId=q1&order=0");
            assertEquals("/go/?rt=123&docId=doc123&queryId=q1&order=0", source.getGoUrl());
        }
    
        // ========== searchWithQuery with filters tests ==========
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 40.6K bytes
    - Click Count (0)
Back to Top