- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 93 for SetFlags (0.07 sec)
-
misc/ios/go_ios_exec.go
) // lock is a file lock to serialize iOS runs. It is global to avoid the // garbage collector finalizing it, closing the file and releasing the // lock prematurely. var lock *os.File func main() { log.SetFlags(0) log.SetPrefix("go_ios_exec: ") if debug { log.Println(strings.Join(os.Args, " ")) } if len(os.Args) < 2 { log.Fatal("usage: go_ios_exec a.out") }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Jun 18 16:32:49 UTC 2024 - 8.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
log.debug("Sending VALIDATE_NEGOTIATE_INFO"); final Smb2IoctlRequest req = new Smb2IoctlRequest(sess.getConfig(), Smb2IoctlRequest.FSCTL_VALIDATE_NEGOTIATE_INFO); req.setFlags(Smb2IoctlRequest.SMB2_O_IOCTL_IS_FSCTL); req.setInputData(new ValidateNegotiateInfoRequest(negoReq.getCapabilities(), negoReq.getClientGuid(), (short) negoReq.getSecurityMode(), negoReq.getDialects()));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java
this.andx.headerStart = this.headerStart; this.andx.setCommand(this.andxCommand); this.andx.setErrorCode(getErrorCode()); this.andx.setFlags(getFlags()); this.andx.setFlags2(getFlags2()); this.andx.setTid(getTid()); this.andx.setPid(getPid()); this.andx.setUid(getUid()); this.andx.setMid(getMid());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java
new Smb2IoctlRequest(context.getConfig(), Smb2IoctlRequest.FSCTL_QUERY_NETWORK_INTERFACE_INFO, new byte[16] // Reserved/Unused file ID ); request.setMaxOutputResponse(65536); request.setFlags(Smb2IoctlRequest.SMB2_O_IOCTL_IS_FSCTL); // Note: This IOCTL must be sent on an existing session // The actual sending would need integration with the session's transport
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 20K bytes - Viewed (0) -
misc/go_android_exec/main.go
} return exec.Command("adb", args...) } const ( deviceRoot = "/data/local/tmp/go_android_exec" deviceGoroot = deviceRoot + "/goroot" ) func main() { log.SetFlags(0) log.SetPrefix("go_android_exec: ") exitCode, err := runMain() if err != nil { log.Fatal(err) } os.Exit(exitCode) } func runMain() (int, error) {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Aug 21 17:46:57 UTC 2023 - 15.3K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
request.setShareName(shareName); request.setServerAddress(serverAddress.getHostAddress()); request.setFlags(registration.getFlags()); WitnessRegisterResponse response = rpcClient.register(request); if (response.isSuccess()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
// Send session setup with channel binding Smb2SessionSetupRequest request = new Smb2SessionSetupRequest(); request.setSessionId(session.getSessionId()); request.setFlags(SMB2_SESSION_FLAG_BINDING); request.setSecurityBuffer(bindingHash); Smb2SessionSetupResponse response = (Smb2SessionSetupResponse) channel.getTransport().send(request);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
} /** * Gets the SMB message flags * @return the flags */ public final byte getFlags() { return this.flags; } /** * Sets the SMB message flags * @param flags * the flags to set */ public final void setFlags(final byte flags) { this.flags = flags; } /** * Gets the SMB message flags2 field
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
DfsReferralResponseBuffer dfsResp; if (isSMB2()) { final Smb2IoctlRequest req = new Smb2IoctlRequest(ctx.getConfig(), Smb2IoctlRequest.FSCTL_DFS_GET_REFERRALS); req.setFlags(Smb2IoctlRequest.SMB2_O_IOCTL_IS_FSCTL); req.setInputData(dfsReq); dfsResp = ipc.send(req).getOutputData(DfsReferralResponseBuffer.class); } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type1MessageTest.java
assertTrue((unicodeType1.getFlags() & NtlmFlags.NTLMSSP_NEGOTIATE_UNICODE) != 0); // Default is OEM, so both flags are set due to OR operation assertTrue((unicodeType1.getFlags() & NtlmFlags.NTLMSSP_NEGOTIATE_OEM) != 0); // OEM flag is default when isUseUnicode() is false assertTrue((oemType1.getFlags() & NtlmFlags.NTLMSSP_NEGOTIATE_OEM) != 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.1K bytes - Viewed (0)