- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 388 for Flags2 (0.09 sec)
-
src/main/java/jcifs/smb/SmbNamedPipe.java
* file operations. * </ul> * * <p> * The jCIFS API maps all of these operations into the standard Java * <code>XxxputStream</code> interface. A special <code>PIPE_TYPE</code> * flags is necessary to distinguish which type of Named Pipe behavior * is desired. * * <table border="1"> * <caption>SmbNamedPipe Constructor Examples</caption> * <tr >
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java
} @Test @DisplayName("Should handle all flags set") void testAllFlagsSet() { int allFlags = 0xFFFFFFFF; testMessage.addFlags(allFlags); assertEquals(allFlags, testMessage.getFlags()); // Should still be able to clear specific flags testMessage.clearFlags(ServerMessageBlock2.SMB2_FLAGS_SIGNED);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 39.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileOutputStream.java
* @param off the start offset in the data * @param len the number of bytes to write * @param flags write operation flags * @throws IOException if an I/O error occurs */ public void writeDirect(final byte[] b, int off, int len, final int flags) throws IOException { if (len <= 0) { return; } if (this.tmp == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 12.8K bytes - Viewed (0) -
cmd/api-router.go
// `traceHdrsS3HFlag`, otherwise both headers and body will be traced, causing // high memory usage! func s3APIMiddleware(f http.HandlerFunc, flags ...s3HFlag) http.HandlerFunc { // Collect all flags with bitwise-OR and assign operator var handlerFlags s3HFlag for _, flag := range flags { handlerFlags |= flag } // Get name of the handler using reflection. handlerName := getHandlerName(f, "objectAPIHandlers")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed May 07 15:37:12 UTC 2025 - 23.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java
/** * Constructs an SMB2 negotiate request with the specified configuration and security mode. * * @param config the configuration for this request * @param securityMode the security mode flags for negotiation */ public Smb2NegotiateRequest(final Configuration config, final int securityMode) { super(config, SMB2_NEGOTIATE); this.securityMode = securityMode;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvPair.java
* * @author mbechler */ public class AvPair { /** * EOL type */ public static final int MsvAvEOL = 0x0; /** * Flags type */ public static final int MsvAvFlags = 0x6; /** * Timestamp type */ public static final int MsvAvTimestamp = 0x7; /** * Single host type */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SIDCacheImpl.java
} } } @Override public SID[] getGroupMemberSids(final CIFSContext tc, final String authorityServerName, final jcifs.SID domsid, final int rid, final int flags) throws CIFSException { final lsarpc.LsarSidArray sidarray = new lsarpc.LsarSidArray(); MsrpcGetMembersInAlias rpc = null; synchronized (this.sidCache) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 13.6K bytes - Viewed (0) -
docs/distributed/DESIGN.md
## Command-line ``` NAME: minio server - start object storage server USAGE: minio server [FLAGS] DIR1 [DIR2..] minio server [FLAGS] DIR{1...64} minio server [FLAGS] DIR{1...64} DIR{65...128} DIR: DIR points to a directory on a filesystem. When you want to combine multiple drives into a single large system, pass one directory per
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Feb 26 09:25:50 UTC 2025 - 8K bytes - Viewed (1) -
cmd/xl-storage-format-v2.go
return v > 0 } // On ID mismatch if v := bytes.Compare(x.VersionID[:], o.VersionID[:]); v != 0 { return v > 0 } // Flags if x.Flags != o.Flags { return x.Flags > o.Flags } return false } func (j xlMetaV2Version) getDataDir() string { if j.Valid() { switch j.Type { case LegacyType: return j.ObjectV1.DataDir
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 65.6K bytes - Viewed (1) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcSamrCloseHandleTest.java
assertEquals(0, msrpcSamrCloseHandle.getPtype(), "ptype should be 0"); assertEquals(MsrpcSamrCloseHandle.DCERPC_FIRST_FRAG | MsrpcSamrCloseHandle.DCERPC_LAST_FRAG, msrpcSamrCloseHandle.getFlags(), "flags should be DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG"); // Verify that the super constructor was called with the correct handle. // This is implicitly tested by the object being created without error and
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.4K bytes - Viewed (0)