- Sort Score
- Result 10 results
- Languages All
Results 621 - 630 of 1,509 for xpath (0.03 sec)
-
docs/es/docs/advanced/additional-responses.md
## Combina responses predefinidos y personalizados Es posible que desees tener algunos responses predefinidos que se apliquen a muchas *path operations*, pero que quieras combinarlos con responses personalizados necesarios por cada *path operation*. Para esos casos, puedes usar la técnica de Python de "desempaquetar" un `dict` con `**dict_to_unpack`: ```Python old_dict = { "old key": "old value",
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 9.1K bytes - Viewed (0) -
docs/es/docs/advanced/openapi-webhooks.md
/// Nota que con los webhooks en realidad no estás declarando un *path* (como `/items/`), el texto que pasas allí es solo un **identificador** del webhook (el nombre del evento), por ejemplo en `@app.webhooks.post("new-subscription")`, el nombre del webhook es `new-subscription`. Esto es porque se espera que **tus usuarios** definan el actual **URL path** donde quieren recibir la request del webhook de alguna otra manera (por ejemplo, un panel web).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java
return dstIndex - start; } @Override int writeBytesWireFormat(final byte[] dst, final int dstIndex) { int n = writeString(path, dst, dstIndex); writeInt2(useUnicode ? path.length() * 2 : n, dst, namelen_index); return n; } @Override int readParameterWordsWireFormat(final byte[] buffer, final int bufferIndex) { return 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 6.5K bytes - Viewed (0) -
cmd/admin-handlers.go
mapIfNotPresent(hostAnonymizer, schemePfx+endpoint.Host, newHostPort) } newHostPortPath := newHostPort if len(endpoint.Path) > 0 { // Host + port + path currentHostPortPath := endpoint.Host + endpoint.Path newHostPortPath = newHostPort + endpoint.Path mapIfNotPresent(hostAnonymizer, currentHostPortPath, newHostPortPath) mapIfNotPresent(hostAnonymizer, schemePfx+currentHostPortPath, newHostPortPath)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 99.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderRequest.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 6.3K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java
NdrBuffer src = new NdrBuffer(encodeBuffer, 0); netdfs.DfsInfo3 decodedInfo3 = new netdfs.DfsInfo3(); decodedInfo3.decode(src); assertEquals(info3.path, decodedInfo3.path); assertEquals(info3.comment, decodedInfo3.comment); assertEquals(info3.state, decodedInfo3.state); assertEquals(info3.num_stores, decodedInfo3.num_stores);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.9K bytes - Viewed (0) -
docs/ko/docs/tutorial/body-multiple-params.md
# 본문 - 다중 매개변수 지금부터 `Path`와 `Query`를 어떻게 사용하는지 확인하겠습니다. 요청 본문 선언에 대한 심화 사용법을 알아보겠습니다. ## `Path`, `Query` 및 본문 매개변수 혼합 당연하게 `Path`, `Query` 및 요청 본문 매개변수 선언을 자유롭게 혼합해서 사용할 수 있고, **FastAPI**는 어떤 동작을 할지 압니다. 또한, 기본 값을 `None`으로 설정해 본문 매개변수를 선택사항으로 선언할 수 있습니다. {* ../../docs_src/body_multiple_params/tutorial001.py hl[19:21] *} /// note | 참고 이 경우에는 본문으로 부터 가져온 ` item`은 기본값이 `None`이기 때문에, 선택사항이라는 점을 유의해야 합니다. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeHandleImplTest.java
} @Test @DisplayName("sendrecv SMB2 path issues IOCTL and returns response length") void testSendRecvSmb2() throws IOException, CIFSException { when(pipe.ensureTreeConnected()).thenReturn(tree); when(tree.acquire()).thenReturn(tree); // ensureOpen path when(tree.isSMB2()).thenReturn(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.7K bytes - Viewed (0) -
docs/ru/docs/tutorial/first-steps.md
``` </div> ### Шаг 3: определите *операцию пути (path operation)* #### Путь (path) "Путь" это часть URL, после первого символа `/`, следующего за именем домена. Для URL: ``` https://example.com/items/foo ``` ...путь выглядит так: ``` /items/foo ``` /// info | Дополнительная иформация Термин "path" также часто называется "endpoint" или "route". ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 12.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComDeleteDirectory.java
*/ package jcifs.smb1.smb1; class SmbComDeleteDirectory extends ServerMessageBlock { SmbComDeleteDirectory(final String directoryName) { this.path = directoryName; command = SMB_COM_DELETE_DIRECTORY; } @Override int writeParameterWordsWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.8K bytes - Viewed (0)