- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 376 for 14 (0.08 sec)
-
src/main/java/jcifs/smb1/smb1/SmbComOpenAndX.java
private static final int SHARING_DENY_NONE = 0x40; private static final int DO_NOT_CACHE = 0x1000; // bit 12 private static final int WRITE_THROUGH = 0x4000; // bit 14 private static final int OPEN_FN_CREATE = 0x10; private static final int OPEN_FN_FAIL_IF_EXISTS = 0x00; private static final int OPEN_FN_OPEN = 0x01; private static final int OPEN_FN_TRUNC = 0x02;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.6K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm64enc.s
ANDSW R10@>21, R2, ZR // 5f54ca6a ANDS R17<<11, R24, ZR // 1f2f11ea UBFIZW $3, R19, $14, R14 // 6e361d53 UBFIZ $3, R22, $14, R4 // c4367dd3 UBFXW $3, R7, $20, R15 // ef580353 UBFX $33, R17, $25, R5 // 25e661d3
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Mon Jul 24 01:11:41 UTC 2023 - 43.9K bytes - Viewed (0) -
docs/pt/docs/tutorial/handling-errors.md
Mas caso você precise, para um cenário mais complexo, você pode adicionar headers customizados: {* ../../docs_src/handling_errors/tutorial002_py39.py hl[14] *} ## Instale manipuladores de exceções customizados { #install-custom-exception-handlers }Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 10.2K bytes - Viewed (0) -
docs/es/docs/tutorial/handling-errors.md
Probablemente no necesitarás usarlos directamente en tu código. Pero en caso de que los necesites para un escenario avanzado, puedes agregar headers personalizados: {* ../../docs_src/handling_errors/tutorial002_py39.py hl[14] *} ## Instalar manejadores de excepciones personalizados { #install-custom-exception-handlers }Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 9.7K bytes - Viewed (0) -
docs/en/docs/python-types.md
```Python hl_lines="1" {!> ../../docs_src/python_types/tutorial009_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="1 4" {!> ../../docs_src/python_types/tutorial009_py39.py!} ``` //// //// tab | Python 3.9+ alternative ```Python hl_lines="1 4" {!> ../../docs_src/python_types/tutorial009b_py39.py!} ``` //// #### Using `Union` or `Optional` { #using-union-or-optional }Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 15.6K bytes - Viewed (0) -
tests/test_tutorial/test_request_files/test_tutorial001_03.py
with path.open("rb") as file: response = client.post("/files/", files={"file": file}) assert response.status_code == 200, response.text assert response.json() == {"file_size": 14} def test_post_upload_file(tmp_path, client: TestClient): path = tmp_path / "test.txt" path.write_bytes(b"<file content>") with path.open("rb") as file:Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 6.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/CheckProject.kt
} buildType(GitHubMergeQueueCheckPass(model)) buildTypesOrder = buildTypes subProjectsOrder = subProjects cleanupRule( historyDays = 14, artifactsDays = 7, artifactsPatterns = """ +:**/* +:$HIDDEN_ARTIFACT_DESTINATION/**/*" """.trimIndent(), )Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Feb 12 09:12:03 UTC 2025 - 3.9K bytes - Viewed (1) -
src/main/java/jcifs/internal/fscc/FsctlPipeWaitRequest.java
return dstIndex - start; } /** * {@inheritDoc} * * @see jcifs.Encodable#size() */ @Override public int size() { return 14 + this.nameBytes.length; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateInitPluginTemplateVersionFile.kt
findLatest("commons-text", "org.apache.commons:commons-text:latest.release", versionProperties) findLatest("kotlin", "org.jetbrains.kotlin:kotlin-gradle-plugin:[1.4,)", versionProperties) store(versionProperties) } private fun store(properties: Properties) { PropertiesUtils.store( properties, libraryVersionFile.get().asFile,
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Nov 24 20:45:41 UTC 2025 - 5K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameServicePacketTest.java
when(mockQuestionName.writeWireFormat(any(byte[].class), anyInt())).thenReturn(10); // Mock name length int written = packet.writeQuestionSectionWireFormat(dst, 0); assertEquals(14, written); // 10 (name) + 2 (type) + 2 (class) verify(mockQuestionName).writeWireFormat(dst, 0); assertEquals((byte) 0x00, dst[10]); // questionType high byteRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.9K bytes - Viewed (0)