- Sort Score
- Result 10 results
- Languages All
Results 911 - 920 of 1,501 for PATH (0.04 sec)
-
src/test/java/jcifs/http/HandlerTest.java
// results in an IOException, as no default handler should be found. assertThrows(IOException.class, () -> { handler.openConnection(new URL("unknownprotocol://somehost/path")); }, "Should throw IOException for an unknown protocol."); } @Test void testSetURLStreamHandlerFactory_SuccessFirstTime() {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.1K bytes - Viewed (0) -
docs/em/docs/tutorial/schema-extra-example.md
{* ../../docs_src/schema_extra_example/tutorial002.py hl[4,10:13] *} /// warning ๐ง ๐คฏ ๐ ๐ โ โ ๐ถโโ๏ธ ๐ ๐ซ ๐ฎ ๐ ๐ฌ, ๐ด โ โน, ๐งพ ๐ฏ. /// ## `example` & `examples` ๐ ๐โ โ๏ธ ๐: * `Path()` * `Query()` * `Header()` * `Cookie()` * `Body()` * `Form()` * `File()` ๐ ๐ช ๐ฃ ๐ฝ `example` โ๏ธ ๐ช `examples` โฎ๏ธ ๐ โน ๐ ๐ ๐ฎ **๐**. ### `Body` โฎ๏ธ `example`Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.6K bytes - Viewed (0) -
docs/ko/docs/openapi-webhooks.md
**FastAPI** ์ ํ๋ฆฌ์ผ์ด์ ์ ๋ง๋ค ๋, `webhooks` ์์ฑ์ ์ฌ์ฉํ์ฌ *์นํ *์ ์ ์ํ ์ ์์ต๋๋ค. ์ด๋ `@app.webhooks.post()`์ ๊ฐ์ ๋ฐฉ์์ผ๋ก *๊ฒฝ๋ก(path) ์์ *์ ์ ์ํ๋ ๊ฒ๊ณผ ๋น์ทํฉ๋๋ค. {* ../../docs_src/openapi_webhooks/tutorial001.py hl[9:13,36:53] *} ์ด๋ ๊ฒ ์ ์ํ ์นํ ์ **OpenAPI** ์คํค๋ง์ ์๋ **๋ฌธ์ํ UI**์ ํ์๋ฉ๋๋ค. /// info `app.webhooks` ๊ฐ์ฒด๋ ์ฌ์ค `APIRouter`์ผ ๋ฟ์ด๋ฉฐ, ์ฌ๋ฌ ํ์ผ๋ก ์ฑ์ ๊ตฌ์ฑํ ๋ ์ฌ์ฉํ๋ ๊ฒ๊ณผ ๋์ผํ ํ์ ์ ๋๋ค. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Nov 26 22:08:57 UTC 2024 - 3K bytes - Viewed (0) -
src/test/java/jcifs/smb/JAASAuthenticatorTest.java
switch (variant) { case DEFAULT_WITH_PS: { JAASAuthenticator a = new JAASAuthenticator(); // Provide a preset Subject so the getSubject() path uses the (serviceName, ps, this) constructor a.setSubject(new Subject()); return a; } case WITH_CONFIG: {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.9K bytes - Viewed (0) -
docs/es/docs/deployment/server-workers.md
```console $ <pre> <font color="#4E9A06">fastapi</font> run --workers 4 <u style="text-decoration-style:single">main.py</u> <font color="#3465A4">INFO </font> Using path <font color="#3465A4">main.py</font> <font color="#3465A4">INFO </font> Resolved absolute path <font color="#75507B">/home/user/code/awesomeapp/</font><font color="#AD7FA8">main.py</font>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 8.9K bytes - Viewed (0) -
ci/official/containers/ml_build/builder.devtoolset/build_devtoolset.sh
# Download glibc's shared and development libraries based on the value of the # `VERSION` parameter. # Note: 'Templatizing' this and the other conditional branches would require # defining several variables (version, os, path) making it difficult to maintain # and extend for future modifications. case "${VERSION}" in devtoolset-7) # Download binary glibc 2.12 shared library release.
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Tue Sep 24 20:45:58 UTC 2024 - 8K bytes - Viewed (0) -
cmd/data-scanner-metric.go
func (p *scannerMetrics) currentPathUpdater(disk, initial string) (update func(path string), done func()) { initialPtr := unsafe.Pointer(&initial) tracker := ¤tPathTracker{ name: &initialPtr, } p.currentPaths.Store(disk, tracker) return func(path string) { atomic.StorePointer(tracker.name, unsafe.Pointer(&path)) }, func() { p.currentPaths.Delete(disk) } }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 9.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/util/UpdateWrapper.kt
successfulOnly = true } } } } steps { exec { name = "UPDATE_WRAPPER_AND_CREATE_PR" path = ".teamcity/scripts/update_wrapper_and_create_pr.sh" arguments = "%wrapperVersion%" } } dependencies {Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Jul 24 03:08:48 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComQueryInformationTest.java
} @Test public void testConstructor() { // Test if the constructor sets the file name and command correctly assertEquals(TEST_FILE_NAME, smbComQueryInformation.path); assertEquals(ServerMessageBlock.SMB_COM_QUERY_INFORMATION, smbComQueryInformation.command); } @Test public void testWriteParameterWordsWireFormat() {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.4K bytes - Viewed (0) -
docs/en/docs/tutorial/request-forms-and-files.md
And you can declare some of the files as `bytes` and some as `UploadFile`. /// warning You can declare multiple `File` and `Form` parameters in a *path operation*, but you can't also declare `Body` fields that you expect to receive as JSON, as the request will have the body encoded using `multipart/form-data` instead of `application/json`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 1.5K bytes - Viewed (0)