Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 84 for wereld (0.08 seconds)

  1. src/main/resources/fess_indices/_aws/fess.json

            },
            "dutch_keywords": {
              "type":       "keyword_marker",
              "keywords": ["hallo", "wereld", "zoeken"]
            },
            "dutch_stemmer": {
              "type":       "stemmer",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/_cloud/fess.json

            },
            "dutch_keywords": {
              "type":       "keyword_marker",
              "keywords": ["hallo", "wereld", "zoeken"]
            },
            "dutch_stemmer": {
              "type":       "stemmer",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/util/DocumentUtilTest.java

            assertEquals("hello", DocumentUtil.encodeUrl("hello"));
            assertEquals("hello-world", DocumentUtil.encodeUrl("hello-world"));
            assertEquals("hello_world", DocumentUtil.encodeUrl("hello_world"));
            assertEquals("hello.world", DocumentUtil.encodeUrl("hello.world"));
        }
    
        @Test
        public void test_encodeUrl_empty_and_null() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/util/BooleanFunctionTest.java

            BooleanFunction<String> startsWithHello = s -> s != null && s.startsWith("hello");
    
            assertTrue(startsWithHello.apply("hello world"));
            assertTrue(startsWithHello.apply("hello"));
            assertFalse(startsWithHello.apply("hi world"));
            assertFalse(startsWithHello.apply(""));
            assertFalse(startsWithHello.apply(null));
        }
    
        @Test
        public void test_method_reference() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRulePostProcess.java

                String formattedLeft = CollectionUtils.join("\n", keptAccessors.keySet());
                throw new RuntimeException("The following accessors were upgraded, but didn't match any removed/changed method:\n\n" + formattedLeft);
            }
    
            // Find accessors that were removed but shouldn't be
            Map<AccessorKey, ReplacedAccessor> removedAccessors = new HashMap<>(oldAccessorsOfUpgradedProperties);
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Aug 19 15:30:48 GMT 2024
    - 3.5K bytes
    - Click Count (0)
  6. .github/ISSUE_TEMPLATE/50_maintainer_chore.yml

          label: Context (optional)
          description: |
            How has this issue affected you? What are you trying to accomplish?
            Providing context helps us come up with a solution that is most useful in the real world
        validations:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Sep 12 11:52:53 GMT 2023
    - 856 bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/crawler/helper/FessMimeTypeHelperTest.java

                    return null;
                }
            });
    
            mimeTypeHelper.init();
    
            // Null config means no override
            try (InputStream is = new ByteArrayInputStream("Hello world".getBytes(StandardCharsets.UTF_8))) {
                assertEquals("text/plain", mimeTypeHelper.getContentType(is, "test.txt"));
            }
        }
    
        @Test
        public void test_init_singleMapping() throws IOException {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 24 09:06:33 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/helper/MarkdownRendererTest.java

            assertEquals("", markdownRenderer.render(""));
        }
    
        @Test
        public void test_render_plainText() {
            String result = markdownRenderer.render("Hello World");
            assertTrue(result.contains("Hello World"));
            assertTrue(result.contains("<p>"));
        }
    
        @Test
        public void test_render_bold() {
            String result = markdownRenderer.render("**bold text**");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  9. 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)
  10. .github/ISSUE_TEMPLATE/20_contributor_feature_request.yml

          description: |
            How has this issue affected you? What are you trying to accomplish? What other alternatives have you considered?
            Providing context helps us come up with a solution that is most useful in the real world
        validations:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Nov 27 15:48:22 GMT 2025
    - 1.5K bytes
    - Click Count (0)
Back to Top