- Sort Score
- Num 10 results
- Language All
Results 741 - 750 of 1,080 for Defines (0.37 seconds)
-
android/guava/src/com/google/common/net/InternetDomainName.java
* ["mail", "google", "com"]}. */ public ImmutableList<String> parts() { return parts; } /** * Indicates whether this domain name represents a <i>public suffix</i>, as defined by the Mozilla * Foundation's <a href="http://publicsuffix.org/">Public Suffix List</a> (PSL). A public suffix * is one under which Internet users can directly register names, such as {@code com}, {@code
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 21:21:59 GMT 2026 - 26.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileconfig/ApiAdminFileconfigAction.java
import jakarta.annotation.Resource; /** * API action for admin file configuration management. * Provides RESTful API endpoints for managing file crawling configuration settings in the Fess search engine. * File configurations define settings for crawling file systems, FTP servers, and other file-based data sources. * */ public class ApiAdminFileconfigAction extends FessApiAdminAction {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 9.2K bytes - Click Count (0) -
docs/es/docs/tutorial/metadata.md
<img src="/img/tutorial/metadata/image02.png"> ### Orden de las etiquetas { #order-of-tags } El orden de cada diccionario de metadata de etiqueta también define el orden mostrado en la interfaz de documentación. Por ejemplo, aunque `users` iría después de `items` en orden alfabético, se muestra antes porque agregamos su metadata como el primer diccionario en la list.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 6.3K bytes - Click Count (0) -
docs/tr/docs/tutorial/body-nested-models.md
Yani belirli attribute adları, tipleri ve validation kurallarıyla derin iç içe JSON "object"leri tanımlayabilirsiniz. Hem de istediğiniz kadar iç içe. ### Bir alt model tanımlayın { #define-a-submodel } Örneğin bir `Image` modeli tanımlayabiliriz: {* ../../docs_src/body_nested_models/tutorial004_py310.py hl[7:9] *} ### Alt modeli tip olarak kullanın { #use-the-submodel-as-a-type }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 7.5K bytes - Click Count (0) -
build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml
<suppress checks="JavadocPackage" files=".*[/\\]platforms[/\\]ide[/\\]ide-plugins[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]plugins[/\\]ide[/\\]eclipse[/\\][^/\\]+"/> <!-- Protocol types may only define constants in interfaces --> <suppress checks="InterfaceIsTypeCheck" files=".*[/\\]tooling-api[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]tooling[/\\]internal[/\\]protocol.+"/>
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 19 16:48:15 GMT 2026 - 13.5K bytes - Click Count (0) -
docs/changelogs/upgrading_to_okhttp_4.md
SAM Conversions --------------- When you use Java APIs from Kotlin you can operate on Java interfaces as if they were Kotlin lambdas. The [feature][java_sams] is available for interfaces that define a Single Abstract Method (SAM). But when you use Kotlin APIs from Kotlin there’s no automatic conversion. Code that used SAM lambdas with OkHttp 3.x: must use `object :` with OkHttp 4.x: Kotlin calling OkHttp 3.x:
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Feb 06 16:58:16 GMT 2022 - 10.9K bytes - Click Count (0) -
docs/pt/docs/advanced/events.md
Apenas um detalhe técnico para nerds curiosos. 🤓 Por baixo, na especificação técnica do ASGI, isso é parte do [Protocolo Lifespan](https://asgi.readthedocs.io/en/latest/specs/lifespan.html), e define eventos chamados `startup` e `shutdown`. /// info | Informação Você pode ler mais sobre os manipuladores de `lifespan` do Starlette na [Documentação do Lifespan do Starlette](https://www.starlette.dev/lifespan/).
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 8.7K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/body-nested-models.md
之後只要輸出該資料,即使來源有重覆,也會以唯一元素的 `set` 輸出。 並且也會在註解/文件中相應標示。 ## 巢狀模型 { #nested-models } 每個 Pydantic 模型的屬性都有型別。 而該型別本身也可以是另一個 Pydantic 模型。 因此,你可以宣告具有特定屬性名稱、型別與驗證的深度巢狀 JSON「物件」。 而且可以任意深度巢狀。 ### 定義子模型 { #define-a-submodel } 例如,我們可以定義一個 `Image` 模型: {* ../../docs_src/body_nested_models/tutorial004_py310.py hl[7:9] *} ### 將子模型作為型別使用 { #use-the-submodel-as-a-type } 然後把它作為某個屬性的型別使用:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 6.5K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/request-files.md
``` 因為上傳的檔案是以「表單資料」送出的。 /// ## 匯入 `File` { #import-file } 從 `fastapi` 匯入 `File` 與 `UploadFile`: {* ../../docs_src/request_files/tutorial001_an_py310.py hl[3] *} ## 定義 `File` 參數 { #define-file-parameters } 和 `Body` 或 `Form` 一樣的方式建立檔案參數: {* ../../docs_src/request_files/tutorial001_an_py310.py hl[9] *} /// info `File` 是直接繼承自 `Form` 的類別。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 6.6K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/Service.java
* @since 13.0 */ void addListener(Listener listener, Executor executor); /** * The lifecycle states of a service. * * <p>The ordering of the {@link State} enum is defined such that if there is a state transition * from {@code A -> B} then {@code A.compareTo(B) < 0}. N.B. The converse is not true, i.e. if
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 10.8K bytes - Click Count (0)