- Sort Score
- Result 10 results
- Languages All
Results 1141 - 1150 of 1,625 for lists (0.03 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
profileActivationContext.setProjectProperties(modelv4.getProperties()); List<org.apache.maven.api.model.Profile> interpolatedProfiles = interpolateActivations(modelv4.getProfiles(), profileActivationContext, problems); // profile injection List<org.apache.maven.api.model.Profile> activePomProfiles =
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 83.6K bytes - Viewed (0) -
docs/ru/docs/tutorial/query-params-str-validations.md
значение по умолчанию для `q` будет: `["foo", "bar"]` и ответом для вас будет: ```JSON { "q": [ "foo", "bar" ] } ``` #### Использование `list` Вы также можете использовать `list` напрямую вместо `List[str]` (или `list[str]` в Python 3.9+): //// tab | Python 3.9+ ```Python hl_lines="9" {!> ../../docs_src/query_params_str_validations/tutorial013_an_py39.py!} ``` ////
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 37.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.query; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.apache.lucene.search.Query; import org.codelibs.fess.entity.QueryContext;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/FunctionalTest.kt
id: String, name: String, description: String, val testCoverage: TestCoverage, stage: Stage, parallelizationMethod: ParallelizationMethod = ParallelizationMethod.None, subprojects: List<String> = listOf(), extraParameters: String = "", extraBuildSteps: BuildSteps.() -> Unit = {}, preBuildSteps: BuildSteps.() -> Unit = {} ) : OsAwareBaseGradleBuildType(os = testCoverage.os, stage = stage, init = {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Sep 25 06:14:43 UTC 2024 - 4.5K bytes - Viewed (0) -
docs/pt/docs/tutorial/security/simple-oauth2.md
### Use os dados do formulário /// tip | Dica A instância da classe de dependência `OAuth2PasswordRequestForm` não terá um atributo `scope` com a string longa separada por espaços, em vez disso, terá um atributo `scopes` com a lista real de strings para cada escopo enviado. Não estamos usando `scopes` neste exemplo, mas a funcionalidade está disponível se você precisar. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Oct 31 12:17:45 UTC 2024 - 13.3K bytes - Viewed (0) -
docs/zh/docs/tutorial/response-model.md
``` //// /// note 注意,`response_model`是「装饰器」方法(`get`,`post` 等)的一个参数。不像之前的所有参数和请求体,它不属于*路径操作函数*。 /// 它接收的类型与你将为 Pydantic 模型属性所声明的类型相同,因此它可以是一个 Pydantic 模型,但也可以是一个由 Pydantic 模型组成的 `list`,例如 `List[Item]`。 FastAPI 将使用此 `response_model` 来: * 将输出数据转换为其声明的类型。 * 校验数据。 * 在 OpenAPI 的*路径操作*中为响应添加一个 JSON Schema。 * 并在自动生成文档系统中使用。 但最重要的是: * 会将输出数据限制在该模型定义内。下面我们会看到这一点有多重要。 /// note | "技术细节"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.8K bytes - Viewed (0) -
cni/README.md
1. Check k8s pod namespace against exclusion list (plugin config) - Config must exclude namespace that Istio control-plane is installed in (TODO: this may change, exclude at pod level is sufficient and we may want Istiod and other istio components to use ambient too) - If excluded, ignore the pod and return prevResult 1. Setup redirect rules for the pods: - Get the port list from pods definition, as well as annotations.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 17 23:10:17 UTC 2024 - 10.5K bytes - Viewed (0) -
src/cmd/asm/internal/flags/flags.go
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Aug 22 19:18:23 UTC 2023 - 2.8K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/SourcesRepository.kt
data class JavaSourceQuery<T : Any?>( val defaultValue: T, val visitor: GenericVisitor<T, Unit?> ) internal class SourcesRepository( private val sourceRoots: List<File>, private val compilationClasspath: List<File> ) : AutoCloseable { private val openJavaCompilationUnitsByFile = mutableMapOf<File, CompilationUnit>() private
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:24 UTC 2024 - 4K bytes - Viewed (0) -
docs/ja/docs/python-types.md
{!../../docs_src/python_types/tutorial005.py!} ``` ### 型パラメータを持つジェネリック型 データ構造の中には、`dict`、`list`、`set`、そして`tuple`のように他の値を含むことができるものがあります。また内部の値も独自の型を持つことができます。 これらの型や内部の型を宣言するには、Pythonの標準モジュール`typing`を使用します。 これらの型ヒントをサポートするために特別に存在しています。 #### `List` 例えば、`str`の`list`の変数を定義してみましょう。 `typing`から`List`をインポートします(大文字の`L`を含む): ```Python hl_lines="1" {!../../docs_src/python_types/tutorial006.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.8K bytes - Viewed (0)