Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for heille (0.04 sec)

  1. src/main/resources/fess_indices/fess/fi/stopwords.txt

    hänestä
    häneen
    hänellä
    häneltä
    hänelle
    me
    meidän
    meidät
    meitä
    meissä
    meistä
    meihin
    meillä
    meiltä
    meille
    te
    teidän
    teidät
    teitä
    teissä
    teistä
    teihin
    teillä
    teiltä
    teille
    he
    heidän
    heidät
    heitä
    heissä
    heistä
    heihin
    heillä
    heiltä
    heille
    tämä
    tämän
    tätä
    tässä
    tästä
    tähän
    tallä
    tältä
    tälle
    tänä
    täksi
    tuo
    tuon
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/no/stopwords.txt

    alle
    vil
    bli
    ble
    blei
    blitt
    kunne
    inn
    når
    være
    kom
    noen
    noe
    ville
    dere
    som
    deres
    kun
    ja
    etter
    ned
    skulle
    denne
    for
    deg
    si
    sine
    sitt
    mot
    å
    meget
    hvorfor
    dette
    disse
    uten
    hvordan
    ingen
    din
    ditt
    blir
    samme
    hvilken
    hvilke
    sånn
    inni
    mellom
    vår
    hver
    hvem
    vors
    hvis
    både
    bare
    enn
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 994 bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/util/StringUtilTest.java

        void testJoinSingleElement() {
            String result = StringUtil.join(",", "hello");
            assertEquals("hello", result);
        }
    
        @Test
        @DisplayName("Should join two elements with delimiter")
        void testJoinTwoElements() {
            String result = StringUtil.join(",", "hello", "world");
            assertEquals("hello,world", result);
        }
    
        @Test
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/lang/FieldUtilTest.java

        /** */
        public int intField;
    
        /** */
        public String stringField;
    
        /** */
        public static final int INT_DATA = 987654321;
    
        /** */
        public static final String STRING_DATA = "Hello World!";
    
        /**
         * @throws Exception
         */
        @Test
        public void testGet() throws Exception {
            final Field field = getClass().getField("objectField");
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Fri Jun 20 13:40:57 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  5. fess-crawler/src/test/resources/extractor/markdown/test.md

    - Lists and other formatting
    
    ### Code Examples
    
    Here is some inline `code` and a code block:
    
    ```java
    public class Example {
        public static void main(String[] args) {
            System.out.println("Hello, World!");
        }
    }
    ```
    
    ## Links
    
    Check out [Fess Crawler](https://github.com/codelibs/fess-crawler) for more information.
    
    ## Conclusion
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 767 bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStreamTest.java

            byte[] data = "Hello World".getBytes();
            InputStream underlyingStream = new ByteArrayInputStream(data);
            IgnoreCloseInputStream stream = new IgnoreCloseInputStream(underlyingStream);
    
            byte[] buffer = new byte[5];
            int bytesRead = stream.read(buffer);
    
            assertEquals(5, bytesRead);
            assertEquals("Hello", new String(buffer));
        }
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/dcerpc/UnicodeStringTest.java

            }
            assertEquals(0, unicodeStringTrue.buffer[testStringTrue.length()], "Last character should be zero");
    
            // Test with a non-empty string and zterm = false
            String testStringFalse = "Hello";
            UnicodeString unicodeStringFalse = new UnicodeString(testStringFalse, false);
            assertFalse(unicodeStringFalse.zterm, "zterm should be false");
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/fess/fr/stopwords.txt

    # https://github.com/apache/lucene-solr/blob/master/lucene/analysis/common/src/resources/org/apache/lucene/analysis/snowball/french_stop.txt
    au
    aux
    avec
    ce
    ces
    dans
    de
    des
    du
    elle
    en
    et
    eux
    il
    je
    la
    le
    leur
    lui
    ma
    mais
    me
    même
    mes
    moi
    mon
    ne
    nos
    notre
    nous
    on
    ou
    par
    pas
    pour
    qu
    que
    qui
    sa
    se
    ses
    son
    sur
    ta
    te
    tes
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 977 bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/SMBProtocolDecodingExceptionTest.java

            assertTrue(thrown instanceof CIFSException, "Thrown instance should also be CIFSException subtype");
        }
    
        @ParameterizedTest
        @NullAndEmptySource
        @ValueSource(strings = { "hello", " ", "unicode-∑" })
        @DisplayName("Message-only constructor: preserves provided message; null cause")
        void messageOnlyConstructor_preservesMessage(String message) {
            // Arrange & Act
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TextExtractorEnhancedTest.java

        }
    
        /**
         * Test extraction with various Unicode characters.
         */
        public void test_getText_unicodeContent_extractsCorrectly() {
            final String unicodeContent = "Hello 世界 مرحبا мир שלום";
            final InputStream in = new ByteArrayInputStream(unicodeContent.getBytes());
    
            final ExtractData result = textExtractor.getText(in, null);
    
            assertNotNull(result);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top