Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for delimiter (0.21 sec)

  1. src/main/java/jcifs/internal/util/StringUtil.java

         * 
         * @param delimiter
         * @param elements
         * @return elements separated by delimiter
         */
        public static String join ( CharSequence delimiter, CharSequence... elements ) {
            StringBuilder sb = new StringBuilder();
            for ( CharSequence element : elements ) {
                if ( sb.length() > 0 ) {
                    if ( delimiter != null ) {
                        sb.append(delimiter);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.6K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/documentMap.dfprop

        #  If the alias exists in its DB comment like as follows:
        #    member name : The name of member's full name
        #  you can use the alias in DBFlute world, java-doc, SchemaHTML...
        #  DB comment which does not have the delimiter is not treated
        #  as alias, treated as description (real comment).
        #  But you can change it by 'isDbCommentOnAliasBasis'.
        #
        #; aliasDelimiterInDbComment = :
        # - - - - - - - - - -/
    
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

     * be URL encoded if it contains reserved characters. According to RFC 2396
     * these characters are non US-ASCII characters and most meta characters
     * however jCIFS will work correctly with anything but '@' which is used
     * to delimit the userinfo component from the server and '%' which is the
     * URL escape character itself.
     * <p>
     * The server
     * component may a traditional NetBIOS name, a DNS name, or IP
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * be URL encoded if it contains reserved characters. According to RFC 2396
     * these characters are non US-ASCII characters and most meta characters
     * however jCIFS will work correctly with anything but '@' which is used
     * to delimit the userinfo component from the server and '%' which is the
     * URL escape character itself.
     * <p>
     * The server
     * component may a traditional NetBIOS name, a DNS name, or IP
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top