Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for 14 (0.12 sec)

  1. src/main/java/jcifs/internal/smb1/net/NetShareEnumResponse.java

            for ( int i = 0; i < getNumEntries(); i++ ) {
                results[ i ] = e = new SmbShareInfo();
                e.netName = readString(buffer, bufferIndex, 13, false);
                bufferIndex += 14;
                e.type = SMBUtil.readInt2(buffer, bufferIndex);
                bufferIndex += 2;
                int off = SMBUtil.readInt4(buffer, bufferIndex);
                bufferIndex += 4;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int SECURITY_USER  = 0x01;
    
        static final int CMD_OFFSET        = 4;
        static final int ERROR_CODE_OFFSET = 5;
        static final int FLAGS_OFFSET      = 9;
        static final int SIGNATURE_OFFSET  = 14;
        static final int TID_OFFSET        = 24;
        static final int HEADER_LENGTH     = 32;
    
        static final long MILLISECONDS_BETWEEN_1970_AND_1601 = 11644473600000L;
        static final TimeZone TZ = TimeZone.getDefault();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NodeStatusResponse.java

            boolean isActive;
            boolean isPermanent;
            int j;
            boolean addrFound = false;
    
            for ( int i = 0; i < this.numberOfNames; srcIndex += 18, i++ ) {
                for ( j = srcIndex + 14; src[ j ] == 0x20; j-- );
                n = Strings.fromOEMBytes(src, srcIndex, j - srcIndex + 1, this.config);
                hexCode = src[ srcIndex + 15 ] & 0xFF;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.9K bytes
    - Viewed (0)
  4. deps.xml

    	<property name="thumbnail.dir" value="${basedir}/src/main/webapp/WEB-INF/env/thumbnail" />
    	<property name="site.dir" value="${basedir}/src/main/webapp/WEB-INF/site" />
    	<property name="kopf.branch" value="fess-14" />
    
    	<!-- Maven Repository -->
    	<property name="maven.snapshot.repo.url" value="https://oss.sonatype.org/content/repositories/snapshots" />
    	<property name="maven.release.repo.url" value="https://repo1.maven.org/maven2" />
    
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:44:26 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/Name.java

            if ( n == null ) {
                n = "null";
            }
            else if ( n.charAt(0) == 0x01 ) {
                char c[] = n.toCharArray();
                c[ 0 ] = '.';
                c[ 1 ] = '.';
                c[ 14 ] = '.';
                n = new String(c);
            }
    
            sb.append(n).append("<").append(Hexdump.toHexString(this.hexCode, 2)).append(">");
            if ( this.scope != null ) {
    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)
  6. src/main/java/jcifs/SmbConstants.java

        static final int SECURITY_USER = 0x01;
    
        static final int CMD_OFFSET = 4;
        static final int ERROR_CODE_OFFSET = 5;
        static final int FLAGS_OFFSET = 9;
        static final int SIGNATURE_OFFSET = 14;
        static final int TID_OFFSET = 24;
        static final int SMB1_HEADER_LENGTH = 32;
    
        static final long MILLISECONDS_BETWEEN_1970_AND_1601 = 11644473600000L;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java

            boolean isPermanent;
            int j;
            boolean addrFound = false;
    
            try {
                for( int i = 0; i < numberOfNames; srcIndex += 18, i++ ) {
                    for( j = srcIndex + 14; src[j] == 0x20; j-- )
                        ;
                    n = new String( src, srcIndex, j - srcIndex + 1, Name.OEM_ENCODING );
                    hexCode          =    src[srcIndex + 15] & 0xFF;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/UUID.java

        public UUID ( String str ) {
            char[] arr = str.toCharArray();
            this.time_low = hex_to_bin(arr, 0, 8);
            this.time_mid = S(hex_to_bin(arr, 9, 4));
            this.time_hi_and_version = S(hex_to_bin(arr, 14, 4));
            this.clock_seq_hi_and_reserved = B(hex_to_bin(arr, 19, 2));
            this.clock_seq_low = B(hex_to_bin(arr, 21, 2));
            this.node = new byte[6];
            this.node[ 0 ] = B(hex_to_bin(arr, 24, 2));
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
Back to top