Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

  1. src/test/java/org/codelibs/fess/entity/ChatMessageTest.java

        public void test_htmlContent_withAssistantMessage() {
            final ChatMessage message = ChatMessage.assistantMessage("# Title\n\nParagraph");
            message.setHtmlContent("<h1>Title</h1><p>Paragraph</p>");
    
            assertEquals("# Title\n\nParagraph", message.getContent());
            assertEquals("<h1>Title</h1><p>Paragraph</p>", message.getHtmlContent());
        }
    
        @Test
        public void test_htmlContent_setNull() {
    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)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocPropertiesBuilder.java

                if (propertyDoc.getDescription() == null) {
                    throw new RuntimeException(String.format("Docbook content for '%s.%s' does not contain a description paragraph.", classDoc.getName(), propName));
                }
    
                props.put(propName, propertyDoc);
            }
    
            for (PropertyDoc propertyDoc : props.values()) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 6.2K bytes
    - Click Count (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocMethodsBuilder.java

                    if (methodDoc.getDescription() == null) {
                        throw new RuntimeException(String.format("Docbook content for '%s %s' does not contain a description paragraph.", classDoc.getName(), method.getSignature()));
                    }
                    PropertyDoc property = classDoc.findProperty(methodName);
                    boolean multiValued = false;
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.2K bytes
    - Click Count (0)
Back to Top