- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 3,853 for Uint (0.03 sec)
-
src/main/java/jcifs/smb1/smb1/NetServerEnum2Response.java
} } private int converter, totalAvailableEntries; String lastName; NetServerEnum2Response() { } int writeSetupWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeParametersWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeDataWireFormat( byte[] dst, int dstIndex ) { return 0; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/rpc.java
_src.align(4); int _sub_authoritys = _src.dec_ndr_long(); this.revision = (byte) _src.dec_ndr_small(); this.sub_authority_count = (byte) _src.dec_ndr_small(); int _identifier_authoritys = 6; int _identifier_authorityi = _src.index; _src.advance(1 * _identifier_authoritys); int _sub_authorityi = _src.index;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:40:13 UTC 2019 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java
/** * */ public static final int FILE_NOTIFY_CHANGE_STREAM_NAME = 0x200; /** * */ public static final int FILE_NOTIFY_CHANGE_STREAM_SIZE = 0x400; /** * */ public static final int FILE_NOTIFY_CHANGE_STREAM_WRITE = 0x800; private final byte[] fileId; private int outputBufferLength; private int notifyFlags;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.6K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/collect/ImmutableSetHashFloodingDetectionBenchmark.java
private static final int TEST_CASES = 0x100; @Param({"10", "100", "1000", "10000"}) int size; @Param Impl impl; private static final Object[][] tables = new Object[TEST_CASES][]; @BeforeExperiment public void setUp() { int tableSize = ImmutableSet.chooseTableSize(size); int mask = tableSize - 1; for (int i = 0; i < TEST_CASES; i++) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Jun 03 20:16:35 UTC 2021 - 6.8K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/math/ApacheBenchmark.java
public abstract double factorialDouble(int n); public abstract long binomialCoefficient(int n, int k); public abstract int gcdInt(int a, int b); public abstract long gcdLong(long a, long b); public abstract boolean noAddOverflow(int a, int b); public abstract boolean noAddOverflow(long a, long b); public abstract boolean noMulOverflow(int a, int b);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComWriteAndX.java
private long offset; private int pad; int writeMode; SmbComWriteAndX() { super( null ); command = SMB_COM_WRITE_ANDX; } SmbComWriteAndX( int fid, long offset, int remaining, byte[] b, int off, int len, ServerMessageBlock andx ) { super( andx ); this.fid = fid; this.offset = offset; this.remaining = remaining;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 4.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingList.java
* #remove(int)}. If you override any of these methods, you may wish to override {@link * #listIterator(int)} to forward to this implementation. * * @since 7.0 */ protected ListIterator<E> standardListIterator(int start) { return Lists.listIteratorImpl(this, start); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 15:26:39 UTC 2023 - 7.9K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/ObjectsBenchmark.java
int hashString_4(int reps) { int dummy = 0; for (int i = 0; i < reps; i++) { dummy += Objects.hashCode(S0, S1, S2, S3); } return dummy; } @Benchmark int hashString_5(int reps) { int dummy = 0; for (int i = 0; i < reps; i++) { dummy += Objects.hashCode(S0, S1, S2, S3, S4); } return dummy; } @Benchmark int hashMixed_5(int reps) { int dummy = 0;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
protected final int start; protected final int offset; /** The value of current page number. */ protected final int pageSize; /** The value of current page number. */ protected int currentPageNumber; protected long allRecordCount; protected String allRecordCountRelation; protected int allPageCount; protected boolean existNextPage;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmMessage.java
} static int readUShort ( byte[] src, int index ) { return ( src[ index ] & 0xff ) | ( ( src[ index + 1 ] & 0xff ) << 8 ); } static byte[] readSecurityBuffer ( byte[] src, int index ) { int length = readUShort(src, index); int offset = readULong(src, index + 4); byte[] buffer = new byte[length];
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.1K bytes - Viewed (0)