- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 127 for 0x61 (0.06 sec)
-
guava-tests/benchmark/com/google/common/hash/MessageDigestAlgorithmBenchmark.java
@BeforeExperiment void setUp() { testBytes = new byte[size]; new Random(RANDOM_SEED).nextBytes(testBytes); } @Benchmark byte hashing(int reps) { byte result = 0x01; HashMethod hashMethod = this.hashMethod; Algorithm algorithm = this.algorithm; for (int i = 0; i < reps; i++) { result ^= hashMethod.hash(algorithm, testBytes)[0]; } return result; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtException.java
public static final int ERR_NAM_SRVC = 0x01; public static final int ERR_SSN_SRVC = 0x02; // name service error codes public static final int FMT_ERR = 0x1; public static final int SRV_ERR = 0x2; public static final int IMP_ERR = 0x4; public static final int RFS_ERR = 0x5; public static final int ACT_ERR = 0x6; public static final int CFT_ERR = 0x7;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcConstants.java
@SuppressWarnings ( "javadoc" ) public interface DcerpcConstants { public static final UUID DCERPC_UUID_SYNTAX_NDR = new UUID("8a885d04-1ceb-11c9-9fe8-08002b104860"); public static final int DCERPC_FIRST_FRAG = 0x01; /* First fragment */ public static final int DCERPC_LAST_FRAG = 0x02; /* Last fragment */ public static final int DCERPC_PENDING_CANCEL = 0x04; /* Cancel was pending at sender */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java
package jcifs.smb1.smb1; import jcifs.smb1.Config; import jcifs.smb1.util.Hexdump; class Trans2FindFirst2 extends SmbComTransaction { // flags private static final int FLAGS_CLOSE_AFTER_THIS_REQUEST = 0x01; private static final int FLAGS_CLOSE_IF_END_REACHED = 0x02; private static final int FLAGS_RETURN_RESUME_KEYS = 0x04; private static final int FLAGS_RESUME_FROM_PREVIOUS_END = 0x08;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 4.4K bytes - Viewed (0) -
doc/go1.17_spec.html
UTF-8-encoded bytes may represent a single integer value. For instance, the literal <code>'a'</code> holds a single byte representing a literal <code>a</code>, Unicode U+0061, value <code>0x61</code>, while <code>'รค'</code> holds two bytes (<code>0xc3</code> <code>0xa4</code>) representing a literal <code>a</code>-dieresis, U+00E4, value <code>0xe4</code>. </p> <p>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNegotiateResponse.java
if( dialectIndex > 10 ) { return bufferIndex - start; } server.securityMode = buffer[bufferIndex++] & 0xFF; server.security = server.securityMode & 0x01; server.encryptedPasswords = ( server.securityMode & 0x02 ) == 0x02; server.signaturesEnabled = ( server.securityMode & 0x04 ) == 0x04; server.signaturesRequired = ( server.securityMode & 0x08 ) == 0x08;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
public static final int GENERIC_WRITE = 0x40000000; // 30 public static final int GENERIC_READ = 0x80000000; // 31 public static final int FLAGS_OBJECT_INHERIT = 0x01; public static final int FLAGS_CONTAINER_INHERIT = 0x02; public static final int FLAGS_NO_PROPAGATE = 0x04; public static final int FLAGS_INHERIT_ONLY = 0x08;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
// relative to headerStart private static final int PRIMARY_SETUP_OFFSET = 61; private static final int SECONDARY_PARAMETER_OFFSET = 51; static final int DISCONNECT_TID = 0x01; static final int ONE_WAY_TRANSACTION = 0x02; static final int PADDING_SIZE = 4; private int tflags = 0x00; private int pad1 = 0; private int pad2 = 0; private boolean hasMore = true;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 13:43:42 UTC 2020 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComWrite.java
return dstIndex - start; } @Override protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) { int start = dstIndex; dst[ dstIndex++ ] = (byte) 0x01; /* BufferFormat */ SMBUtil.writeInt2(this.count, dst, dstIndex); /* DataLength? */ dstIndex += 2; System.arraycopy(this.b, this.off, dst, dstIndex, this.count); dstIndex += this.count;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTransactionResponse.java
abstract class SmbComTransactionResponse extends ServerMessageBlock implements Enumeration { // relative to headerStart private static final int SETUP_OFFSET = 61; private static final int DISCONNECT_TID = 0x01; private static final int ONE_WAY_TRANSACTION = 0x02; private int pad; private int pad1; private boolean parametersDone, dataDone; protected int totalParameterCount;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6K bytes - Viewed (0)