Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 9 of 9 for tots (0.01 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/resources/fess_message_fr.properties

    errors.failed_to_download_protwords_file = Échec du téléchargement d'un fichier de mots de protection.
    errors.failed_to_upload_protwords_file = Échec du téléversement d'un fichier de mots de protection.
    errors.failed_to_download_stopwords_file = Échec du téléchargement d'un fichier de mots vides.
    errors.failed_to_upload_stopwords_file = Échec du téléversement d'un fichier de mots vides.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 14.1K bytes
    - Click Count (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         */
        @Min(-1)
        @Max(100000)
        @ValidateTypeFailure
        public Integer purgeUserInfoDay;
    
        /**
         * Bot user agents whose search logs should be purged.
         * Search logs from these bots will be automatically removed.
         */
        @Size(max = 10000)
        public String purgeByBots;
    
        /**
         * Email addresses to receive system notifications.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  8. 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)
  9. 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)
Back to Top