- Sort Score
- Num 10 results
- Language All
Results 431 - 440 of 776 for excludes (0.07 seconds)
-
docs/en/docs/index.md
Used by FastAPI: * [`uvicorn`](https://www.uvicorn.dev) - for the server that loads and serves your application. This includes `uvicorn[standard]`, which includes some dependencies (e.g. `uvloop`) needed for high performance serving. * `fastapi-cli[standard]` - to provide the `fastapi` command. * This includes `fastapi-cloud-cli`, which allows you to deploy your FastAPI application to [FastAPI Cloud](https://fastapicloud.com).
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 07 09:29:03 GMT 2026 - 21.4K bytes - Click Count (0) -
docs/tr/docs/advanced/path-operation-advanced-configuration.md
/// warning | Uyarı Bunu yaparsanız, her bir *path operation function*’ın adının benzersiz olduğundan emin olmanız gerekir. Farklı modüllerde (Python dosyalarında) olsalar bile. /// ## OpenAPI’den Hariç Tutma { #exclude-from-openapi } Bir *path operation*’ı üretilen OpenAPI şemasından (dolayısıyla otomatik dokümantasyon sistemlerinden) hariç tutmak için `include_in_schema` parametresini kullanın ve `False` yapın: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) -
.teamcity/performance-test-durations.json
} ] }, { "scenario" : "org.gradle.performance.regression.corefeature.ExcludeRuleMergingPerformanceTest.merge exclude rules", "durations" : [ { "testProject" : "excludeRuleMergingBuild", "linux" : 290 } ] }, { "scenario" : "org.gradle.performance.regression.corefeature.ExcludeRuleMergingPerformanceTest.merge exclude rules (parallel)", "durations" : [ { "testProject" : "excludeRuleMergingBuild", "linux" : 238Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 04:45:09 GMT 2026 - 26.1K bytes - Click Count (0) -
android/guava/src/com/google/common/net/InetAddresses.java
} /** * Examines the Inet6Address to determine if it is an IPv6 address of one of the specified address * types that contain an embedded IPv4 address. * * <p>NOTE: ISATAP addresses are explicitly excluded from this method due to their trivial * spoofability. With other transition addresses spoofing involves (at least) infection of one's * BGP routing table. *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 47.7K bytes - Click Count (0) -
docs/ko/docs/tutorial/response-model.md
하지만 실제로 저장되지 않았을 경우 결과에서 이를 생략하고 싶을 수 있습니다. 예를 들어, NoSQL 데이터베이스에 많은 선택적 속성이 있는 모델이 있지만, 기본값으로 가득 찬 매우 긴 JSON 응답을 보내고 싶지 않습니다. ### `response_model_exclude_unset` 매개변수 사용 { #use-the-response-model-exclude-unset-parameter } *경로 처리 데코레이터* 매개변수 `response_model_exclude_unset=True`로 설정할 수 있습니다: {* ../../docs_src/response_model/tutorial004_py310.py hl[22] *} 그러면 이러한 기본값은 응답에 포함되지 않고, 실제로 설정된 값만 포함됩니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 17.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/IndexExportJob.java
/** * Exports a single document as a file. * * @param source the document source map * @param exportPath the base export directory path * @param excludeFields the set of field names to exclude from output * @param formatter the formatter to use for output */ protected void exportDocument(final Map<String, Object> source, final String exportPath, final Set<String> excludeFields,Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 10.8K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/path-operation-advanced-configuration.md
/// tip 如果你會手動呼叫 `app.openapi()`,請務必先更新所有 `operationId` 再呼叫。 /// /// warning 如果你這樣做,必須確保每個*路徑操作函式*都有唯一的名稱, 即使它們位於不同的模組(Python 檔案)中。 /// ## 從 OpenAPI 排除 { #exclude-from-openapi } 若要從產生的 OpenAPI 結構(也就是自動文件系統)中排除某個*路徑操作*,使用參數 `include_in_schema` 並將其設為 `False`: {* ../../docs_src/path_operation_advanced_configuration/tutorial003_py310.py hl[6] *}
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) -
src/main/java/jcifs/SID.java
* * @return the domain name */ String getDomainName(); /** * Return text representing the SID type suitable for display to * users. Text includes 'User', 'Domain group', 'Local group', etc. * * @return textual representation of type */ String getTypeText(); /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.4K bytes - Click Count (0) -
cmd/batch-replicate.go
Metadata []BatchJobKV `yaml:"metadata,omitempty" json:"metadata"` } // BatchJobReplicateFlags various configurations for replication job definition currently includes // - filter // - notify // - retry type BatchJobReplicateFlags struct { Filter BatchReplicateFilter `yaml:"filter" json:"filter"` Notify BatchJobNotification `yaml:"notify" json:"notify"`
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Aug 01 12:53:30 GMT 2024 - 6.3K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/NoticeTask.java
import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.TreeMap; import static org.apache.commons.io.FileUtils.readFileToString; /** * A task to create a notice file which includes dependencies' notices. */ public class NoticeTask extends DefaultTask { @InputFile private File inputFile = getProject().getRootProject().file("NOTICE.txt"); @OutputFile
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 6.9K bytes - Click Count (0)