- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 665 for 16 (0.01 sec)
-
src/main/java/jcifs/ACE.java
/** * Permission to write file attributes */ int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9 /** * Standard delete permission */ int DELETE = 0x00010000; // 16 /** * Permission to read the security descriptor */ int READ_CONTROL = 0x00020000; // 17 /** * Permission to write the discretionary access control list */
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/info/Smb2SetInfoResponseTest.java
SMBUtil.writeInt2(0x0011, buffer, bufferIndex + 12); // Credits SMBUtil.writeInt2(1, buffer, bufferIndex + 14); // Flags SMBUtil.writeInt4(1, buffer, bufferIndex + 16); // SMB2_FLAGS_SERVER_TO_REDIR // Next command SMBUtil.writeInt4(0, buffer, bufferIndex + 20); // Message ID SMBUtil.writeInt8(1, buffer, bufferIndex + 24); // Reserved/Async ID
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.3K bytes - Viewed (0) -
docs/de/docs/tutorial/path-params.md
/// ### Deklarieren Sie einen *Pfad-Parameter* Dann erstellen Sie einen *Pfad-Parameter*, der als Typ die gerade erstellte Enum-Klasse hat (`ModelName`): {* ../../docs_src/path_params/tutorial005.py hl[16] *} ### Testen Sie es in der API-Dokumentation Weil die erlaubten Werte fΓΌr den *Pfad-Parameter* nun vordefiniert sind, kann die interaktive Dokumentation sie als Auswahl-Drop-Down anzeigen:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:29:01 UTC 2025 - 10K bytes - Viewed (0) -
docs/em/docs/advanced/openapi-callbacks.md
β«οΈ π π π π FastAPI *β‘ π οΈ*: * β«οΈ π π² βοΈ π πͺ β«οΈ π π¨, β `body: InvoiceEvent`. * & β«οΈ πͺ βοΈ π π¨ β«οΈ π π¨, β `response_model=InvoiceEventReceived`. {* ../../docs_src/openapi_callbacks/tutorial001.py hl[16:18,21:22,28:32] *} π€ 2οΈβ£ π πΊ βͺοΈβ‘οΈ π *β‘ π οΈ*: * β«οΈ π« πͺ βοΈ π β π, β©οΈ π π± π π π€ π π. β«οΈ π΄ βοΈ π *π’ π οΈ*. , π’ πͺ βοΈ `pass`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/MultiChannelIntegrationTest.java
// Mock context and session for ChannelManager when(mockContext.getConfig()).thenReturn(multiConfig); when(mockSession.getSessionKey()).thenReturn(new byte[16]); channelManager = new ChannelManager(mockContext, mockSession); } @Test void testMultiChannelInitialization() throws Exception { // Test that ChannelManager initializes properly
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 8.2K bytes - Viewed (0) -
okhttp/src/jvmTest/resources/web-platform-test-urltestdata.txt
http://\ufdd0zyx.com # ...This is the same as previous but escaped. http://%ef%b7%90zyx.com # Test name prepping, fullwidth input should be converted to ASCII and NOT # IDN-ized. This is "Go" in fullwidth UTF-8/UTF-16. http://\uff27\uff4f.com s:http p:/ h:go.com # URL spec forbids the following. # https://www.w3.org/Bugs/Public/show_bug.cgi?id=24257 http://\uff05\uff14\uff11.com http://%ef%bc%85%ef%bc%94%ef%bc%91.com
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 14.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/JvmUtilTest.java
assertEquals(4, JvmUtil.getJavaVersion()); System.setProperty("java.version", "1.5.0_15"); assertEquals(5, JvmUtil.getJavaVersion()); System.setProperty("java.version", "1.6.0_34"); assertEquals(6, JvmUtil.getJavaVersion()); System.setProperty("java.version", "1.7.0_25"); assertEquals(7, JvmUtil.getJavaVersion()); System.setProperty("java.version", "1.8.0_171");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 10.4K bytes - Viewed (0) -
src/test/java/jcifs/netbios/SessionRequestPacketTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
cmd/erasure-coding.go
// early instead of silently corrupting data. func erasureSelfTest() { // Approx runtime ~1ms var testConfigs [][2]uint8 for total := uint8(4); total < 16; total++ { for data := total / 2; data < total; data++ { parity := total - data testConfigs = append(testConfigs, [2]uint8{data, parity}) } }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 8.5K bytes - Viewed (0) -
guava/src/com/google/common/hash/LittleEndianByteArray.java
// TODO(user): Measure the benefit of delegating this to LittleEndianBytes also. return (source[offset] & 0xFF) | ((source[offset + 1] & 0xFF) << 8) | ((source[offset + 2] & 0xFF) << 16) | ((source[offset + 3] & 0xFF) << 24); } /** * Indicates that the load and store operations will be very efficient because of use of VarHandle
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 12.3K bytes - Viewed (0)