Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 208 for 0x90 (0.14 sec)

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

                    for( j = srcIndex + 14; src[j] == 0x20; j-- )
                        ;
                    n = new String( src, srcIndex, j - srcIndex + 1, Name.OEM_ENCODING );
                    hexCode          =    src[srcIndex + 15] & 0xFF;
                    groupName        = (( src[srcIndex + 16] & 0x80 ) == 0x80 ) ? true : false;
                    ownerNodeType    =  ( src[srcIndex + 16] & 0x60 ) >> 5;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6K bytes
    - Viewed (0)
  2. src/archive/tar/strconv.go

    	for _, c := range s {
    		if c >= 0x80 || c == 0x00 {
    			return false
    		}
    	}
    	return true
    }
    
    // toASCII converts the input to an ASCII C-style string.
    // This is a best effort conversion, so invalid characters are dropped.
    func toASCII(s string) string {
    	if isASCII(s) {
    		return s
    	}
    	b := make([]byte, 0, len(s))
    	for _, c := range s {
    		if c < 0x80 && c != 0x00 {
    			b = append(b, byte(c))
    		}
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v1_gen.go

    	zb0001Len := uint32(7)
    	var zb0001Mask uint8 /* 7 bits */
    	_ = zb0001Mask
    	if z.Index == nil {
    		zb0001Len--
    		zb0001Mask |= 0x20
    	}
    	if z.Checksums == nil {
    		zb0001Len--
    		zb0001Mask |= 0x40
    	}
    	// variable map header, size zb0001Len
    	err = en.Append(0x80 | uint8(zb0001Len))
    	if err != nil {
    		return
    	}
    	if zb0001Len == 0 {
    		return
    	}
    	// write "ETag"
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 40.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java

         * 
         */
        public static final int FILE_NOTIFY_CHANGE_LAST_WRITE = 0x10;
        /**
         * 
         */
        public static final int FILE_NOTIFY_CHANGE_LAST_ACCESS = 0x20;
        /**
         * 
         */
        public static final int FILE_NOTIFY_CHANGE_CREATION = 0x40;
        /**
         * 
         */
        public static final int FILE_NOTIFY_CHANGE_EA = 0x80;
        /**
         * 
         */
    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)
  5. src/main/java/jcifs/internal/smb2/Smb2Constants.java

        /**
         * 
         */
        public static final int SMB2_GLOBAL_CAP_PERSISTENT_HANDLES = 0x10;
    
        /**
         * 
         */
        public static final int SMB2_GLOBAL_CAP_DIRECTORY_LEASING = 0x20;
    
        /**
         * 
         */
        public static final int SMB2_GLOBAL_CAP_ENCRYPTION = 0x40;
    
        /**
         * 
         */
        public static final byte SMB2_0_INFO_FILE = 1;
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/spnego/NegTokenInit.java

     */
    @SuppressWarnings ( "javadoc" )
    public class NegTokenInit extends SpnegoToken {
    
        public static final int DELEGATION = 0x80;
        public static final int MUTUAL_AUTHENTICATION = 0x40;
        public static final int REPLAY_DETECTION = 0x20;
        public static final int SEQUENCE_CHECKING = 0x10;
        public static final int ANONYMITY = 0x08;
        public static final int CONFIDENTIALITY = 0x04;
        public static final int INTEGRITY = 0x02;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Oct 01 12:01:17 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  7. cmd/xl-storage-format-v2_gen.go

    	o = msgp.AppendUint8(o, uint8(z.BitrotChecksumAlgo))
    	// string "PartNums"
    	o = append(o, 0xa8, 0x50, 0x61, 0x72, 0x74, 0x4e, 0x75, 0x6d, 0x73)
    	o = msgp.AppendArrayHeader(o, uint32(len(z.PartNumbers)))
    	for za0004 := range z.PartNumbers {
    		o = msgp.AppendInt(o, z.PartNumbers[za0004])
    	}
    	// string "PartETags"
    	o = append(o, 0xa9, 0x50, 0x61, 0x72, 0x74, 0x45, 0x54, 0x61, 0x67, 0x73)
    	if z.PartETags == nil { // allownil: if nil
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 19 16:43:43 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  8. cmd/bucket-metadata_gen.go

    	// string "PolicyConfigUpdatedAt"
    	o = append(o, 0xb5, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74)
    	o = msgp.AppendTime(o, z.PolicyConfigUpdatedAt)
    	// string "ObjectLockConfigUpdatedAt"
    	o = append(o, 0xb9, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 25 05:52:39 GMT 2023
    - 22.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

            dst[dstIndex + OPCODE_OFFSET] = (byte)(( isResponse ? 0x80 : 0x00 ) +
                            (( opCode << 3 ) & 0x78 ) +
                            ( isAuthAnswer ? 0x04 : 0x00 ) +
                            ( isTruncated ? 0x02 : 0x00 ) +
                            ( isRecurDesired ? 0x01 : 0x00 ));
            dst[dstIndex + OPCODE_OFFSET + 1] = (byte)(( isRecurAvailable ? 0x80 : 0x00 ) +
                            ( isBroadcast ? 0x10 : 0x00 ) +
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 12.4K bytes
    - Viewed (0)
  10. cmd/metacache-set_gen.go

    		return
    	}
    	// write "Prefix"
    	err = en.Append(0xa6, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78)
    	if err != nil {
    		return
    	}
    	err = en.WriteString(z.Prefix)
    	if err != nil {
    		err = msgp.WrapError(err, "Prefix")
    		return
    	}
    	// write "FilterPrefix"
    	err = en.Append(0xac, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78)
    	if err != nil {
    		return
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Mar 19 20:23:12 GMT 2024
    - 13.8K bytes
    - Viewed (0)
Back to top