Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Vints (0.17 sec)

  1. dbflute_fess/dfprop/databaseInfoMap.dfprop

            # o tableExceptList: (NotRequired - Default list:{})
            #  If you want to exclude some tables in generating target,
            #  you should specify the list of excepted table hints.
            #    e.g. list:{PRODUCT_STATUS ; prefix:TMP_}
            #  This is only for the main schema. Additional schemas are unconcerned.
            #  And ReplaceSchema task basically ignores this.
            #
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 7.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

            public IntervalRule(final String from, final String to, final String days, final long delay) {
                final int[] fints = parseTime(from);
                fromHours = fints[0];
                fromMinutes = fints[1];
                final int[] tints = parseTime(to);
                toHours = tints[0];
                toMinutes = tints[1];
                final String[] values = days.split(",");
                final List<Integer> list = new ArrayList<>();
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/DES.java

            0x10040000, 0x10001000, 0x10001040, 0x00000000,
            0x10041040, 0x00041000, 0x00041000, 0x00001040,
            0x00001040, 0x00040040, 0x10000000, 0x10041000
        };
    
    
     /// Squash bytes down to ints.
        public static void squashBytesToInts( byte[] inBytes, int inOff, int[] outInts,
                                               int outOff, int intLen ) {
    
            for ( int i = 0; i < intLen; ++i )
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/MD4.java

                tail[padLen + i] = (byte)((count * 8) >>> (8 * i));
    
            engineUpdate(tail, 0, tail.length);
    
            byte[] result = new byte[16];
            // cast this MD4's context (array of 4 ints) into an array of 16 bytes.
            for (int i = 0; i < 4; i++)
                for (int j = 0; j < 4; j++)
                    result[i * 4 + j] = (byte)(context[i] >>> (8 * j));
    
            // reset the engine
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9.3K bytes
    - Viewed (0)
Back to top