- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 736 for _path_ (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/smb1/smb1/SmbFile.java
p1 = path1.lastIndexOf('/'); p2 = path2.lastIndexOf('/'); l1 = path1.length() - p1; l2 = path2.length() - p2; // anything with dots voids comparison if ((l1 > 1 && path1.charAt(p1 + 1) == '.') || (l2 > 1 && path2.charAt(p2 + 1) == '.')) { return true; } return l1 == l2 && path1.regionMatches(true, p1, path2, p2, l1); }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 112.2K bytes - Click Count (0) -
docs/pt/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
# Dependências em decoradores de operações de rota { #dependencies-in-path-operation-decorators } Em alguns casos você não precisa necessariamente do valor de retorno de uma dependência dentro de uma *função de operação de rota*. Ou a dependência não retorna nenhum valor. Mas você ainda precisa que ela seja executada/resolvida.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 3.3K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
# 路徑操作裝飾器中的依賴 { #dependencies-in-path-operation-decorators } 有時在你的路徑操作函式中,其實不需要某個依賴的回傳值。 或是該依賴根本沒有回傳值。 但你仍需要它被執行/解析。 這種情況下,你可以不在路徑操作函式的參數上使用 `Depends`,而是在路徑操作裝飾器加入一個 `dependencies` 的 `list`。 ## 在路徑操作裝飾器加入 `dependencies` { #add-dependencies-to-the-path-operation-decorator } 路徑操作裝飾器可接受一個可選參數 `dependencies`。 它應該是由 `Depends()` 組成的 `list`: {* ../../docs_src/dependencies/tutorial006_an_py310.py hl[19] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 2.7K bytes - Click Count (0) -
docs/fr/docs/tutorial/path-params.md
Dans votre client, vous recevrez une réponse JSON comme : ```JSON { "model_name": "alexnet", "message": "Deep Learning FTW!" } ``` ## Paramètres de chemin contenant des chemins { #path-parameters-containing-paths } Disons que vous avez un *chemin d'accès* avec un chemin `/files/{file_path}`. Mais vous avez besoin que `file_path` lui-même contienne un *chemin*, comme `home/johndoe/myfile.txt`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 10.1K bytes - Click Count (0) -
docs/uk/docs/tutorial/path-params.md
На стороні клієнта ви отримаєте відповідь у форматі JSON, наприклад: ```JSON { "model_name": "alexnet", "message": "Deep Learning FTW!" } ``` ## Параметри шляху, що містять шляхи { #path-parameters-containing-paths } Припустімо, у вас є *операція шляху* зі шляхом `/files/{file_path}`. Але вам потрібно, щоб `file_path` сам містив *шлях*, наприклад `home/johndoe/myfile.txt`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 14K bytes - Click Count (0) -
docs/tr/docs/tutorial/path-params.md
```JSON { "model_name": "alexnet", "message": "Deep Learning FTW!" } ``` ## Path İçeren Path Parametreleri { #path-parameters-containing-paths } Diyelim ki `/files/{file_path}` path'ine sahip bir *path operation*'ınız var. Ama `file_path`'in kendisinin `home/johndoe/myfile.txt` gibi bir *path* içermesi gerekiyor. Böylece, o dosyanın URL'si şu şekilde olur: `/files/home/johndoe/myfile.txt`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 9.7K bytes - Click Count (0) -
docs/es/docs/advanced/sub-applications.md
"Montar" significa añadir una aplicación completamente "independiente" en un path específico, que luego se encarga de manejar todo bajo ese path, con las _path operations_ declaradas en esa sub-aplicación. ### Aplicación de nivel superior { #top-level-application } Primero, crea la aplicación principal de nivel superior de **FastAPI**, y sus *path operations*: {* ../../docs_src/sub_applications/tutorial001_py310.py hl[3, 6:8] *}
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 3.1K bytes - Click Count (0) -
okhttp/src/androidMain/baseline-prof.txt
HSPLokio/internal/_ByteStringKt;->access$decodeHexDigit(C)I HSPLokio/internal/_PathKt;-><clinit>()V HSPLokio/internal/_PathKt;->access$rootLength(Lokio/Path;)I HSPLokio/internal/_PathKt;->commonResolve(Lokio/Path;Lokio/Path;Z)Lokio/Path; HSPLokio/internal/_PathKt;->getSlash(Lokio/Path;)Lokio/ByteString; HSPLokio/internal/_PathKt;->toPath(Lokio/Buffer;Z)Lokio/Path; HSPLokio/internal/_PathKt;->toSlash(B)Lokio/ByteString;
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Mon Dec 30 23:28:56 GMT 2024 - 127.9K bytes - Click Count (1) -
compat/maven-model/src/test/java/org/apache/maven/model/pom/PomMemoryAnalyzer.java
} Path rootDir = Paths.get(args[0]); PomMemoryAnalyzer analyzer = new PomMemoryAnalyzer(); MavenStaxReader reader = new MavenStaxReader(); // Find all pom.xml files, excluding those under src/ or target/ Files.walk(rootDir) .filter(path -> path.getFileName().toString().equals("pom.xml")) .filter(path -> !containsSrcOrTarget(path))Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 13.4K bytes - Click Count (0) -
docs/ja/docs/tutorial/path-operation-configuration.md
# Path Operationの設定 { #path-operation-configuration } *path operationデコレータ*を設定するためのパラメータがいくつかあります。 /// warning | 注意 これらのパラメータは*path operationデコレータ*に直接渡され、*path operation関数*に渡されないことに注意してください。 /// ## レスポンスステータスコード { #response-status-code } *path operation*のレスポンスで使用する(HTTP)`status_code`を定義することができます。 `404`のように`int`のコードを直接渡すことができます。 しかし、それぞれの番号コードが何のためのものか覚えていない場合は、`status`のショートカット定数を使用することができます:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 4.8K bytes - Click Count (0)