- Sort Score
- Num 10 results
- Language All
Results 141 - 150 of 1,464 for kInput (0.15 seconds)
-
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantExtension.java
this.isWindowsVM = false; } @Input public String getBox() { return box.get(); } public void setBox(String box) { // TODO: should verify this against the Vagrantfile, but would need to do so in afterEvaluate once vagrantfile is unmodifiable this.box.set(box); } @Input public Map<String, Object> getHostEnv() { return hostEnv.get();Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 2.4K bytes - Click Count (0) -
tests/test_dependency_overrides.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 09:59:14 GMT 2026 - 11.2K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/login/newpassword.jsp
<la:form styleId="newPassword" method="post"> <div class="input-group mb-3"> <c:set var="ph_new_password"> <la:message key="labels.login.placeholder_new_password" /> </c:set> <la:password property="password" class="form-control" placeholder="${ph_new_password}" /> <div class="input-group-append"> <span class="input-group-text"> <i class="fa fa-lock fa-fw" aria-hidden="true"></i>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 13 05:54:52 GMT 2025 - 3.1K bytes - Click Count (0) -
docs/ko/docs/how-to/separate-openapi-schemas.md
<div class="screenshot"> <img src="/img/tutorial/separate-openapi-schemas/image03.png"> </div> ### 문서에서의 입력과 출력 모델 { #model-for-input-and-output-in-docs } 또 OpenAPI에서 사용 가능한 모든 Schemas(JSON Schemas)를 확인해 보면, `Item-Input` 하나와 `Item-Output` 하나, 이렇게 두 개가 있는 것을 볼 수 있습니다. `Item-Input`에서는 `description`이 **필수가 아니며**, 빨간 별표가 없습니다. 하지만 `Item-Output`에서는 `description`이 **필수이며**, 빨간 별표가 있습니다. <div class="screenshot">
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:57:01 GMT 2026 - 5.3K bytes - Click Count (0) -
tests/test_request_params/test_query/test_list.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Feb 08 10:18:38 GMT 2026 - 11.2K bytes - Click Count (0) -
docs/debugging/inspect/main.go
switch { case *stdin: // Parse 'mc support inspect --json' output input := struct { File string `json:"file"` Key string `json:"key"` }{} got, err := io.ReadAll(os.Stdin) if err != nil { fatalErr(err) } fatalErr(json.Unmarshal(got, &input)) inputs = []string{input.File} *keyHex = input.Key case len(flag.Args()) == 1: var err errorCreated: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Feb 17 17:09:42 GMT 2025 - 5.7K bytes - Click Count (0) -
guava/src/com/google/common/collect/TableCollectors.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Feb 11 19:03:19 GMT 2025 - 7.5K bytes - Click Count (0) -
docs/zh-hant/docs/how-to/separate-openapi-schemas.md
自從 Pydantic v2 發佈後,生成的 OpenAPI 比以往更精確也更正確。😎 實際上,在某些情況下,同一個 Pydantic 模型在 OpenAPI 中會同時有兩個 JSON Schema:分別用於輸入與輸出,這取決於它是否有預設值。 來看看它如何運作,以及若需要時該如何調整。 ## 作為輸入與輸出的 Pydantic 模型 { #pydantic-models-for-input-and-output } 假設你有一個帶有預設值的 Pydantic 模型,如下所示: {* ../../docs_src/separate_openapi_schemas/tutorial001_py310.py ln[1:7] hl[7] *} ### 輸入用模型 { #model-for-input } 如果你把這個模型用作輸入,如下所示:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 4.1K bytes - Click Count (0) -
docs/zh/docs/how-to/separate-openapi-schemas.md
<div class="screenshot"> <img src="/img/tutorial/separate-openapi-schemas/image03.png"> </div> ### 文档中的输入/输出模型 { #model-for-input-and-output-in-docs } 如果你查看 OpenAPI 中可用的所有 Schema(JSON Schema),你会看到有两个,一个是 `Item-Input`,一个是 `Item-Output`。 对于 `Item-Input`,`description` **不是必填**,没有红色星号。 但对于 `Item-Output`,`description` 是**必填**,带有红色星号。 <div class="screenshot">
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:37:57 GMT 2026 - 4.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/math/BigDecimalMathTest.java
private static final class RoundToDoubleTester { private final BigDecimal input; private final Map<RoundingMode, Double> expectedValues = new EnumMap<>(RoundingMode.class); private boolean unnecessaryShouldThrow = false; RoundToDoubleTester(BigDecimal input) { this.input = input; } @CanIgnoreReturnValueCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 05:21:26 GMT 2026 - 11K bytes - Click Count (0)