Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for 13 (0.21 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

        private static final String VERSION_13_8 = "13.8";
    
        private static final String VERSION_13_9 = "13.9";
    
        private static final String VERSION_13_10 = "13.10";
    
        private static final String VERSION_13_11 = "13.11";
    
        private static final String VERSION_13_12 = "13.12";
    
        private static final String VERSION_13_13 = "13.13";
    
        private static final String VERSION_13_14 = "13.14";
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 46.9K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/plugins/form-validator/poland.js

    2,4,8,5,0,9,7,3,6,1,2,4,8],d=0,e=0;if(/(\d{14}|\d{9})/.test(a)&&(9===a.length||14===a.length)){for(var f=0;f<8;f++)d+=a[f]*b[f];if(d%11!==10&&(e=d%11),parseInt(a.charAt(8))===e){if(14!==a.length)return!0;for(d=0,f=0;f<13;f++)d+=a[f]*c[f];if(d%11!==10&&(e=d%11),parseInt(a.charAt(13))===e)return!0}}return!1},errorMessage:"",errorMessageKey:"badPlRegon"})}(a)});...
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 1.4K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/admin.js

        .first()
        .focus();
      $(".form-group .has-error")
        .first()
        .next("input,select,textarea")
        .focus();
    
      $("section.content input").keypress(function(e) {
        if (e.which === 13) {
          var $submitButton = $("input#submit, button#submit");
          if ($submitButton.size() > 0) {
            $submitButton[0].submit();
          }
          // ignore enter key down
          return false;
        }
      });
    
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Aug 06 20:44:47 GMT 2018
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java

                throw new NdrException("Unexpected ptype: " + ptype);
    
            if (ptype == 2 || ptype == 3) { /* Response or Fault */
                alloc_hint = buf.dec_ndr_long();
                buf.dec_ndr_short();        /* context id */
                buf.dec_ndr_short();        /* cancel count */
            }
            if (ptype == 3 || ptype == 13) {               /* Fault */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/DcerpcMessage.java

        }
    
    
        @Override
        public void decode ( NdrBuffer buf ) throws NdrException {
            decode_header(buf);
    
            if ( this.ptype != 12 && this.ptype != 2 && this.ptype != 3 && this.ptype != 13 )
                throw new NdrException("Unexpected ptype: " + this.ptype);
    
            if ( this.ptype == 2 || this.ptype == 3 ) { /* Response or Fault */
                this.alloc_hint = buf.dec_ndr_long();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5K bytes
    - Viewed (0)
  6. src/main/webapp/js/login.js

        .first()
        .focus();
      $(".form-group .has-error")
        .first()
        .next("input,select,textarea")
        .focus();
    
      $("section.content input").keypress(function(e) {
        var $submitButton;
        if (e.which === 13) {
          $submitButton = $("input#submit, button#submit");
          if ($submitButton.length > 0) {
            $submitButton[0].submit();
          }
          // ignore enter key down
          return false;
        }
      });
    
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Sep 12 06:47:49 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/pac/PacMac.java

            int ms_usage = keyusage;
            switch ( ms_usage ) {
            case 3:
                ms_usage = 8;
            case 9:
                ms_usage = 8;
            case 23:
                ms_usage = 13;
            }
            return ms_usage;
        }
    
    
        public static byte[] calculateMacHMACAES ( int usage, KerberosKey baseKey, byte[] input ) throws GeneralSecurityException {
            byte[] cst = new byte[] {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/EnumTest.java

                        // each entry 94 byte + 2 * name length
                        // = 128 byte per entry
                        try ( SmbResource r = f.resolve(String.format("%04x%s", i, repeat('X', 13))) ) {
                            r.createNewFile();
                        }
                    }
                    // == 5*128 = 640
    
                    // . and .. entries = 200 byte (includes alignment)
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/FileOperationsTest.java

                finally {
                    f.delete();
                }
            }
        }
    
    
        @Test
        public void testCopyFileLargeNoAlign () throws IOException {
            long length = 4096 * 16 * 1024 + 13;
            try ( SmbFile f = createTestFile();
                  SmbTreeHandle treeHandle = f.getTreeHandle() ) {
                // this is tremendously slow on SMB1
                try {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:17:59 GMT 2023
    - 16.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/util/MD4.java

            B = GG(B, C, D, A, X[13], 13);
            A = GG(A, B, C, D, X[ 2],  3);
            D = GG(D, A, B, C, X[ 6],  5);
            C = GG(C, D, A, B, X[10],  9);
            B = GG(B, C, D, A, X[14], 13);
            A = GG(A, B, C, D, X[ 3],  3);
            D = GG(D, A, B, C, X[ 7],  5);
            C = GG(C, D, A, B, X[11],  9);
            B = GG(B, C, D, A, X[15], 13);
    
            A = HH(A, B, C, D, X[ 0],  3);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9.3K bytes
    - Viewed (0)
Back to top