Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 48 for SOURCES (0.07 seconds)

  1. guava-gwt/pom.xml

                    <delete dir="${project.build.directory}/guava-gwt-sources" quiet="true" />
                    <delete dir="${project.build.directory}/guava-test-gwt-sources" quiet="true" />
    
                    <copy toDir="${project.build.directory}/guava-gwt-sources">
                      <fileset dir="${project.build.directory}/guava-sources">
                        <contains text="@GwtCompatible"/>
                      </fileset>
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Jan 12 15:19:17 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/entity/ChatMessage.java

        }
    
        /**
         * Gets the list of sources referenced in the message.
         *
         * @return the list of sources
         */
        public List<ChatSource> getSources() {
            return sources;
        }
    
        /**
         * Sets the list of sources referenced in the message.
         *
         * @param sources the list of sources
         */
        public void setSources(final List<ChatSource> sources) {
    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. android/guava/src/com/google/common/io/CharSource.java

       * @param sources the sources to concatenate
       * @return a {@code CharSource} containing the concatenated data
       * @throws NullPointerException if any of {@code sources} is {@code null}
       * @since 15.0
       */
      public static CharSource concat(CharSource... sources) {
        return concat(ImmutableList.copyOf(sources));
      }
    
      /**
       * Returns a view of the given character sequence as a {@link CharSource}. The behavior of the
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 25.7K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

                }
    
                // Send sources
                final List<ChatSource> sources = result.getMessage().getSources();
                if (sources != null && !sources.isEmpty()) {
                    sendSseEvent(writer, "sources", Map.of("sources", sources));
                    if (logger.isDebugEnabled()) {
                        logger.debug("SSE sources event sent. sourcesCount={}", sources.size());
                    }
                }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/chat/ChatClient.java

            final List<ChatSource> sources = msg.getSources();
            if (sources == null || sources.isEmpty()) {
                return buildTruncatedContent(msg, summaryMaxChars);
            }
            final int maxSuffixLen = Math.max(0, summaryMaxChars / 4);
            final String suffix = buildSourceTitlesSuffix(sources, maxSuffixLen);
            if (suffix.isEmpty()) {
    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)
  6. 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)
  7. src/test/java/org/codelibs/fess/api/chat/ChatApiManagerTest.java

            final List<ChatSource> sources = new ArrayList<>();
            final Map<String, Object> response = chatApiManager.createSuccessResponse("session-123", "Content", sources);
    
            assertEquals("ok", response.get("status"));
            assertTrue(response.containsKey("sources"));
            assertEquals(sources, response.get("sources"));
        }
    
        // ===== getMaxMessageLength tests =====
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 14 01:39:16 GMT 2026
    - 35K bytes
    - Click Count (0)
  8. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

            )
    
        /**
         * Runs the binary compatibility check against two source trees.
         *
         * The fixture build supports both Java and Kotlin sources.
         *
         * @param v1 sources producer for V1, receiver is the `src/main` directory
         * @param v2 sources producer for V2, receiver is the `src/main` directory
         * @param block convenience block invoked on the result
         * @return the check result
         */
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Jan 19 11:30:48 GMT 2026
    - 18.3K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/entity/ChatMessageTest.java

            final LocalDateTime timestamp = LocalDateTime.of(2025, 1, 1, 12, 0, 0);
            final List<ChatSource> sources = new ArrayList<>();
    
            message.setId("msg-123");
            message.setRole("assistant");
            message.setContent("Test content");
            message.setTimestamp(timestamp);
            message.setSources(sources);
    
            assertEquals("msg-123", message.getId());
            assertEquals("assistant", message.getRole());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  10. src/main/webapp/js/chat.js

            return 'Document';
        }
    
        /**
         * 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];
    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)
Back to Top