- Sort Score
- Num 10 results
- Language All
Results 311 - 320 of 374 for Converter (0.05 seconds)
-
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
|| url.startsWith("gcs:"); } /** * Checks if the given path has a known protocol prefix that should not be converted. * Used to determine if path conversion is needed in the wizard. * * @param path the path to check * @return true if the path has a known protocol prefix */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 13:59:25 GMT 2026 - 12.4K bytes - Click Count (1) -
docs/fr/docs/index.md
* Vérifier qu'il a un attribut optionnel `is_offer`, qui doit être un `bool`, s'il est présent. * Tout cela fonctionne également pour les objets JSON profondément imbriqués. * Convertir automatiquement depuis et vers JSON. * Tout documenter avec OpenAPI, qui peut être utilisé par : * des systèmes de documentation interactive. * des systèmes de génération automatique de clients, pour de nombreux langages.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 23.8K bytes - Click Count (0) -
docs/uk/docs/tutorial/path-params.md
І документація все ще працюватиме, хоча й не додаватиме жодної документації, яка б казала, що параметр має містити шлях. ### Конвертер шляху { #path-convertor } Використовуючи опцію безпосередньо зі Starlette, ви можете оголосити *параметр шляху*, що містить *шлях*, використовуючи URL на кшталт: ``` /files/{file_path:path} ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 14K bytes - Click Count (0) -
src/main/java/org/codelibs/core/io/ResourceUtil.java
} /** * Converts the path. * * @param path * The resource path. * @param clazz * The class. * @return The converted result. */ public static String convertPath(final String path, final Class<?> clazz) { assertArgumentNotEmpty("path", path); assertArgumentNotNull("clazz", clazz);Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 14.7K bytes - Click Count (0) -
docs/pt/docs/tutorial/handling-errors.md
Mas isso significa que, se você simplesmente convertê-lo para uma string e retornar essa informação diretamente, você pode acabar vazando um pouco de informação sobre o seu sistema; por isso, aqui o código extrai e mostra cada erro de forma independente. ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 10.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
* Converts a crawling path to the appropriate protocol format. * Handles various path formats and adds proper protocol prefixes. * * @param path the original path to convert * @return the converted path with appropriate protocol prefix */ protected String convertCrawlingPath(final String path) { if (ComponentUtil.getProtocolHelper().hasKnownProtocol(path)) { return path; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 02:14:37 GMT 2026 - 16.4K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java
* @return true if either formal type is assignable from actual type, * or formal is a primitive type and actual is its corresponding object * type or an object type of a primitive type that can be converted to * the formal type. */ private static boolean isMethodInvocationConvertible(Class<?> formal, Class<?> actual) { // if it's a null, it means the arg was nullCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 14.2K bytes - Click Count (0) -
android/guava/src/com/google/common/reflect/Invokable.java
* @throws IllegalArgumentException if the number of actual and formal parameters differ; if an * unwrapping conversion for primitive arguments fails; or if, after possible unwrapping, a * parameter value cannot be converted to the corresponding formal parameter type by a method * invocation conversion. * @throws InvocationTargetException if the underlying method or constructor throws an exception. */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 21:06:42 GMT 2026 - 18.5K bytes - Click Count (0) -
docs/fr/docs/tutorial/path-params.md
Et la documentation fonctionnera quand même, même si aucune indication supplémentaire ne sera ajoutée pour dire que le paramètre doit contenir un chemin. ### Convertisseur de chemin { #path-convertor } En utilisant une option directement depuis Starlette, vous pouvez déclarer un *paramètre de chemin* contenant un *chemin* avec une URL comme : ``` /files/{file_path:path} ```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/zh-hant/docs/tutorial/path-params.md
### OpenAPI 支援 { #openapi-support } OpenAPI 並不支援直接宣告一個「路徑參數」內再包含一個「路徑」,因為那會導致難以測試與定義的情況。 然而,你仍可在 **FastAPI** 中這樣做,方法是使用 Starlette 的其中一個內部工具。 而文件依然能運作,只是它不會額外說明該參數應該包含一個路徑。 ### 路徑轉換器 { #path-convertor } 使用 Starlette 提供的選項,你可以用像這樣的 URL 來宣告一個包含「路徑」的「路徑參數」: ``` /files/{file_path:path} ``` 在這個例子裡,參數名稱是 `file_path`,而最後面的 `:path` 表示該參數應該匹配任意「路徑」。 所以你可以這樣使用它:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 8.4K bytes - Click Count (0)