Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 215 for source_ (0.06 seconds)

  1. src/test/java/org/codelibs/fess/api/chat/ChatApiManagerTest.java

            final ChatSource source = new ChatSource();
    
            assertNull(source.getUrl());
            assertNull(source.getTitle());
            assertNull(source.getSnippet());
    
            source.setUrl("https://example.com");
            source.setTitle("Example Page");
            source.setSnippet("This is a snippet...");
    
            assertEquals("https://example.com", source.getUrl());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 14 01:39:16 GMT 2026
    - 35K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            final Map<String, Object> source1 = new LinkedHashMap<>();
            source1.put("url", "https://example.com/page.html");
            source1.put("title", "First");
            source1.put("content", "First content");
    
            final Map<String, Object> source2 = new LinkedHashMap<>();
            source2.put("url", "https://example.com/page.html");
            source2.put("title", "Second");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java

            String type1 = event.getEventType();
            String type2 = event.getEventType();
            assertEquals(type1, type2);
    
            Map<String, Object> source1 = event.toSource();
            Map<String, Object> source2 = event.toSource();
            assertSame(source1, source2);
        }
    
        // Test edge cases for version numbers
        @Test
        public void test_versionNumberEdgeCases() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/entity/ChatMessage.java

        }
    
        /**
         * Adds a source to the message.
         *
         * @param source the source to add
         */
        public void addSource(final ChatSource source) {
            if (sources == null) {
                sources = new ArrayList<>();
            }
            sources.add(source);
        }
    
        /**
         * Checks if this is a user message.
         *
         * @return true if this is a user message
    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)
  5. pom.xml

    							<directory>${packaging.fess.lib.dir}/classes</directory>
    							<sources>
    								<source>
    									<location>${project.build.directory}/tomcat-lib</location>
    								</source>
    							</sources>
    						</mapping>
    						<mapping>
    							<directory>${packaging.fess.lib.dir}/classes/org/codelibs/fess</directory>
    							<sources>
    								<source>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 49.9K bytes
    - Click Count (0)
  6. src/main/webapp/js/chat.js

        }
    
        /**
         * Add sources to a message (card style)
         */
        function addSourcesToMessage(messageElement, sources) {
            var html = '<div class="message-sources"><h6>' + escapeHtml(config.labels.sources) + '</h6><ul class="source-list">';
    
            for (var i = 0; i < sources.length; i++) {
                var source = sources[i];
                var title = source.title || source.url || ('Source ' + (i + 1));
    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)
  7. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

            final ChatMessage.ChatSource source = new ChatMessage.ChatSource(1, doc);
            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());
        }
    
    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)
  8. src/main/java/org/codelibs/fess/chat/ChatClient.java

        }
    
        /**
         * Builds the source titles suffix string (e.g., "\n[Referenced documents: Title1, Title2]").
         * Returns an empty string if no sources or titles are available.
         *
         * @param sources the source documents
         * @return the source titles suffix, or empty string
         */
        private String buildSourceTitlesSuffix(final List<ChatSource> sources) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
  9. src/main/webapp/css/chat.css

    }
    
    .source-type {
        font-size: 0.6875rem;
        color: #6b778c;
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
    
    .source-type i {
        font-size: 0.625rem;
    }
    
    /* Fallback for simple source links */
    .source-link {
        font-size: 0.8125rem;
        color: #0052cc;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }
    
    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)
  10. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

                        final Map<String, Object> source = getMapValue(result, "_source");
                        if (source != null) {
                            final OperationInfo info = new OperationInfo();
                            info.name = getStringValue(source, "name");
                            info.instanceId = getStringValue(source, "instanceId");
                            info.hostname = getStringValue(source, "hostname");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 33.3K bytes
    - Click Count (0)
Back to Top