- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 266 for versioned (0.22 sec)
-
docs/es/docs/tutorial/query-params-str-validations.md
Asegúrate de [Actualizar la versión de FastAPI](../deployment/versions.md#upgrading-the-fastapi-versions){.internal-link target=_blank} a al menos 0.95.1 antes de usar `Annotated`. /// ## Usar `Annotated` en el tipo del parámetro `q`
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Feb 15 16:23:59 UTC 2025 - 16.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/NewestConflictResolver.java
public ResolutionNode resolveConflict(ResolutionNode node1, ResolutionNode node2) { try { ArtifactVersion version1 = node1.getArtifact().getSelectedVersion(); ArtifactVersion version2 = node2.getArtifact().getSelectedVersion(); return version1.compareTo(version2) > 0 ? node1 : node2; } catch (OverConstrainedVersionException exception) { // TODO log message or throw exception?
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.2K bytes - Viewed (0) -
docs/es/docs/async.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 24.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/EditForm.java
@Required @Size(max = 1000) public String id; /** * The version number of the user for optimistic locking. * This field is required to prevent concurrent modification conflicts * by ensuring the user hasn't been modified by another process. */ @Required @ValidateTypeFailure public Integer versionNo;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
docs/es/docs/tutorial/body-nested-models.md
* Si estás en una versión de Python inferior a 3.9, importa su versión equivalente del módulo `typing` * Pasa el/los tipo(s) interno(s) como "parámetros de tipo" usando corchetes: `[` y `]` En Python 3.9 sería: ```Python my_list: list[str] ``` En versiones de Python anteriores a 3.9, sería: ```Python from typing import List my_list: List[str]
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 7.5K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
DFS_WITNESS // DFS namespace witness } public enum WitnessVersion { VERSION_1(0x00010001), // Windows Server 2012 VERSION_2(0x00020000); // Windows Server 2012 R2+ private final int version; WitnessVersion(int version) { this.version = version; } public int getValue() { return version; } } ``` ### 3.2 Witness Event Types ```java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/EditForm.java
public Long updatedTime; /** * The version number of the duplicate host configuration for optimistic locking. * This field is required to prevent concurrent modification conflicts * by ensuring the configuration hasn't been modified by another process. */ @Required @ValidateTypeFailure public Integer versionNo;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/BoostDocPager.java
/** Creator username for search filtering. */ public String createdBy; /** Creation time for search filtering. */ public String createdTime; /** Version number for search filtering. */ public String versionNo; /** * Default constructor for BoostDocPager. */ public BoostDocPager() { // Default constructor } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java
*/ public String createdBy; /** * Search criteria: creation time. */ public String createdTime; /** * Search criteria: version number. */ public String versionNo; /** * Clears all pager data and search criteria. */ public void clear() { allRecordCount = 0; allPageCount = 0; existPrePage = false;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/AccessTokenPager.java
/** * The created by. */ public String createdBy; /** * The created time. */ public String createdTime; /** * The version number. */ public String versionNo; /** * Clear the pager. */ public void clear() { allRecordCount = 0; allPageCount = 0; existPrePage = false;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0)