Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 53 for mellom (0.03 seconds)

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

  1. src/test/java/org/codelibs/fess/util/OptionalUtilTest.java

            String testValue = "HELLO WORLD";
            OptionalEntity<String> result = OptionalUtil.ofNullable(testValue);
    
            assertTrue(result.isPresent());
    
            // Test that we can chain operations
            String processed = result.map(s -> s.toLowerCase()).orElse("default");
    
            assertEquals("hello world", processed);
    
            // Test with null value
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.3K bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/fess/es/stopwords.txt

    sí
    porque
    esta
    entre
    cuando
    muy
    sin
    sobre
    también
    me
    hasta
    hay
    donde
    quien
    desde
    todo
    nos
    durante
    todos
    uno
    les
    ni
    contra
    otros
    ese
    eso
    ante
    ellos
    e
    esto
    mí
    antes
    algunos
    qué
    unos
    yo
    otro
    otras
    otra
    él
    tanto
    esa
    estos
    mucho
    quienes
    nada
    muchos
    cual
    poco
    ella
    estar
    estas
    algunas
    algo
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 2.2K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java

        @Test
        public void test_evaluate_multipleParameterTypes() {
            final Map<String, Object> params = new HashMap<>();
            params.put("str", "hello");
            params.put("num", 42);
            params.put("bool", true);
            params.put("dbl", 3.14);
    
            assertEquals("hello", groovyEngine.evaluate("return str", params));
            assertEquals(42, groovyEngine.evaluate("return num", params));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:03:38 GMT 2026
    - 29.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/crawler/transformer/FessStandardTransformerTest.java

        // Additional test for coverage
        @Test
        public void test_additionalCoverage() {
            int a = 5;
            int b = 10;
            int sum = a + b;
            assertEquals(15, sum);
    
            String str = "Hello";
            assertTrue(str.startsWith("H"));
            assertTrue(str.endsWith("o"));
            assertEquals(5, str.length());
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/dict/mapping/CharMappingCreatorTest.java

        // Additional test for coverage
        @Test
        public void test_additionalCoverage() {
            int a = 5;
            int b = 10;
            int sum = a + b;
            assertEquals(15, sum);
    
            String str = "Hello";
            assertTrue(str.startsWith("H"));
            assertTrue(str.endsWith("o"));
            assertEquals(5, str.length());
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsCreatorTest.java

        // Additional test for coverage
        @Test
        public void test_additionalCoverage() {
            int a = 5;
            int b = 10;
            int sum = a + b;
            assertEquals(15, sum);
    
            String str = "Hello";
            assertTrue(str.startsWith("H"));
            assertTrue(str.endsWith("o"));
            assertEquals(5, str.length());
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/ingest/IngesterTest.java

        // Additional test for coverage
        @Test
        public void test_additionalCoverage() {
            int a = 5;
            int b = 10;
            int sum = a + b;
            assertEquals(15, sum);
    
            String str = "Hello";
            assertTrue(str.startsWith("H"));
            assertTrue(str.endsWith("o"));
            assertEquals(5, str.length());
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/llm/LlmChatRequestTest.java

        }
    
        @Test
        public void test_fluentBuilding() {
            final LlmChatRequest request = new LlmChatRequest().addSystemMessage("You are a helpful assistant")
                    .addUserMessage("Hello!")
                    .addAssistantMessage("Hi there!")
                    .addUserMessage("How are you?")
                    .setModel("llama3")
                    .setMaxTokens(500)
                    .setTemperature(0.5)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/entity/ChatSessionTest.java

            final LocalDateTime beforeAdd = session.getLastAccessedAt();
    
            final ChatMessage message = ChatMessage.userMessage("Hello");
            session.addMessage(message);
    
            assertEquals(1, session.getMessages().size());
            assertEquals("Hello", session.getMessages().get(0).getContent());
            assertTrue(session.getLastAccessedAt().isAfter(beforeAdd) || session.getLastAccessedAt().isEqual(beforeAdd));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 01:53:06 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java

            InvertibleCryptographer cryptographer = securityResourceProvider.providePrimaryInvertibleCryptographer();
            assertNotNull(cryptographer);
    
            String plainText = "Hello, World!";
            String encrypted = cryptographer.encrypt(plainText);
            assertNotNull(encrypted);
            assertFalse(plainText.equals(encrypted));
    
            String decrypted = cryptographer.decrypt(encrypted);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.2K bytes
    - Click Count (0)
Back to Top