- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 550 for flags2 (0.26 sec)
-
src/main/java/jcifs/ntlmssp/av/AvFlags.java
* Constructs an AV flags pair from integer flags * @param flags the flag values as integer */ public AvFlags(final int flags) { this(encode(flags)); } /** * Gets the flags as an integer value * @return flags */ public int getFlags() { return SMBUtil.readInt4(this.getRaw(), 0); } private static byte[] encode(final int flags) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralResponseBuffer.java
* @return the numReferrals */ public final int getNumReferrals() { return this.numReferrals; } /** * Get the referral flags * * @return the tflags */ public final int getTflags() { return this.tflags; } /** * Get the array of referral entries * * @return the referrals */ public final Referral[] getReferrals() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndX.java
* @param shareAccess the share access mode * @param flags the open flags * @param fileAttributes the file attributes * @param andx the next command in the chain */ public SmbComOpenAndX(final Configuration config, final String fileName, final int access, final int shareAccess, final int flags, final int fileAttributes, final ServerMessageBlock andx) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2.kt
for (prefixFlag in prefixFlags) { FLAGS[prefixFlag or frameFlag] = FLAGS[prefixFlag] + '|'.toString() + FLAGS[frameFlag] FLAGS[prefixFlag or frameFlag or FLAG_PADDED] = FLAGS[prefixFlag] + '|'.toString() + FLAGS[frameFlag] + "|PADDED" } } for (i in FLAGS.indices) { // Fill in holes with binary representation. if (FLAGS[i] == null) FLAGS[i] = BINARY[i] } } /**
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/Referral.java
* @return the serverType */ public final int getServerType() { return this.serverType; } /** * Gets the referral flags. * * @return the rflags */ public final int getRFlags() { return this.rflags; } /** * Gets the proximity value indicating the distance to the target. * * @return the proximity */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2Lock.java
* @param length the number of bytes to lock * @param flags the lock flags (combination of SMB2_LOCKFLAG_* constants) */ public Smb2Lock(final long offset, final long length, final int flags) { this.offset = offset; this.length = length; this.flags = flags; } /** * {@inheritDoc} * * @see jcifs.Encodable#size() */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/spnego/NegTokenInit.java
/** * Checks if a specific context flag is set * @param flag the context flag to check * @return true if the flag is set, false otherwise */ public boolean getContextFlag(final int flag) { return (getContextFlags() & flag) == flag; } /** * Sets or clears a specific context flag * @param flag the context flag to set or clear
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/NtlmMessageTest.java
assertFalse(message.getFlag(0b0100), "Flag 0b0100 should not be set."); assertFalse(message.getFlag(0b0001), "Flag 0b0001 should not be set."); message.setFlags(0); // No flags set assertFalse(message.getFlag(0b1000), "No flags should be set."); } @Test void testSetFlag() { // Test setting a flag message.setFlags(0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponseTest.java
} @DisplayName("Should handle various share flag combinations") @ParameterizedTest @MethodSource("provideFlagCombinations") void testShareFlagCombinations(int flags, boolean expectedDfs) throws SMBProtocolDecodingException { // Given byte[] buffer = createValidResponseBuffer(0, flags, 0, 0); // When response.readBytesWireFormat(buffer, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0) -
src/test/java/jcifs/FileNotifyInformationTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0)