- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 589 for limits (0.09 sec)
-
src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java
// Exponential backoff with overflow protection - ensure safe calculation if (retryDelayMs > 0) { // Safe calculation preventing overflow: use Math.max(0, retryCount - 1) and limit shift int safeShift = Math.min(MAX_BACKOFF_SHIFT, Math.max(0, retryCount - 1)); long multiplier = 1L << safeShift; // Check for potential overflow before multiplication
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.5K bytes - Viewed (0) -
docs/ko/docs/tutorial/dependencies/classes-as-dependencies.md
이 매개변수들은 **FastAPI**가 의존성을 "해결"하기 위해 사용할 것입니다 함수와 클래스 두 가지 방식 모두, 아래 요소를 갖습니다: * `문자열`이면서 선택사항인 쿼리 매개변수 `q`. * 기본값이 `0`이면서 `정수형`인 쿼리 매개변수 `skip` * 기본값이 `100`이면서 `정수형`인 쿼리 매개변수 `limit` 두 가지 방식 모두, 데이터는 변환, 검증되고 OpenAPI 스키마에 문서화됩니다. ## 사용해봅시다! 이제 아래의 클래스를 이용해서 의존성을 정의할 수 있습니다. {* ../../docs_src/dependencies/tutorial002.py hl[19] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6.7K bytes - Viewed (0) -
cmd/crossdomain-xml-handler.go
const crossDomainXMLEntity = "/crossdomain.xml" // A cross-domain policy file is an XML document that grants a web client, such as Adobe Flash Player // or Adobe Acrobat (though not necessarily limited to these), permission to handle data across domains. // When clients request content hosted on a particular source domain and that content make requests
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Mar 18 06:42:40 UTC 2024 - 2.2K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java
ComparableVersion seven = new ComparableVersion("7"); ComparableVersion capitalJ = new ComparableVersion("J"); ComparableVersion lowerCaseC = new ComparableVersion("c"); // Digits are greater than letters assertTrue(seven.compareTo(capitalJ) > 0, "expected 7 > J"); assertTrue(capitalJ.compareTo(seven) < 0, "expected J < 1");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
} load(); } /** * Retrieves a list of all available related query entities from the data store. * The results are ordered by term and limited by the configured maximum fetch size. * * @return a list of RelatedQuery entities containing all available related queries */ public List<RelatedQuery> getAvailableRelatedQueryList() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedContentService.java
cb.query().addOrderBy_CreatedTime_Asc(); // search } /** * Retrieves a list of all available related content entities. * Results are ordered by term and limited by the configured maximum fetch size. * * @return a list of all available RelatedContent entities */ public List<RelatedContent> getAvailableRelatedContentList() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
docs/pt/docs/tutorial/dependencies/classes-as-dependencies.md
Em ambos os casos teremos: * Um parâmetro de consulta `q` opcional do tipo `str`. * Um parâmetro de consulta `skip` do tipo `int`, com valor padrão `0`. * Um parâmetro de consulta `limit` do tipo `int`, com valor padrão `100`. Os dados serão convertidos, validados, documentados no esquema da OpenAPI e etc nos dois casos. ## Utilizando Agora você pode declarar sua dependência utilizando essa classe.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/classes-as-dependencies.md
In both cases, it will have: * An optional `q` query parameter that is a `str`. * A `skip` query parameter that is an `int`, with a default of `0`. * A `limit` query parameter that is an `int`, with a default of `100`. In both cases the data will be converted, validated, documented on the OpenAPI schema, etc. ## Use it { #use-it }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 6.7K bytes - Viewed (0) -
docs/pt/docs/tutorial/request_files.md
* Você não precisa utilizar `File()` como o valor padrão do parâmetro. * A classe utiliza um arquivo em "spool": * Um arquivo guardado em memória até um tamanho máximo, depois desse limite ele é guardado em disco. * Isso significa que a classe funciona bem com arquivos grandes como imagens, vídeos, binários extensos, etc. Sem consumir toda a memória. * Você pode obter metadados do arquivo enviado.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.7K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Ints.java
* * <p>Unlike {@link Integer#parseInt(String)}, this method returns {@code null} instead of * throwing an exception if parsing fails. Additionally, this method only accepts ASCII digits, * and returns {@code null} if non-ASCII digits are present in the string. * * <p>Note that strings prefixed with ASCII {@code '+'} are rejected, even though {@link * Integer#parseInt(String)} accepts them. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 31.4K bytes - Viewed (0)