Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for systemz (0.39 sec)

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

        private static final String DEFAULT_SCOPE = Config.getProperty( "jcifs.smb1.netbios.scope" );
    
        static final String OEM_ENCODING =
                    Config.getProperty( "jcifs.smb1.encoding",
                            System.getProperty( "file.encoding" ));
    
        public String name, scope;
        public int hexCode;
        int srcHashCode; /* srcHashCode must be set by name resolution
                          * routines before entry into addressCache
    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

            if ( this.scope == null ) {
                dst[ dstIndex ] = (byte) 0x00;
                return 1;
            }
    
            // copy new scope in
            dst[ dstIndex++ ] = (byte) '.';
            System.arraycopy(Strings.getOEMBytes(this.scope, this.config), 0, dst, dstIndex, this.scope.length());
            dstIndex += this.scope.length();
    
            dst[ dstIndex++ ] = (byte) 0x00;
    
    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