Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for lineTo (0.26 sec)

  1. src/main/java/org/codelibs/fess/util/ParameterUtil.java

                final String[] lines = value.split("[\r\n]");
                for (final String line : lines) {
                    if (StringUtil.isNotBlank(line)) {
                        final int pos = line.indexOf('=');
                        if (pos == 0) {
                            paramMap.put("unknown." + (unknownKey + 1), line.substring(pos + 1).trim());
                            unknownKey++;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

    .daterangepicker...
    CSS
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 7.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/io/LineIteratorTest.java

         */
        @Test
        public void testForEach() throws Exception {
            final StringReader reader = new StringReader("aaa\nbbb\nccc\n");
            for (final String line : LineIterator.iterable(reader)) {
                System.out.println(line);
            }
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/dict/synonym/SynonymFileTest.java

             assertEquals(3, itemList3.size());
    
             assertEquals(
                     "b1,b2=>B1" + Constants.LINE_SEPARATOR + "c1=>C1,C2"
                             + Constants.LINE_SEPARATOR + "X1,x1"
                             + Constants.LINE_SEPARATOR,
                     new String(FileUtil.getBytes(file1), Constants.UTF_8));
         }
         */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9K bytes
    - Viewed (0)
  5. 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
    
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jun 17 08:00:22 GMT 2017
    - 310 bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/util/Base64.java

    public class Base64 {
    
        private static final String ALPHABET =
                "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
    
        /**
         * Base-64 encodes the supplied block of data.  Line wrapping is not
         * applied on output.
         *
         * @param bytes The block of data that is to be Base-64 encoded.
         * @return A <code>String</code> containing the encoded data.
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.7K bytes
    - Viewed (0)
  7. dbflute_fess/dfprop/dependencyInjectionMap.dfprop

    # o rdbDiXmlResourceName: (NotRequired - Default 'rdb.xml')
    #
    # {CSharp} Quill(CSharp Seasar) Only:
    # o quillDataSourceName: (NotRequired - Default null)
    #
    # *The line that starts with '#' means comment-out.
    #
    map:{
        # ====================================================================================
        #                                                                               Spring
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 6.5K bytes
    - Viewed (0)
  8. dbflute_fess/dfprop/conditionBeanMap.dfprop

    #     }
    #     # This means that Date does not includes NotEqual at all tables.  
    #     ; Date = map:{
    #         ; NotEqual = map:{}
    #     }
    # }
    #
    # *The line that starts with '#' means comment-out.
    #
    map:{
        ; String = map:{
            # [Include]
            # String columns may not be needed
            # to be set these condition-keys basically.
            #; GreaterThan = map:{}
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 4K bytes
    - Viewed (0)
  9. dbflute_fess/dfprop/outsideSqlMap.dfprop

    # o sql2EntityOutputDirectory: (NotRequired - Default generateOutputDirectory)
    # o applicationOutsideSqlMap: (NotRequired - Default map:{})
    # o sqlPackage: (NotRequired - Default all packages)
    #
    # *The line that starts with '#' means comment-out.
    #
    map:{
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isGenerateProcedureParameterBean: (NotRequired - Default false)
        #   [true]
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/lang/StringUtil.java

    /**
     * {@link String}用のユーティリティクラスです。
     *
     * @author higa
     * @author shinsuke
     */
    public abstract class StringUtil {
    
        /**
         * A system line separator.
         */
        public static final String RETURN_STRING = System.getProperty("line.separator");
    
        /**
         * 空文字<code>""</code>です。
         */
        public static final String EMPTY = "";
    
        /**
         * 文字列型の空の配列です。
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.7K bytes
    - Viewed (0)
Back to top