- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 388 for Flags2 (0.28 sec)
-
src/test/java/jcifs/smb1/smb1/TestLockingTest.java
assertEquals(100L, t.delay, "Default delay should be 100"); } @Test @DisplayName("Multiple flags are parsed correctly") void multipleFlags() { TestLocking t = new TestLocking(); // Parse multiple flags String[] args = { "-t", "3", "-i", "7", "-d", "200", "smb://test/file.txt" }; for (int ai = 0; ai < args.length; ai++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
proguard/base.pro
# Note: We intentionally don't add the flags we'd need to make Flags and Enums # work. That's because the Proguard configuration required to make them work on # optimized code would preclude lots of optimization, like converting enums # into ints. # Throwables uses internal APIs for lazy stack trace resolution -dontnote sun.misc.SharedSecrets -keep class sun.misc.SharedSecrets { *** getJavaLangAccess(...); } -dontnote sun.misc.JavaLangAccess
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 09 00:29:01 UTC 2023 - 1.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequestTest.java
// When - Create new request Smb2TreeConnectRequest req = new Smb2TreeConnectRequest(mockConfig, TEST_PATH); // Then - Tree flags should be initialized to 0 int flags = (int) treeFlagsField.get(req); assertEquals(0, flags); } @Test @DisplayName("Should handle maximum path length") void testMaximumPathLength() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcLsarCloseTest.java
// Verify that the constructor correctly sets ptype and flags // These values are inherited from LsarClose, but MsrpcLsarClose sets them in its constructor assertEquals(0, msrpcLsarClose.getPtype(), "ptype should be 0"); assertEquals(DcerpcConstants.DCERPC_FIRST_FRAG | DcerpcConstants.DCERPC_LAST_FRAG, msrpcLsarClose.getFlags(), "flags should be DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcHandle.java
// need fragementation msg.flags &= ~DCERPC_LAST_FRAG; fragSize = this.max_xmit - 24; } else { msg.flags |= DCERPC_LAST_FRAG; msg.alloc_hint = fragSize; } msg.length = 24 + fragSize; if (off > 0) { msg.flags &= ~DCERPC_FIRST_FRAG; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoRequest.java
} /** * Sets additional information flags for the query * * @param additionalInformation * the additionalInformation to set */ public final void setAdditionalInformation(final int additionalInformation) { this.additionalInformation = additionalInformation; } /** * Sets the query flags for the information request * * @param queryFlags
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0) -
docs/bucket/versioning/DESIGN.md
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Jul 17 15:43:14 UTC 2022 - 5.8K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java
assertEquals(0, msrpcShareGetInfo.getPtype()); // Check individual flag bits int flags = msrpcShareGetInfo.getFlags(); assertTrue((flags & DcerpcConstants.DCERPC_FIRST_FRAG) != 0); assertTrue((flags & DcerpcConstants.DCERPC_LAST_FRAG) != 0); } @Test void testShareInfo502Initialization() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/jcifs/ACE.java
* * @return descriptive text for the ACE scope */ String getApplyToText(); /** * Returns the flags for this ACE. The <code>isInherited()</code> * method checks the <code>FLAGS_INHERITED</code> bit in these flags. * * @return the ACE flags */ int getFlags(); /** * Returns true if this ACE is an inherited ACE and false if it is a direct ACE.
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/test/java/jcifs/internal/smb2/session/Smb2SessionSetupResponseTest.java
// Command at +12 SMBUtil.writeInt2(command, buf, start + 12); // Flags at +16: server-to-redirector SMBUtil.writeInt4(0x00000001, buf, start + 16); // SessionId at +40 (sync header) SMBUtil.writeInt8(sessionId, buf, start + 40); } /** * Build a SESSION_SETUP response body with specified flags and security blob. * securityBufferOffset is set relative to header start. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.7K bytes - Viewed (0)