- Sort Score
- Num 10 results
- Language All
Results 91 - 100 of 284 for Relation (0.05 seconds)
-
docs/es/docs/history-design-future.md
También, el mejor enfoque era usar estándares ya existentes. Entonces, antes de siquiera empezar a programar **FastAPI**, pasé varios meses estudiando las especificaciones de OpenAPI, JSON Schema, OAuth2, etc. Entendiendo su relación, superposición y diferencias. ## Diseño { #design } Luego pasé algún tiempo diseñando la "API" de desarrollador que quería tener como usuario (como desarrollador usando FastAPI).Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 10:15:01 GMT 2025 - 4.7K bytes - Click Count (0) -
callbacks/delete.go
if !restricted { return } for column, v := range selectColumns { if !v { continue } rel, ok := db.Statement.Schema.Relationships.Relations[column] if !ok { continue } switch rel.Type { case schema.HasOne, schema.HasMany: queryConds := rel.ToQueryConditions(db.Statement.Context, db.Statement.ReflectValue)Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Sun May 25 07:40:40 GMT 2025 - 5.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
}); } /** * Deletes a file from the storage system. * * @param id the encoded ID of the file to delete * @return HTML response redirecting to the storage list after deletion */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final String id) { final PathInfo pi = convertToItem(id); if (StringUtil.isEmpty(pi.getName())) {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 22.1K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.5.md
replacement pods is blocked until old pods are definitely not running (indicated either by the kubelet returning from partitioned state, deletion of the Node object, deletion of the instance in the cloud provider, or force deletion of the pod from the api-server). This helps prevent "split brain" scenarios in clustered applications by ensuring that unreachable pods will not be presumed dead unless someCreated: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Thu Dec 24 02:28:26 GMT 2020 - 136.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/duplicatehost/ApiAdminDuplicatehostAction.java
// DELETE /api/admin/duplicatehost/setting/{id} /** * Deletes a specific duplicate host setting. * * @param id the duplicate host setting ID to delete * @return JSON response with deletion status */ @Execute public JsonResponse<ApiResult> delete$setting(final String id) { duplicateHostService.getDuplicateHost(id).ifPresent(entity -> { try {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 8.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/ApiAdminBoostdocAction.java
} /** * Deletes a boost document rule setting by ID. * * @param id the ID of the boost document rule to delete * @return JSON response indicating the deletion status */ // DELETE /api/admin/boostdoc/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 7.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java
}); return redirect(getClass()); } /** * Deletes a key match. * * @param form the edit form * @return HTML response after deletion */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final EditForm form) { verifyCrudMode(form.crudMode, CrudMode.DETAILS, this::asListHtml);Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 16.2K bytes - Click Count (0) -
guava/src/com/google/common/collect/ComparisonChain.java
/** * Discouraged synonym for {@link #compareFalseFirst}. * * @deprecated Use {@link #compareFalseFirst}; or, if the parameters passed are being either * negated or reversed, undo the negation or reversal and use {@link #compareTrueFirst}. * @since 19.0 */ @InlineMe(replacement = "this.compareFalseFirst(left, right)") @Deprecated public final ComparisonChain compare(Boolean left, Boolean right) {Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 11.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/accesstoken/ApiAdminAccesstokenAction.java
} // DELETE /api/admin/accesstoken/setting/{id} /** * Deletes an access token setting by ID. * * @param id the access token ID to delete * @return JSON response confirming deletion */ @Execute public JsonResponse<ApiResult> delete$setting(final String id) { accessTokenService.getAccessToken(id).ifPresent(entity -> { try {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 8.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java
/** * Deletes a stemmer override dictionary item by ID. * * @param dictId the dictionary ID * @param id the ID of the stemmer override item to delete * @return JSON response indicating the deletion status */ // DELETE /api/admin/dict/stemmerOverride/setting/{dictId}/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String dictId, final long id) {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 9.8K bytes - Click Count (0)