Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 84 for 0xef (0.02 sec)

  1. cmd/xl-storage-format-v1_gen.go

    	// string "Algorithm"
    	o = append(o, 0x87, 0xa9, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d)
    	o = msgp.AppendString(o, z.Algorithm)
    	// string "DataBlocks"
    	o = append(o, 0xaa, 0x44, 0x61, 0x74, 0x61, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73)
    	o = msgp.AppendInt(o, z.DataBlocks)
    	// string "ParityBlocks"
    	o = append(o, 0xac, 0x50, 0x61, 0x72, 0x69, 0x74, 0x79, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73)
    	o = msgp.AppendInt(o, z.ParityBlocks)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/Name.java

            byte tmp[] = new byte[SCOPE_OFFSET];
            int length = 15;
            for( int i = 0; i < 15; i++ ) {
                tmp[i] = (byte)((( src[srcIndex + ( 2 * i + 1 )] & 0xFF ) - 0x41 ) << 4 );
                tmp[i] |= (byte)((( src[srcIndex + ( 2 * i + 2 )] & 0xFF ) - 0x41 ) & 0x0F );
                if( tmp[i] != (byte)' ' ) {
                    length = i + 1;
                }
            }
            try {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 6.6K bytes
    - Viewed (0)
  3. internal/bucket/bandwidth/monitor_gen.go

    	o = msgp.AppendInt64(o, z.LimitInBytesPerSecond)
    	// string "CurrentBandwidthInBytesPerSecond"
    	o = append(o, 0xd9, 0x20, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x42, 0x61, 0x6e, 0x64, 0x77, 0x69, 0x64, 0x74, 0x68, 0x49, 0x6e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x50, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64)
    	o = msgp.AppendFloat64(o, z.CurrentBandwidthInBytesPerSecond)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. cmd/batch-handlers_gen.go

    	o = msgp.AppendString(o, z.Bucket)
    	// string "lobj"
    	o = append(o, 0xa4, 0x6c, 0x6f, 0x62, 0x6a)
    	o = msgp.AppendString(o, z.Object)
    	// string "ob"
    	o = append(o, 0xa2, 0x6f, 0x62)
    	o = msgp.AppendInt64(o, z.Objects)
    	// string "dm"
    	o = append(o, 0xa2, 0x64, 0x6d)
    	o = msgp.AppendInt64(o, z.DeleteMarkers)
    	// string "obf"
    	o = append(o, 0xa3, 0x6f, 0x62, 0x66)
    	o = msgp.AppendInt64(o, z.ObjectsFailed)
    	// string "dmf"
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 01 12:53:30 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt

        sectionIndexBuffer.writeByte((section and 0x3f80) shr 7)
    
        // Section index.
        sectionIndexBuffer.writeByte((sectionOffset and 0x3f80) shr 7)
        sectionIndexBuffer.writeByte(sectionOffset and 0x7f)
    
        // Ranges.
        for (range in sectionMappedRanges) {
          rangesBuffer.writeByte(range.rangeStart)
    
          when (range) {
            is MappedRange.Constant -> {
              rangesBuffer.writeByte(range.b1)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl

    	typedef struct {
    		uint32_t idx;
    		unicode_string name;
    	} SamrSamEntry;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] SamrSamEntry *entries;
    	} SamrSamArray;
    
    	[op(0x0f)]
    	int SamrEnumerateAliasesInDomain([in] policy_handle *domain_handle,
    			[in,out] uint32_t *resume_handle,
    			[in] uint32_t acct_flags,
    			[out,unique] SamrSamArray *sam,
    			[out] uint32_t num_entries);
    
    	[op(0x1b)]
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  7. cmd/metacache_gen.go

    	if err != nil {
    		return
    	}
    	err = en.WriteString(z.error)
    	if err != nil {
    		err = msgp.WrapError(err, "error")
    		return
    	}
    	// write "root"
    	err = en.Append(0xa4, 0x72, 0x6f, 0x6f, 0x74)
    	if err != nil {
    		return
    	}
    	err = en.WriteString(z.root)
    	if err != nil {
    		err = msgp.WrapError(err, "root")
    		return
    	}
    	// write "fnf"
    	err = en.Append(0xa3, 0x66, 0x6e, 0x66)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Nov 08 18:26:08 UTC 2021
    - 10K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NbtException.java

        public static final int NOT_LISTENING_CALLING = 0x81;
        public static final int CALLED_NOT_PRESENT = 0x82;
        public static final int NO_RESOURCES = 0x83;
        public static final int UNSPECIFIED = 0x8F;
    
        public int errorClass;
        public int errorCode;
    
    
        public static String getErrorString ( int errorClass, int errorCode ) {
            String result = "";
            switch ( errorClass ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/util/Hexdump.java

            size = ( size % 2 == 0 ) ? size / 2 : size / 2 + 1;
            for( int i = 0, j = 0; i < size; i++ ) {
                c[j++] = HEX_DIGITS[(src[i] >> 4 ) & 0x0F];
                if( j == c.length ) {
                    break;
                }
                c[j++] = HEX_DIGITS[src[i] & 0x0F];
            }
            return new String( c );
        }
    
    /** 
     * This is the same as {@link jcifs.smb1.util.Hexdump#toHexString(int val, int
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool-decom_gen.go

    	if err != nil {
    		return
    	}
    	err = en.WriteString(z.Prefix)
    	if err != nil {
    		err = msgp.WrapError(err, "Prefix")
    		return
    	}
    	// write "obj"
    	err = en.Append(0xa3, 0x6f, 0x62, 0x6a)
    	if err != nil {
    		return
    	}
    	err = en.WriteString(z.Object)
    	if err != nil {
    		err = msgp.WrapError(err, "Object")
    		return
    	}
    	// write "id"
    	err = en.Append(0xa2, 0x69, 0x64)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 04 21:02:54 UTC 2022
    - 26.7K bytes
    - Viewed (0)
Back to top