- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 40 for file_path (0.06 sec)
-
docs/em/docs/tutorial/path-params.md
๐ ๐ฉโ๐ป ๐ ๐ ๐ค ๐ป ๐จ ๐: ```JSON { "model_name": "alexnet", "message": "Deep Learning FTW!" } ``` ## โก ๐ข โ โก โก๏ธ ๐ฌ ๐ โ๏ธ *โก ๐ ๏ธ* โฎ๏ธ โก `/files/{file_path}`. โ๏ธ ๐ ๐ช `file_path` โซ๏ธ ๐ *โก*, ๐ `home/johndoe/myfile.txt`. , ๐ ๐ ๐ ๐ ๐ณ ๐: `/files/home/johndoe/myfile.txt`. ### ๐ ๐โ๐ฆบ ๐ ๐ซ ๐โ๐ฆบ ๐ ๐ฃ *โก ๐ข* ๐ *โก* ๐, ๐ ๐ช โ๏ธ ๐ ๐ โ ๐ฏ & ๐ฌ.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.5K bytes - Viewed (0) -
docs/id/docs/tutorial/path-params.md
```JSON { "model_name": "alexnet", "message": "Deep Learning FTW!" } ``` ## Parameter path berisi path Misalkan terdapat *operasi path* dengan path `/files/{file_path}`. Tetapi anda memerlukan `file_path` itu berisi *path*, seperti like `home/johndoe/myfile.txt`. Sehingga URL untuk file tersebut akan seperti: `/files/home/johndoe/myfile.txt`. ### Dukungan OpenAPI
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:29:01 UTC 2025 - 8.8K bytes - Viewed (0) -
docs/pt/docs/tutorial/path-params.md
"model_name": "alexnet", "message": "Deep Learning FTW!" } ``` ## Parรขmetros de rota que contรฉm caminhos Digamos que vocรช tenha uma *operaรงรฃo de rota* com uma rota `/files/{file_path}`. Mas vocรช precisa que o prรณprio `file_path` contenha uma *rota*, como `home/johndoe/myfile.txt`. Entรฃo, a URL para este arquivo deveria ser algo como: `/files/home/johndoe/myfile.txt`. ### Suporte do OpenAPI
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.6K bytes - Viewed (0) -
docs/en/docs/tutorial/path-params.md
"message": "Deep Learning FTW!" } ``` ## Path parameters containing paths { #path-parameters-containing-paths } Let's say you have a *path operation* with a path `/files/{file_path}`. But you need `file_path` itself to contain a *path*, like `home/johndoe/myfile.txt`. So, the URL for that file would be something like: `/files/home/johndoe/myfile.txt`. ### OpenAPI support { #openapi-support }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:29:01 UTC 2025 - 9.3K bytes - Viewed (0) -
docs/es/docs/tutorial/path-params.md
```JSON { "model_name": "alexnet", "message": "Deep Learning FTW!" } ``` ## Parรกmetros de path conteniendo paths Imaginemos que tienes una *path operation* con un path `/files/{file_path}`. Pero necesitas que `file_path` en sรญ mismo contenga un *path*, como `home/johndoe/myfile.txt`. Entonces, la URL para ese archivo serรญa algo como: `/files/home/johndoe/myfile.txt`. ### Soporte de OpenAPI
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:29:01 UTC 2025 - 9.4K bytes - Viewed (0) -
docs/ko/docs/tutorial/path-params.md
ํด๋ผ์ด์ธํธ๋ ์๋์ JSON ์๋ต์ ์ป์ต๋๋ค: ```JSON { "model_name": "alexnet", "message": "Deep Learning FTW!" } ``` ## ๊ฒฝ๋ก๋ฅผ ํฌํจํ๋ ๊ฒฝ๋ก ๋งค๊ฐ๋ณ์ ๊ฒฝ๋ก๋ฅผ ํฌํจํ๋ *๊ฒฝ๋ก ์๋* `/files/{file_path}`์ด ์๋ค๊ณ ํด๋ด ์๋ค. ๊ทธ๋ฐ๋ฐ ์ด ๊ฒฝ์ฐ `file_path` ์์ฒด๊ฐ `home/johndoe/myfile.txt`์ ๊ฐ์ ๊ฒฝ๋ก๋ฅผ ํฌํจํด์ผ ํฉ๋๋ค. ์ด๋ ํด๋น ํ์ผ์ URL์ ๋ค์์ฒ๋ผ ๋ฉ๋๋ค: `/files/home/johndoe/myfile.txt`. ### OpenAPI ์ง์
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.6K bytes - Viewed (0) -
cmd/bitrot-whole.go
// Returns whole-file bitrot writer. func newWholeBitrotWriter(disk StorageAPI, volume, filePath string, algo BitrotAlgorithm, shardSize int64) io.WriteCloser { return &wholeBitrotWriter{disk, volume, filePath, shardSize, algo.New()} } // Implementation to verify bitrot for the whole file. type wholeBitrotReader struct { disk StorageAPI volume string filePath string verifier *BitrotVerifier // Holds the bit-rot info
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Jan 31 02:11:45 UTC 2024 - 2.7K bytes - Viewed (0) -
cmd/bitrot_test.go
func testBitrotReaderWriterAlgo(t *testing.T, bitrotAlgo BitrotAlgorithm) { tmpDir := t.TempDir() volume := "testvol" filePath := "testfile" disk, err := newLocalXLStorage(tmpDir) if err != nil { t.Fatal(err) } disk.MakeVol(t.Context(), volume) writer := newBitrotWriter(disk, "", volume, filePath, 35, bitrotAlgo, 10) _, err = writer.Write([]byte("aaaaaaaaaa")) if err != nil { t.Fatal(err) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 09 14:28:39 UTC 2025 - 2K bytes - Viewed (0) -
cmd/config-dir.go
func getDefaultConfigDir() string { homeDir, err := homedir.Dir() if err != nil { return "" } return filepath.Join(homeDir, defaultMinioConfigDir) } func getDefaultCertsDir() string { return filepath.Join(getDefaultConfigDir(), certsDir) } func getDefaultCertsCADir() string { return filepath.Join(getDefaultCertsDir(), certsCADir) } var ( // Default config, certs and CA directories.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Jan 02 17:15:06 UTC 2022 - 3K bytes - Viewed (0) -
misc/ios/go_ios_exec.go
// the package being tested and the source root. pkgpath = "" for _, element := range strings.Split(finalPkgpath, string(filepath.Separator)) { if debug { log.Printf("copying %s", pkgpath) } pkgpath = filepath.Join(pkgpath, element) dst := filepath.Join(dstbase, pkgpath) src := filepath.Join(cwd, pkgpath) if err := copyLocalDir(dst, src); err != nil { return "", err } } if underGoRoot {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Jun 18 16:32:49 UTC 2024 - 8.7K bytes - Viewed (0)