Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 180 for character (0.04 sec)

  1. src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java

        public static class Config {
    
            /**
             * Array of parsed configuration values split by pipe character and trimmed.
             */
            private final String[] values;
    
            /**
             * Constructs a new Config instance by parsing the provided configuration value.
             * The value is split by pipe character (|) and each part is trimmed.
             *
             * @param value the configuration value string to parse
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CsvExtractor.java

                throw new ExtractException("Failed to parse CSV content", e);
            }
        }
    
        /**
         * Detects the delimiter character from a CSV line.
         *
         * @param line the CSV line to analyze
         * @return the detected delimiter character
         */
        protected Character detectDelimiter(final String line) {
            final char[] candidates = { ',', '\t', ';', '|' };
            int maxCount = 0;
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/Hexdump.java

                }
                size--;
            }
        }
    
        /**
         * Converts a long value to hexadecimal characters and writes them to the specified character array.
         *
         * @param val the long value to convert to hexadecimal characters
         * @param dst the destination character array to write the hex digits into
         * @param dstIndex the starting index in the destination array
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/exception/UnsupportedEncodingRuntimeException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.exception;
    
    import java.io.UnsupportedEncodingException;
    
    /**
     * Signals that a character encoding is not supported.
     * @author shinsuke
     */
    public class UnsupportedEncodingRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        /**
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKana.java

            }
            return c;
        }
    
        /**
         * Merges two characters, handling voiced and semi-voiced sound marks.
         * @param c1 The first character.
         * @param c2 The second character.
         * @return The merged character.
         */
        public static char mergeChar(final char c1, final char c2) {
            if (c2 == '゙') {
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 17 14:23:01 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/CharUtilTest.java

            for (char c : validChars.toCharArray()) {
                assertTrue("Character '" + c + "' should be a valid URL character", CharUtil.isUrlChar(c));
            }
        }
    
        public void test_isUrlChar_boundaryChars() {
            // Test boundary characters for ranges
            assertTrue(CharUtil.isUrlChar('a')); // first lowercase
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

     *       to extract child URLs.</li>
     *   <li><b>defaultEncoding:</b> The default character encoding to use if none is
     *       specified in the HTML content.</li>
     *   <li><b>preloadSizeForCharset:</b> The number of bytes to read from the input
     *       stream to determine the character set encoding.</li>
     *   <li><b>invalidUrlPattern:</b> A regular expression pattern used to identify
     *       invalid URLs.</li>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 29 07:42:33 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

        }
    
        /**
         * Determines the character set for the given file.
         * Currently returns the default charset configured for this client.
         *
         * @param file The file to determine the charset for
         * @return The character set name
         */
        protected String getCharSet(final File file) {
            return charset;
        }
    
        /**
         * Gets the character encoding used for FTP operations.
         *
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 40K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess/zh-tw/stopwords.txt

    #
    &
    ^
    $
    @
    !
    ~
    :
    ;
    +
    /
    \
    《
    》
    —
    -
    ,
    。
    、
    :
    ;
    !
    ·
    ?
    “
    ”
    )
    (
    【
    】
    [
    ]
    ●
    # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese)
     
    
    # English Stop Words
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Jun 17 08:00:22 UTC 2017
    - 310 bytes
    - Viewed (0)
  10. src/main/java/jcifs/util/Hexdump.java

                }
                size--;
            }
        }
    
        /**
         * Converts a long value to hexadecimal characters and writes them to the specified character array.
         *
         * @param val the long value to convert to hexadecimal characters
         * @param dst the destination character array to write the hex digits into
         * @param dstIndex the starting index in the destination array
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.3K bytes
    - Viewed (0)
Back to top