- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 427 for Pflags (0.04 sec)
-
tensorflow/api_template_v1.__init__.py
# "contrib". if "__all__" in vars(): vars()["__all__"].append("contrib") from tensorflow.python.platform import flags # The "app" module will be imported as part of the placeholder section above. _current_module.app.flags = flags # pylint: disable=undefined-variable setattr(_current_module, "flags", flags) _major_api_version = 1 # Add module aliases from Keras to TF. # Some tf endpoints actually lives under Keras.
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 7.5K 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/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/smb1/dcerpc/DcerpcHandle.java
msg.flags &= ~DCERPC_LAST_FRAG; n = max_xmit - 24; } else { msg.flags |= DCERPC_LAST_FRAG; isDirect = false; msg.alloc_hint = n; } msg.length = 24 + n; 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 - 11.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTransaction.java
+ ",maxParameterCount=" + maxParameterCount + ",maxDataCount=" + maxDataCount + ",maxSetupCount=" + (int) maxSetupCount + ",flags=0x" + Hexdump.toHexString(flags, 2) + ",timeout=" + timeout + ",parameterCount=" + parameterCount + ",parameterOffset=" + parameterOffset + ",parameterDisplacement=" + parameterDisplacement + ",dataCount=" + dataCount
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/NtlmContextTest.java
assertTrue(type1Token.length > 0); // Decode the token to verify its properties Type1Message type1Message = new Type1Message(type1Token); // Type1Message ORs default flags with provided flags; ensure expected bits are present assertTrue((type1Message.getFlags() & context.ntlmsspFlags) == context.ntlmsspFlags); assertEquals(domain, type1Message.getSuppliedDomain()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java
@Test void testPtypeAndFlagsValues() { // Verify specific flag values are correctly set 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
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/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/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)