Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 79 for writeUint64 (0.16 sec)

  1. cmd/erasure-server-pool-decom_gen.go

    	}
    	// write "ss"
    	err = en.Append(0xa2, 0x73, 0x73)
    	if err != nil {
    		return
    	}
    	err = en.WriteInt64(z.StartSize)
    	if err != nil {
    		err = msgp.WrapError(err, "StartSize")
    		return
    	}
    	// write "ts"
    	err = en.Append(0xa2, 0x74, 0x73)
    	if err != nil {
    		return
    	}
    	err = en.WriteInt64(z.TotalSize)
    	if err != nil {
    		err = msgp.WrapError(err, "TotalSize")
    		return
    	}
    	// write "cs"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 04 21:02:54 UTC 2022
    - 26.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComReadAndX.java

            dstIndex += 2;
            writeInt4( offset, dst, dstIndex );
            dstIndex += 4;
            writeInt2( maxCount, dst, dstIndex );
            dstIndex += 2;
            writeInt2( minCount, dst, dstIndex );
            dstIndex += 2;
            writeInt4( openTimeout, dst, dstIndex );
            dstIndex += 4;
            writeInt2( remaining, dst, dstIndex );
            dstIndex += 2;
            writeInt4( offset >> 32, dst, dstIndex );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/ntlmssp/av/AvSingleHost.java

        }
    
    
        private static byte[] encode ( byte[] customData, byte[] machineId ) {
            int size = 8 + 8 + 32;
            byte[] enc = new byte[size];
            SMBUtil.writeInt4(size, enc, 0);
            SMBUtil.writeInt4(0, enc, 4);
            System.arraycopy(customData, 0, enc, 8, 8);
            System.arraycopy(machineId, 0, enc, 16, 32);
            return enc;
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  4. cmd/batch-handlers_gen.go

    	}
    	// write "ob"
    	err = en.Append(0xa2, 0x6f, 0x62)
    	if err != nil {
    		return
    	}
    	err = en.WriteInt64(z.Objects)
    	if err != nil {
    		err = msgp.WrapError(err, "Objects")
    		return
    	}
    	// write "dm"
    	err = en.Append(0xa2, 0x64, 0x6d)
    	if err != nil {
    		return
    	}
    	err = en.WriteInt64(z.DeleteMarkers)
    	if err != nil {
    		err = msgp.WrapError(err, "DeleteMarkers")
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. cmd/site-replication-metrics_gen.go

    	err = en.Append(0x82, 0xa5, 0x43, 0x6f, 0x75, 0x6e, 0x74)
    	if err != nil {
    		return
    	}
    	err = en.WriteInt64(z.Count)
    	if err != nil {
    		err = msgp.WrapError(err, "Count")
    		return
    	}
    	// write "Bytes"
    	err = en.Append(0xa5, 0x42, 0x79, 0x74, 0x65, 0x73)
    	if err != nil {
    		return
    	}
    	err = en.WriteInt64(z.Bytes)
    	if err != nil {
    		err = msgp.WrapError(err, "Bytes")
    		return
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java

            this.pad = this.pad == 0 ? 0 : 4 - this.pad;
            this.dataOffset += this.pad;
    
            SMBUtil.writeInt2(this.fid, dst, dstIndex);
            dstIndex += 2;
            SMBUtil.writeInt4(this.offset, dst, dstIndex);
            dstIndex += 4;
            for ( int i = 0; i < 4; i++ ) {
                dst[ dstIndex++ ] = (byte) 0xFF;
            }
            SMBUtil.writeInt2(this.writeMode, dst, dstIndex);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java

            SMBUtil.writeInt2(this.fid, dst, dstIndex);
            dstIndex += 2;
            SMBUtil.writeInt4(this.offset, dst, dstIndex);
            dstIndex += 4;
            SMBUtil.writeInt2(this.maxCount, dst, dstIndex);
            dstIndex += 2;
            SMBUtil.writeInt2(this.minCount, dst, dstIndex);
            dstIndex += 2;
            SMBUtil.writeInt4(this.openTimeout, dst, dstIndex);
            dstIndex += 4;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java

                SMBUtil.writeInt4(dstIndex - getHeaderStart(), dst, negotitateContextOffsetOffset);
                for ( NegotiateContextRequest nc : this.negotiateContexts ) {
                    SMBUtil.writeInt2(nc.getContextType(), dst, dstIndex);
                    int lenOffset = dstIndex + 2;
                    dstIndex += 4;
                    SMBUtil.writeInt4(0, dst, dstIndex);
                    dstIndex += 4; // Reserved
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

                int index = offset + SmbConstants.SIGNATURE_OFFSET;
                for ( int i = 0; i < 8; i++ )
                    data[ index + i ] = 0;
                SMBUtil.writeInt4(this.signSequence, data, index);
                update(data, offset, length);
                System.arraycopy(digest(), 0, data, index, 8);
                if ( this.bypass ) {
                    this.bypass = false;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 10.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComOpenAndX.java

            SMBUtil.writeInt2(this.fileAttributes, dst, dstIndex);
            dstIndex += 2;
            this.creationTime = 0;
            SMBUtil.writeInt4(this.creationTime, dst, dstIndex);
            dstIndex += 4;
            SMBUtil.writeInt2(this.openFunction, dst, dstIndex);
            dstIndex += 2;
            SMBUtil.writeInt4(this.allocationSize, dst, dstIndex);
            dstIndex += 4;
            for ( int i = 0; i < 8; i++ ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7K bytes
    - Viewed (0)
Back to top