Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 95 for Char (0.12 sec)

  1. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

         */
        protected static String toPlainPattern(final String pattern) {
            final StringBuilder buf = new StringBuilder(pattern.length());
            for (int i = 0; i < pattern.length(); ++i) {
                final char ch = pattern.charAt(i);
                if (Character.isLetterOrDigit(ch) || Character.isWhitespace(ch)) {
                    buf.append(ch);
                }
            }
            if (buf.indexOf("yy") == -1) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 22.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Hexdump.java

         */
        public static String toHexString ( int val, int size ) {
            char[] c = new char[size];
            toHexChars(val, c, 0, size);
            return new String(c);
        }
    
    
        /**
         * @param val
         * @param size
         * @return hex string
         */
        public static String toHexString ( long val, int size ) {
            char[] c = new char[size];
            toHexChars(val, c, 0, size);
            return new String(c);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/Lmhosts.java

                    }
                }
                else if ( Character.isDigit(line.charAt(0)) ) {
                    char[] data = line.toCharArray();
                    int ip, i, j;
                    Name name;
                    NbtAddress addr;
                    char c;
    
                    c = '.';
                    ip = i = 0;
                    for ( ; i < data.length && c == '.'; i++ ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.1K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/EnumTest.java

                finally {
    
                    String[] s = ((SmbFile)f).list();
    
                    f.delete();
                }
            }
        }
    
        private static String repeat ( char c, int n ) {
            char chs[] = new char[n];
            for ( int i = 0; i < n; i++ ) {
                chs[ i ] = c;
            }
            return new String(chs);
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/util/Encdec.java

            return di - start;
        }
        public static String dec_utf8( byte[] src, int si, int slim ) throws IOException {
            char[] uni = new char[slim - si];
            int ui, ch;
    
            for( ui = 0; si < slim && (ch = src[si++] & 0xFF) != 0; ui++ ) {
                if( ch < 0x80 ) {
                    uni[ui] = (char)ch;
                } else if((ch & 0xE0) == 0xC0 ) {
                    if((slim - si) < 2 ) {
                        break;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 10.9K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess.json

              ]
            },
            "empty_analyzer": {
              "type": "custom",
              "tokenizer": "standard",
              "char_filter": [
                "removeall_filter"
              ]
            },
            "minhash_analyzer": {
              "type": "custom",
              "char_filter": [
                "mapping_ja_filter"
              ],
              "tokenizer": "standard",
              "filter": [
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  7. src/main/java/jcifs/pac/PacDataInputStream.java

                throw new PACDecodingException("Malformed string in PAC");
    
            this.dis.skip(unusedChars * 2);
            char[] chars = new char[usedChars];
            for ( int l = 0; l < usedChars; l++ )
                chars[ l ] = (char) readShort();
    
            return new String(chars);
        }
    
    
        public SID readId () throws IOException, PACDecodingException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 21 21:19:58 GMT 2018
    - 5.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/rpc.idl

    interface rpc
    {
    	/* base types */
    
    	typedef unsigned char uint8_t;
    	typedef unsigned short uint16_t;
    	typedef unsigned int uint32_t;
    
    	/* dce */
    
    	typedef struct {
    	    uint32_t time_low;
    	    uint16_t time_mid;
    	    uint16_t time_hi_and_version;
    	    uint8_t clock_seq_hi_and_reserved;
    	    uint8_t clock_seq_low;
    	    uint8_t node[6];
    	} uuid_t;
    
    	/* win32 stuff */
    
    	typedef struct {
    		uint32_t type;
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/UnicodeString.java

            }
        }
    
    
        @Override
        public String toString () {
            int len = this.length / 2 - ( this.zterm ? 1 : 0 );
            char[] ca = new char[len];
            for ( int i = 0; i < len; i++ ) {
                ca[ i ] = (char) this.buffer[ i ];
            }
            return new String(ca, 0, len);
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/util/KuromojiCSVUtil.java

    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    
    /**
     * Utility class for parsing CSV text
     */
    public final class KuromojiCSVUtil {
        private static final char QUOTE = '"';
    
        private static final char COMMA = ',';
    
        private static final Pattern QUOTE_REPLACE_PATTERN = Pattern.compile("^\"([^\"]+)\"$");
    
        private static final String ESCAPED_QUOTE = "\"\"";
    
        private KuromojiCSVUtil() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.9K bytes
    - Viewed (0)
Back to top