- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 625 for 16 (0.03 sec)
-
src/main/java/jcifs/smb/SmbPipeInputStream.java
if ( th.isSMB2() ) { Smb2IoctlRequest req = new Smb2IoctlRequest(th.getConfig(), Smb2IoctlRequest.FSCTL_PIPE_PEEK, fd.getFileId()); req.setMaxOutputResponse(16); req.setFlags(Smb2IoctlRequest.SMB2_O_IOCTL_IS_FSCTL); Smb2IoctlResponse resp = th.send(req, RequestParam.NO_RETRY);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 07:12:23 UTC 2018 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2ReadResponse.java
/** * @author mbechler * */ public class Smb2ReadResponse extends ServerMessageBlock2Response { /** * */ public static final int OVERHEAD = Smb2Constants.SMB2_HEADER_LENGTH + 16; private int dataRemaining; private int dataLength; private byte[] outputBuffer; private int outputBufferOffset; /** * @param config * @param outputBufferOffset
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 07:13:17 UTC 2018 - 3.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/JvmUtilTest.java
assertEquals(4, JvmUtil.getJavaVersion()); System.setProperty("java.version", "1.5.0_15"); assertEquals(5, JvmUtil.getJavaVersion()); System.setProperty("java.version", "1.6.0_34"); assertEquals(6, JvmUtil.getJavaVersion()); System.setProperty("java.version", "1.7.0_25"); assertEquals(7, JvmUtil.getJavaVersion()); System.setProperty("java.version", "1.8.0_171");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.6K bytes - Viewed (0) -
guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/Platform.java
static String format(String template, Object... args) { // start substituting the arguments into the '%s' placeholders StringBuilder builder = new StringBuilder(template.length() + 16 * args.length); int templateStart = 0; int i = 0; while (i < args.length) { int placeholderStart = template.indexOf("%s", templateStart); if (placeholderStart == -1) { break; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 2.1K bytes - Viewed (0) -
src/archive/zip/struct.go
fileHeaderLen = 30 // + filename + extra directoryHeaderLen = 46 // + filename + extra + comment directoryEndLen = 22 // + comment dataDescriptorLen = 16 // four uint32: descriptor signature, crc32, compressed size, size dataDescriptor64Len = 24 // two uint32: signature, crc32 | two uint64: compressed size, size directory64LocLen = 20 //
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue May 28 21:41:09 UTC 2024 - 12.1K bytes - Viewed (0) -
api/go1.14.txt
pkg syscall (freebsd-arm64), const O_SHLOCK = 16 pkg syscall (freebsd-arm64), const O_SHLOCK ideal-int pkg syscall (freebsd-arm64), const O_SYNC = 128 pkg syscall (freebsd-arm64), const O_TRUNC = 1024 pkg syscall (freebsd-arm64), const O_TTY_INIT = 524288 pkg syscall (freebsd-arm64), const O_TTY_INIT ideal-int pkg syscall (freebsd-arm64), const OCRNL = 16 pkg syscall (freebsd-arm64), const OCRNL ideal-int
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K bytes - Viewed (0) -
docs/en/data/people.yml
url: https://github.com/peidrao - login: yanever count: 16 avatarUrl: https://avatars.githubusercontent.com/u/21978760?v=4 url: https://github.com/yanever - login: SwftAlpc count: 16 avatarUrl: https://avatars.githubusercontent.com/u/52768429?u=6a3aa15277406520ad37f6236e89466ed44bc5b8&v=4 url: https://github.com/SwftAlpc - login: axel584 count: 16
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Jun 03 01:09:53 UTC 2024 - 55.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/HashBiMap.java
extends IteratorBasedAbstractMap<K, V> implements BiMap<K, V>, Serializable { /** Returns a new, empty {@code HashBiMap} with the default initial capacity (16). */ public static <K extends @Nullable Object, V extends @Nullable Object> HashBiMap<K, V> create() { return create(16); } /** * Constructs a new, empty bimap with the specified expected size. * * @param expectedSize the expected number of entries
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 13 14:11:58 UTC 2023 - 24.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/CharsetsTest.java
assertEquals(Charset.forName("UTF-16LE"), Charsets.UTF_16LE); } @J2ktIncompatible @GwtIncompatible // Non-UTF-8 Charset public void testUtf16() { assertEquals(Charset.forName("UTF-16"), Charsets.UTF_16); } @J2ktIncompatible @GwtIncompatible // Non-UTF-8 Charset public void testWhyUsAsciiIsDangerous() { byte[] b1 = "朝日新聞".getBytes(Charsets.US_ASCII);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu May 04 09:41:29 UTC 2023 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/SrvPipePeekResponse.java
this.numberOfMessages = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; this.messageLength = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; this.data = new byte[len - 16]; if ( this.data.length > 0 ) { System.arraycopy(buffer, bufferIndex, this.data, 0, this.data.length); } return bufferIndex - start; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 2.7K bytes - Viewed (0)