Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Isabel (0.17 sec)

  1. src/main/java/jcifs/smb1/netbios/Name.java

            } catch( UnsupportedEncodingException uee ) {
            }
            dstIndex += scope.length();
    
            dst[dstIndex++] = (byte)0x00;
    
            // now go over scope backwards converting '.' to label length
    
            int i = dstIndex - 2;
            int e = i - scope.length();
            int c = 0;
    
            do {
                if( dst[i] == '.' ) {
                    dst[i] = (byte)c;
                    c = 0;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/Name.java

            dstIndex += this.scope.length();
    
            dst[ dstIndex++ ] = (byte) 0x00;
    
            // now go over scope backwards converting '.' to label length
    
            int i = dstIndex - 2;
            int e = i - this.scope.length();
            int c = 0;
    
            do {
                if ( dst[ i ] == '.' ) {
                    dst[ i ] = (byte) c;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.7K bytes
    - Viewed (0)
Back to top