Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for P256 (0.18 sec)

  1. src/main/java/jcifs/smb/SID.java

            else
                id = Long.parseLong(tmp);
    
            this.identifier_authority = new byte[6];
            for ( int i = 5; id > 0; i-- ) {
                this.identifier_authority[ i ] = (byte) ( id % 256 );
                id >>= 8;
            }
    
            this.sub_authority_count = (byte) st.countTokens();
            if ( this.sub_authority_count > 0 ) {
                this.sub_authority = new int[this.sub_authority_count];
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/ReadWriteTest.java

            // regular nextBytes is not reproducible if the reads are not aligned
            for ( int i = 0; i < buffer.length; i++ ) {
                buffer[ i ] = (byte) r.nextInt(256);
            }
    
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/NetworkExplorer.java

            out.println("</td></tr></table>");
            out.println("</BODY></HTML>");
            out.close();
        }
    
    
        private static String parseServerAndShare ( String pathInfo ) {
            char[] out = new char[256];
            char ch;
            int len, p, i;
    
            if ( pathInfo == null ) {
                return null;
            }
            len = pathInfo.length();
    
            p = i = 0;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 21.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

                    uee.printStackTrace( log );
            }
    
            return dstIndex - start;
        }
        String readString( byte[] src, int srcIndex ) {
            return readString( src, srcIndex, 256, useUnicode );
        }
        String readString( byte[] src, int srcIndex, int maxLen, boolean useUnicode ) {
            int len = 0;
            String str = null;
            try {
                if( useUnicode ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 21K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/http/NetworkExplorer.java

            out.println( "</td></tr></table>" );
            out.println( "</BODY></HTML>" );
            out.close();
        }
        private String parseServerAndShare( String pathInfo ) {
            char[] out = new char[256];
            char ch;
            int len, p, i;
    
            if( pathInfo == null ) {
                return null;
            }
            len = pathInfo.length();
    
            p = i = 0;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 22 03:57:31 GMT 2020
    - 19.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SID.java

            else
                id = Long.parseLong(tmp);
    
            this.identifier_authority = new byte[6];
            for (int i = 5; id > 0;  i--) {
                this.identifier_authority[i] = (byte) (id % 256);
                id >>= 8;
            }
    
            this.sub_authority_count = (byte) st.countTokens();
            if (this.sub_authority_count > 0) {
                this.sub_authority = new int[this.sub_authority_count];
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/moment-with-locales.min.js

    -]?\d{6}/,B=/\d\d?/,q=/\d\d\d\d?/,Q=/\d\d\d\d\d\d?/,X=/\d{1,3}/,ee=/\d{1,4}/,ae=/[+-]?\d{1,6}/,te=/\d+/,se=/[+-]?\d+/,ne=/Z|[+-]\d\d:?\d\d/gi,de=/Z|[+-]\d\d(?::?\d\d)?/gi,re=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,_e={};function ie(e,t,s){_e[e]=H(t)?t:function(e,a){return e&&s?s:t}}function oe(e,a){return h(_e,e)?_e[e](a._strict,a._locale):new RegExp(me(e.replace("\\","").replace(/\\(\...
    JavaScript
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Jul 12 13:18:07 GMT 2018
    - 319K bytes
    - Viewed (4)
Back to top