- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 411 for Flags (0.02 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndX.java
// flags is NOT the same as flags member /** * Constructs an Open AndX request. * * @param config the configuration * @param fileName the name of the file to open * @param access the desired access mode * @param shareAccess the share access mode * @param flags the open flags * @param fileAttributes the file attributes
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type1MessageTest.java
void testType1MessageWithFlags() { // Given int flags = NtlmFlags.NTLMSSP_NEGOTIATE_UNICODE | NtlmFlags.NTLMSSP_NEGOTIATE_NTLM | NtlmFlags.NTLMSSP_NEGOTIATE_OEM_DOMAIN_SUPPLIED; // When Type1Message type1 = new Type1Message(mockContext, flags, null, null); // Then // Note: Constructor sets default flags OR'd with provided flags
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
boolean end = false; int flags; String charset; if (lmResponseOffset < pos + 12 || ntResponseOffset < pos + 12 || domainOffset < pos + 12 || userOffset < pos + 12 || workstationOffset < pos + 12) { // no room for SK/Flags flags = NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_OEM; setFlags(flags); charset = getOEMEncoding();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0) -
okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsRecordCodec.kt
val result = mutableListOf<InetAddress>() val buf = Buffer() buf.write(byteString) buf.readShort() // query id val flags = buf.readShort().toInt() and 0xffff require(flags shr 15 != 0) { "not a response" } val responseCode = flags and 0xf if (responseCode == NXDOMAIN) { throw UnknownHostException("$hostname: NXDOMAIN") } else if (responseCode == SERVFAIL) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type3Message.java
* @param user the username * @param workstation the workstation name * @param flags the flags to use for the Type-3 message */ public Type3Message(final Type2Message type2, final String password, final String domain, final String user, String workstation, final int flags) { setFlags(flags | getDefaultFlags(type2)); if (workstation == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 24.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java
return new Smb2IoctlResponse(tc.getConfig(), this.outputBuffer, this.controlCode); } /** * Set the IOCTL flags * @param flags the flags to set */ public void setFlags(final int flags) { this.flags = flags; } /** * Set the maximum input response size * @param maxInputResponse the maxInputResponse to set */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.4K bytes - Viewed (0) -
cmd/batch-rotate_gen.go
err = z.Flags.Filter.DecodeMsg(dc) if err != nil { err = msgp.WrapError(err, "Flags", "Filter") return } case "Notify": err = z.Flags.Notify.DecodeMsg(dc) if err != nil { err = msgp.WrapError(err, "Flags", "Notify") return } case "Retry": err = z.Flags.Retry.DecodeMsg(dc) if err != nil { err = msgp.WrapError(err, "Flags", "Retry")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Dec 02 10:51:33 UTC 2023 - 27.1K bytes - Viewed (0) -
tensorflow/__init__.py
# pylint: disable=g-bad-import-order from tensorflow.python import pywrap_tensorflow # pylint: disable=unused-import from tensorflow.python.platform import flags # pylint: disable=g-import-not-at-top from tensorflow.python.platform import app # pylint: disable=g-import-not-at-top app.flags = flags # These symbols appear because we import the python package which # in turn imports from tensorflow.core and tensorflow.python. They
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Tue Sep 28 21:37:05 UTC 2021 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2LeaseBreakResponse.java
* @return the lease state */ public int getLeaseState() { return leaseState; } /** * Gets the lease flags from the break response * @return the lease flags */ public int getLeaseFlags() { return flags; } /** * Gets the lease duration from the break response * @return the lease duration */ public long getLeaseDuration() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java
+ proximity + ",ttl=" + ttl + ",pathOffset=" + pathOffset + ",altPathOffset=" + altPathOffset + ",nodeOffset=" + nodeOffset + ",path=" + path + ",altPath=" + altPath + ",node=" + node + "]"); } } int pathConsumed; int numReferrals; int flags; Referral[] referrals;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.2K bytes - Viewed (0)