- Sort Score
- Result 10 results
- Languages All
Results 641 - 650 of 3,007 for int8 (0.01 sec)
-
src/test/java/jcifs/pac/PacSignatureTest.java
// Prepare data ByteArrayOutputStream baos = new ByteArrayOutputStream(); int defaultType = 99; writeLittleEndianInt(baos, defaultType); byte[] checksum = new byte[10]; // Arbitrary length for (int i = 0; i < checksum.length; i++) { checksum[i] = (byte) i; } baos.write(checksum);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java
private int createDisposition; private int createOptions; private final int impersonationLevel; private long allocationSize; private final byte securityFlags; private int namelen_index; int flags0, desiredAccess; SmbComNTCreateAndX(final String name, final int flags, final int access, final int shareAccess, final int extFileAttributes,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexResponse.java
* and the time taken to complete the operation. */ public class SuggestIndexResponse implements Response { /** The number of suggest documents. */ protected final int numberOfSuggestDocs; /** The number of input documents. */ protected final int numberOfInputDocs; /** Flag indicating if there are errors. */ protected final boolean hasError; /** List of errors. */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 3.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/TransWaitNamedPipeTest.java
assertEquals(0, consumed, "readParametersWireFormat should return 0"); } @Test public void testReadDataWireFormat() { // Test that readDataWireFormat returns 0 TransWaitNamedPipe pipe = new TransWaitNamedPipe("\\\\pipe\\testPipe"); byte[] buffer = new byte[100]; int consumed = pipe.readDataWireFormat(buffer, 0, 10);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/CompressionNegotiateContext.java
/** Context ID for compression capabilities */ public static final int NEGO_CTX_COMPRESSION_TYPE = 0x3; // SMB3 Compression Algorithms /** No compression */ public static final int COMPRESSION_NONE = 0x0; /** LZ77 compression */ public static final int COMPRESSION_LZ77 = 0x1; /** LZ77 + Huffman compression */ public static final int COMPRESSION_LZ77_HUFFMAN = 0x2; /** LZNT1 compression (Windows standard) */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransPeekNamedPipeResponse.java
} @Override int writeParametersWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override int writeDataWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override int readSetupWireFormat(final byte[] buffer, final int bufferIndex, final int len) { return 0; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.3K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/collect/SetIterationBenchmark.java
new CollectionBenchmarkSampleData(true, random, 0.8, size); setToTest = (Set<Element>) impl.create(sampleData.getValuesInSet()); } @Benchmark int iteration(int reps) { int x = 0; for (int i = 0; i < reps; i++) { for (Element y : setToTest) { x ^= System.identityHashCode(y); } } return x; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/SessionRetargetResponsePacket.java
this.type = SESSION_RETARGET_RESPONSE; this.length = 6; } @Override int writeTrailerWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override int readTrailerWireFormat(final InputStream in, final byte[] buffer, int bufferIndex) throws IOException { if (in.read(buffer, bufferIndex, this.length) != this.length) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/srvsvc.java
_src.align(4); final int _netnamep = _src.dec_ndr_long(); this.type = _src.dec_ndr_long(); final int _remarkp = _src.dec_ndr_long(); this.permissions = _src.dec_ndr_long(); this.max_uses = _src.dec_ndr_long(); this.current_uses = _src.dec_ndr_long(); final int _pathp = _src.dec_ndr_long(); final int _passwordp = _src.dec_ndr_long();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 27K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java
* DFS volume flavor indicating standalone DFS */ public static final int DFS_VOLUME_FLAVOR_STANDALONE = 0x100; /** * DFS volume flavor indicating Active Directory blob storage */ public static final int DFS_VOLUME_FLAVOR_AD_BLOB = 0x200; /** * DFS storage state indicating offline status */ public static final int DFS_STORAGE_STATE_OFFLINE = 0x0001; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.2K bytes - Viewed (0)