- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 695 for flag (0.02 sec)
-
src/test/java/jcifs/ntlmssp/Type2MessageTest.java
assertNotNull(bytes); // Ensure target name is NOT written to the byte array int flags = Type2Message.readULong(bytes, 20); assertFalse((flags & Type2Message.NTLMSSP_REQUEST_TARGET) != 0); } @Test @DisplayName("toByteArray should not set target info flag when target info is null") void testToByteArray_TargetInfoNull_FlagNotSet() throws IOException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 38.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/SmbNegotiationResponse.java
* * @return whether signing has been negotiated */ boolean isSigningNegotiated(); /** * Checks whether a specific capability has been negotiated. * * @param cap the capability flag to check * @return whether capability is negotiated */ boolean haveCapabilitiy(int cap); /** * Gets the negotiated send buffer size. * * @return the send buffer size
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
*/ protected int rdmaCredits; /** * Flag indicating whether RDMA is currently enabled and available */ protected boolean rdmaEnabled = false; /** * Port number for RDMA connections (default: 5445) */ protected int rdmaPort = 5445; // Witness protocol configuration fields /** * Flag indicating whether SMB Witness protocol should be used for failover */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.6.md
* Fixed an issue where commas were not accepted in --from-literal flags for the creation of secrets. ([#35191](https://github.com/kubernetes/kubernetes/pull/35191), [@SamiHiltunen](https://github.com/SamiHiltunen)) * Passing multiple values separated by a comma in a single --from-literal flag is no longer supported. Please use multiple --from-literal flags to provide multiple values.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 304K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java
* */ public class Smb2CloseResponse extends ServerMessageBlock2Response implements SmbBasicFileInfo { private static final Logger log = LoggerFactory.getLogger(Smb2CloseResponse.class); /** * Flag to query attributes after close */ public static final int SMB2_CLOSE_FLAG_POSTQUERY_ATTIB = 0x1; private final byte[] fileId; private final String fileName; private int closeFlags;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbCopyUtilTest.java
int access = accessCaptor.getValue(); boolean hasReadData = (access & SmbConstants.FILE_READ_DATA) != 0; assertEquals(alsoRead, hasReadData, "FILE_READ_DATA flag presence should match alsoRead"); } @Test @DisplayName("openCopyTargetFile retries after removing READONLY and succeeds") void openCopyTargetFile_retryOnReadonly_thenSuccess() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.1K bytes - Viewed (0) -
cmd/bucket-handlers_test.go
// Delete valid objects with quiet flag off. 1: { bucket: bucketName, objects: successRequest0, accessKey: credentials.AccessKey, secretKey: credentials.SecretKey, expectedContent: encodedSuccessResponse0, expectedRespStatus: http.StatusOK, }, // Test case - 2. // Delete deleted objects with quiet flag off. 2: {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 39.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java
* Check if this is the primary channel * * @return true if primary */ public boolean isPrimary() { return isPrimary; } /** * Set primary channel flag * * @param primary true if primary */ public void setPrimary(boolean primary) { this.isPrimary = primary; } /** * Get number of bytes sent *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaMemoryRegion.java
protected final int localKey; /** Remote key for remote RDMA access */ protected final int remoteKey; /** Virtual address of the memory region */ protected final long address; /** Flag indicating if the memory region is still valid */ protected volatile boolean valid; /** * Create new RDMA memory region * * @param buffer memory buffer to register
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.4.md
* In a future release, the value of this flag will be defaulted to `true`.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 133.5K bytes - Viewed (0)