Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 53 for dots (0.02 seconds)

  1. src/test/java/org/codelibs/fess/app/web/admin/log/AdminLogActionTest.java

            assertEquals("/test.log", AdminLogAction.sanitizeFilename(" ../test.log"));
            assertEquals("/test.log", AdminLogAction.sanitizeFilename(".. / .. /test.log"));
            // Whitespace between dots - must be removed before ".." removal
            assertEquals("/test.log", AdminLogAction.sanitizeFilename(". ./test.log"));
            assertEquals("/test.log", AdminLogAction.sanitizeFilename(". . /test.log"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  2. src/main/webapp/css/chat.css

        border-radius: 1rem;
        color: #6b778c;
    }
    
    .thinking-dots {
        display: flex;
        margin-left: 0.5rem;
    }
    
    .thinking-dots span {
        width: 6px;
        height: 6px;
        background-color: #0052cc;
        border-radius: 50%;
        margin: 0 2px;
        animation: thinking-bounce 1.4s ease-in-out infinite both;
    }
    
    .thinking-dots span:nth-child(1) {
        animation-delay: -0.32s;
    }
    
    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)
  3. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java

                assertEquals(arrayValue, value);
            } finally {
                System.clearProperty(Constants.FESS_CONFIG_PREFIX + arrayKey);
            }
        }
    
        // Test property key with dots
        @Test
        public void test_get_propertyKeyWithDots() {
            String dottedKey = "deeply.nested.property.key";
            String dottedValue = "nested-value";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.9K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardActionTest.java

            assertEquals("s3://my-bucket/", wizardAction.convertCrawlingPath("s3://my-bucket/"));
            assertEquals("s3://bucket.with.dots/path", wizardAction.convertCrawlingPath("s3://bucket.with.dots/path"));
            assertEquals("s3://bucket-with-dashes/path", wizardAction.convertCrawlingPath("s3://bucket-with-dashes/path"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

            value = "${spaces}";
            assertEquals("   ", ResourceUtil.resolve(value));
    
            // Test long property name
            System.setProperty("very.long.property.name.with.many.dots", "long");
            value = "${very.long.property.name.with.many.dots}";
            assertEquals("long", ResourceUtil.resolve(value));
    
            // Test multiple occurrences of same variable
            System.setProperty("repeat", "X");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  6. src/main/webapp/js/chat.js

                    '<div class="thinking-indicator">' +
                        escapeHtml(config.labels.thinking) +
                        '<div class="thinking-dots"><span></span><span></span><span></span></div>' +
                    '</div>' +
                '</div>';
    
            elements.chatMessages.append(html);
            scrollToBottom();
            return id;
        }
    
    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/util/ParameterUtilTest.java

            // Test with special characters in keys and values
            value = "key.with.dots=value\nkey_with_underscores=value with spaces\nkey-with-dashes=value@#$%";
            paramMap = ParameterUtil.parse(value);
            assertEquals(3, paramMap.size());
            assertEquals("value", paramMap.get("key.with.dots"));
            assertEquals("value with spaces", paramMap.get("key_with_underscores"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 22.8K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java

            assertTrue(protocolHelper.isValidFileProtocol("s3://bucket/"));
            assertTrue(protocolHelper.isValidFileProtocol("s3://my-bucket/path"));
            assertTrue(protocolHelper.isValidFileProtocol("s3://bucket.with.dots/path"));
            assertTrue(protocolHelper.isValidFileProtocol("s3://bucket-with-dashes/path"));
            assertTrue(protocolHelper.isValidFileProtocol("s3://123bucket/path"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 35.1K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/it/admin/DocumentsTests.java

            List<Map<String, Object>> docs = JsonPath.from(response).getList("response.docs");
    
            logger.info("Created large set of documents: {} documents", docs.size());
            assertEquals(20, docs.size(), "Should have created 20 documents");
    
            // Clean up large set
            for (Map<String, Object> doc : docs) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

            assertTrue(JsonPath.from(response).getInt("record_count") > 0);
            List<Map<String, Object>> docs = JsonPath.from(response).getList("data");
            for (Map<String, Object> doc : docs) {
                assertTrue(doc.entrySet().stream().anyMatch(entry -> entry.getValue().toString().toLowerCase().contains(query.toLowerCase())),
                        doc.toString());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:29:45 GMT 2025
    - 19K bytes
    - Click Count (0)
Back to Top