- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for line_length (0.17 sec)
-
compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java
MAX_TERMINAL_WIDTH, Math.max(terminalWidth <= 0 ? DEFAULT_TERMINAL_WIDTH : terminalWidth, MIN_TERMINAL_WIDTH)); lineLength = terminalWidth - MAX_LOG_PREFIX_SIZE; maxProjectNameLength = lineLength - PROJECT_STATUS_SUFFIX_SIZE; } } @Override public void projectDiscoveryStarted(ExecutionEvent event) { if (logger.isInfoEnabled()) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.2K bytes - Viewed (0) -
fastapi/params.py
alias=alias, title=title, description=description, gt=gt, ge=ge, lt=lt, le=le, min_length=min_length, max_length=max_length, discriminator=discriminator, multiple_of=multiple_of, allow_inf_nan=allow_inf_nan, max_digits=max_digits,
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Sep 06 18:06:20 UTC 2024 - 27.5K bytes - Viewed (0) -
fastapi/param_functions.py
serialization_alias=serialization_alias, title=title, description=description, gt=gt, ge=ge, lt=lt, le=le, min_length=min_length, max_length=max_length, pattern=pattern, regex=regex, discriminator=discriminator, strict=strict, multiple_of=multiple_of,
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 23 18:30:18 UTC 2024 - 62.5K bytes - Viewed (0) -
docs_src/query_params_str_validations/tutorial006d_an.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 09:36:32 UTC 2024 - 310 bytes - Viewed (0) -
compat/maven-model/src/main/java/org/apache/maven/model/io/xpp3/package-info.java
// CHECKSTYLE_OFF: RegexpHeader|LineLength /** * XML reader and writer classes for Maven POM, generated from <code>maven.mdo</code> model. * These classes use * <a href="https://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/xml/pull/package-summary.html">plexus-utils' * XML Pull Parser API</a> for their internal XML handling and
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 750 bytes - Viewed (0) -
docs/en/docs/tutorial/query-params-str-validations.md
``` But we are now declaring it with `Query`, for example like: //// tab | Annotated ```Python q: Annotated[Union[str, None], Query(min_length=3)] = None ``` //// //// tab | non-Annotated ```Python q: Union[str, None] = Query(default=None, min_length=3) ``` //// So, when you need to declare a value as required while using `Query`, you can simply not declare a default value:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 25.4K bytes - Viewed (0) -
docs_src/query_params_str_validations/tutorial006d_an_py39.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 09:36:32 UTC 2024 - 300 bytes - Viewed (0) -
docs/pt/docs/tutorial/query-params-str-validations.md
Isso irá validar os dados, mostrar um erro claro quando os dados forem inválidos, e documentar o parâmetro na *operação de rota* do esquema OpenAPI.. ## Adicionando mais validações Você também pode incluir um parâmetro `min_length`: ```Python hl_lines="10" {!../../docs_src/query_params_str_validations/tutorial003.py!} ``` ## Adicionando expressões regulares
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.3K bytes - Viewed (0) -
docs/ko/docs/tutorial/query-params-str-validations.md
```Python q: str = Query(None, max_length=50) ``` 이는 데이터를 검증할 것이고, 데이터가 유효하지 않다면 명백한 오류를 보여주며, OpenAPI 스키마 *경로 작동*에 매개변수를 문서화 합니다. ## 검증 추가 매개변수 `min_length` 또한 추가할 수 있습니다: ```Python hl_lines="9" {!../../docs_src/query_params_str_validations/tutorial003.py!} ``` ## 정규식 추가
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.5K bytes - Viewed (0) -
docs_src/query_params_str_validations/tutorial006d.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 09:36:32 UTC 2024 - 267 bytes - Viewed (0)