Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 45 for nello (0.03 seconds)

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

  1. src/test/java/org/codelibs/fess/dict/DictionaryFileTest.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)
  2. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

              "bromfiets=>bromfiets",
              "ei=>eier",
              "kind=>kinder"
            ]
          },
          "english_keywords": {
            "type":       "keyword_marker",
            "keywords":   ["hello"]
          },
          "finnish_stop": {
            "type":       "stop",
            "stopwords":  "_finnish_"
          },
          "finnish_keywords": {
            "type":       "keyword_marker",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Mar 24 12:55:37 GMT 2021
    - 57.4K bytes
    - Click Count (0)
  3. 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)
  4. 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)
  5. src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java

            assertNull(authenticator.decodeBase64(null));
        }
    
        @Test
        public void test_decodeBase64_standard() {
            // "Hello" encoded in standard Base64
            final byte[] result = authenticator.decodeBase64("SGVsbG8=");
            assertEquals("Hello", new String(result));
        }
    
        @Test
        public void test_decodeBase64_urlSafe() {
            // Base64 URL encoding (uses - and _ instead of + and /)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 11K bytes
    - Click Count (0)
  6. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

              "bromfiets=>bromfiets",
              "ei=>eier",
              "kind=>kinder"
            ]
          },
          "english_keywords": {
            "type":       "keyword_marker",
            "keywords":   ["hello"]
          },
          "finnish_stop": {
            "type":       "stop",
            "stopwords":  "_finnish_"
          },
          "finnish_keywords": {
            "type":       "keyword_marker",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 57.4K bytes
    - Click Count (1)
  7. src/test/java/org/codelibs/fess/api/chat/ChatApiManagerTest.java

        public void test_createSuccessResponse_basic() {
            final Map<String, Object> response = chatApiManager.createSuccessResponse("session-123", "Hello, world!", null);
    
            assertEquals("ok", response.get("status"));
            assertEquals("session-123", response.get("sessionId"));
            assertEquals("Hello, world!", response.get("content"));
            assertFalse(response.containsKey("sources"));
        }
    
        @Test
    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. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

            doc.put("title", "Test Doc");
            doc.put("url", "http://example.com");
            doc.put("content", "<p>Hello <b>world</b></p>");
            doc.put("content_description", "description");
            documents.add(doc);
    
            final String result = client.testBuildContext(documents);
            assertTrue(result.contains("Hello world"));
            assertFalse(result.contains("<p>"));
            assertFalse(result.contains("<b>"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            final Map<String, Object> doc = new LinkedHashMap<>();
            doc.put("url", "https://example.com/page.html");
            doc.put("title", "Test Page");
            doc.put("content", "Hello World");
            setupMockComponents(Collections.singletonList(doc));
    
            final String result = indexExportJob.execute();
    
            assertEquals("Exported 1 documents.", result);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java

        @Test
        public void test_execute_withPhraseQuery() {
            // Test executing BoostQuery with a PhraseQuery inside
            PhraseQuery.Builder builder = new PhraseQuery.Builder();
            builder.add(new Term("field", "hello"));
            builder.add(new Term("field", "world"));
            PhraseQuery phraseQuery = builder.build();
            BoostQuery boostQuery = new BoostQuery(phraseQuery, 1.5f);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17K bytes
    - Click Count (0)
Back to Top