Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 120 for seront (0.04 seconds)

  1. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

            logger.info("item: {}", item);
            assertTrue(item.containsKey("content_title"));
            final String contentTitle = (String) item.get("content_title");
            assertTrue(contentTitle.contains("<strong>CodeLibs</strong>"),
                    "content_title should contain highlighted 'CodeLibs': " + contentTitle);
        }
    
        private void testDeleteSearchList() {
            final Map<String, Object> requestBody = new HashMap<>();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:01:34 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/DocumentUtilTest.java

        }
    
        @Test
        public void test_first_element_from_list() {
            Map<String, Object> doc = new HashMap<>();
            List<String> list = Arrays.asList("first", "second", "third");
            doc.put("key", list);
    
            assertEquals("first", DocumentUtil.getValue(doc, "key", String.class));
    
            List<String> numList = Arrays.asList("123", "456", "789");
    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)
  3. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

            events.add(new LogNotificationEvent(base + 1000, "WARN", "org.test.B", "second", null));
            events.add(new LogNotificationEvent(base + 2000, "ERROR", "org.test.C", "third", null));
    
            String details = testableJob.testFormatDetails(events);
    
            int posFirst = details.indexOf("first");
            int posSecond = details.indexOf("second");
            int posThird = details.indexOf("third");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            // Multiple quoted values - quotes are removed
            value = "\"first\",\"second\",\"third\"";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(3, result.length);
            assertEquals("first", result[0]);
            assertEquals("second", result[1]);
            assertEquals("\"third\"", result[2]);
    
            // Mixed quoted and unquoted - quotes are removed from quoted values
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  5. src/main/resources/fess_indices/fess/gl/stopwords.txt

    nos
    nosa
    nosas
    noso
    nosos
    nós
    nun
    nunha
    nuns
    nunhas
    o
    os
    ou
    ó
    ós
    para
    pero
    pode
    pois
    pola
    polas
    polo
    polos
    por
    que
    se
    senón
    ser
    seu
    seus
    sexa
    sido
    sobre
    súa
    súas
    tamén
    tan
    te
    ten
    teñen
    teño
    ter
    teu
    teus
    ti
    tido
    tiña
    tiven
    túa
    túas
    un
    unha
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 932 bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

            }
    
            /**
             * Compares two times.
             *
             * @param h1 the first hour
             * @param m1 the first minute
             * @param h2 the second hour
             * @param m2 the second minute
             * @return positive if first time is earlier, 0 if equal, negative if later
             */
            protected int compareTime(final int h1, final int m1, final int h2, final int m2) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Nov 23 12:34:02 GMT 2025
    - 10K bytes
    - Click Count (0)
  7. src/main/resources/fess_indices/fess/id/stopwords.txt

    sekarang
    sekarang
    sekitar
    sekitarnya
    sela
    selain
    selalu
    seluruh
    seluruhnya
    semakin
    sementara
    sempat
    semua
    semuanya
    sendiri
    sendirinya
    seolah
    seperti
    sepertinya
    sering
    seringnya
    serta
    siapa
    siapakah
    siapapun
    disini
    disinilah
    sini
    sinilah
    sesuatu
    sesuatunya
    suatu
    sesudah
    sesudahnya
    sudah
    sudahkah
    sudahlah
    supaya
    tadi
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 2.8K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/validation/CustomSizeTest.java

            assertEquals("Second group should be AnotherTestGroup", AnotherTestGroup.class, multiAnnotation.groups()[1]);
    
            assertEquals("Should have 2 payloads", 2, multiAnnotation.payload().length);
            assertEquals("First payload should be TestPayload", TestPayload.class, multiAnnotation.payload()[0]);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/crawler/serializer/DataSerializerTest.java

         */
        @Test
        public void test_serializeDeserialize_linkedHashMap() {
            LinkedHashMap<String, Object> original = new LinkedHashMap<>();
            original.put("first", 1);
            original.put("second", 2);
            original.put("third", 3);
    
            byte[] serialized = serializer.fromObjectToBinary(original);
            assertNotNull(serialized, "Serialized data should not be null");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 21.6K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java

            assertTrue(pattern.match("/test/path"));
    
            // Should match second included path
            assertTrue(pattern.match("/another/path"));
    
            // Should not match first excluded path
            assertFalse(pattern.match("/exclude/path"));
    
            // Should not match second excluded path
            assertFalse(pattern.match("/deny/path"));
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 12.7K bytes
    - Click Count (0)
Back to Top