- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 497 for flags0 (0.55 sec)
-
docs/debugging/xl-meta/main.go
ModTime time.Time Signature string Type uint8 Flags uint8 EcM, EcN uint8 // Note that these will be 0/0 for non-v2 objects and older xl.meta }{ VersionID: hex.EncodeToString(z.VersionID[:]), ModTime: time.Unix(0, z.ModTime), Signature: hex.EncodeToString(z.Signature[:]), Type: z.Type, Flags: z.Flags, EcM: z.EcM, EcN: z.EcN, } return json.Marshal(tmp)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 40.3K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
public static final String NAME = "DH2Q"; // Durable Handle V2 Request private long timeout; private int flags; private HandleGuid createGuid; public DurableHandleV2Request(long timeout, boolean persistent) { super(NAME); this.timeout = timeout; this.flags = persistent ? Smb2HandleCapabilities.SMB2_DHANDLE_FLAG_PERSISTENT : 0; this.createGuid = new HandleGuid(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.idl
typedef struct { [string] wchar_t *dfs_name; } DfsInfo200; typedef struct { uint32_t count; [size_is(count)] DfsInfo200 *s; } DfsEnumArray200; typedef struct { uint32_t flags; [string] wchar_t *dfs_name; } DfsInfo300; typedef struct { uint32_t count; [size_is(count)] DfsInfo300 *s; } DfsEnumArray300; typedef union { [case(1)] DfsEnumArray1 *info1;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComNegotiateResponseTest.java
private void setNegotiatedFlags2(SmbComNegotiateResponse response, int flags2) { try { Field field = response.getClass().getDeclaredField("negotiatedFlags2"); field.setAccessible(true); field.set(response, flags2); } catch (Exception e) { throw new RuntimeException("Failed to set negotiatedFlags2 field", e); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnum.java
super(server, 200, 0xFFFF, new netdfs.DfsEnumStruct(), new NdrLong(0)); this.info.level = this.level; this.info.e = new netdfs.DfsEnumArray200(); this.ptype = 0; this.flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG; } /** * Returns the DFS root entries retrieved from the enumeration. * * @return an array of FileEntry objects representing the DFS roots */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaAccess.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb2.rdma; /** * RDMA memory access permissions for registered memory regions. * These flags control what operations can be performed on a memory region. */ public enum RdmaAccess { /** * Local read access to the memory region */ LOCAL_READ, /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 1.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java
assertDoesNotThrow(() -> request.setPadding((byte) 1)); assertDoesNotThrow(() -> request.setPadding((byte) 0xFF)); } @Test @DisplayName("Should set read flags correctly") void testSetReadFlags() { assertDoesNotThrow(() -> request.setReadFlags((byte) 0)); assertDoesNotThrow(() -> request.setReadFlags(Smb2ReadRequest.SMB2_READFLAG_READ_UNBUFFERED));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
} this.securityMode = SMBUtil.readInt2(buffer, bufferIndex + 2); // Validate security mode flags if ((this.securityMode & ~(Smb2Constants.SMB2_NEGOTIATE_SIGNING_ENABLED | Smb2Constants.SMB2_NEGOTIATE_SIGNING_REQUIRED)) != 0) { log.warn("Server returned unknown security mode flags: 0x{}", Integer.toHexString(this.securityMode)); } bufferIndex += 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
docs/es/docs/advanced/wsgi.md
Y luego móntala bajo un path. {* ../../docs_src/wsgi/tutorial001.py hl[2:3,3] *} ## Revisa Ahora, cada request bajo el path `/v1/` será manejado por la aplicación Flask. Y el resto será manejado por **FastAPI**. Si lo ejecutas y vas a <a href="http://localhost:8000/v1/" class="external-link" target="_blank">http://localhost:8000/v1/</a> verás el response de Flask: ```txt Hello, World from Flask!
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 1.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.5.md
* Important Security-related changes before upgrading * You *MUST* set `--anonymous-auth=false` flag on your kube-apiserver unless you are a developer testing this feature and understand it. If you do not, you risk allowing unauthorized users to access your apiserver. * You *MUST* set `--anonymous-auth=false` flag on your federation apiserver unless you are a developer testing this feature and understand it.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 136.4K bytes - Viewed (0)