- Sort Score
- Num 10 results
- Language All
Results 281 - 290 of 594 for invalidation (0.18 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/exception/SsoLoginException.java
/** * Exception thrown when SSO (Single Sign-On) login operations fail. * * This exception is used to indicate various SSO authentication failures * including configuration errors, authentication token validation failures, * communication issues with SSO providers, and other SSO-related problems. */ public class SsoLoginException extends FessSystemException { /** Serial version UID for serialization compatibility. */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Nov 19 08:04:23 GMT 2025 - 1.7K bytes - Click Count (0) -
fastapi/.agents/skills/fastapi/references/other-tools.md
return {"message": result} ``` ## SQLModel for SQL databases When working with SQL databases, prefer using SQLModel as it is integrated with Pydantic and will allow declaring data validation with the same models. Prefer it over SQLAlchemy. ## HTTPX Use HTTPX for handling HTTP communication (e.g. with other APIs). It support sync and async usage.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 01 10:05:57 GMT 2026 - 1.5K bytes - Click Count (0) -
tests/test_enforce_once_required_parameter.py
} } }, "description": "Validation Error", }, }, "summary": "Foo Handler", } } }, }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 09:59:14 GMT 2026 - 4.1K bytes - Click Count (0) -
tests/test_openapi_query_parameter_extension.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 09:59:14 GMT 2026 - 4.8K bytes - Click Count (0) -
tests/test_tutorial/test_additional_responses/test_tutorial004.py
}, }, }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": {Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 27 10:53:47 GMT 2026 - 5.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java
* @param size the page size to set */ public void setPageSize(final int size) { this.size = Integer.toString(size); } /** * Gets the page size for search log results with validation. * Returns the default page size if the current size is invalid. * * @return the validated page size */ public int getPageSize() { if (StringUtil.isBlank(size)) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/xml/SchemaFactoryUtil.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.xml; import javax.xml.XMLConstants; import javax.xml.validation.SchemaFactory; import org.codelibs.core.log.Logger; /** * Utility class for {@link SchemaFactory}. * * @author koichik */ public abstract class SchemaFactoryUtil {Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/UploadForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.badword; import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; /** * Form for uploading bad word files to the Fess search engine. * This form is used in the admin interface to upload bad word dictionary files * that contain words to be filtered from search results.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.4K bytes - Click Count (0) -
docs/ru/docs/tutorial/handling-errors.md
Вы можете переопределить эти обработчики исключений на свои собственные. ### Переопределение обработчика исключений проверки запроса { #override-request-validation-exceptions } Когда запрос содержит недопустимые данные, **FastAPI** внутренне вызывает ошибку `RequestValidationError`. А также включает в себя обработчик исключений по умолчанию.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 14K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/ActionForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.maintenance; import org.codelibs.fess.Constants; import org.codelibs.fess.util.ComponentUtil; import jakarta.validation.constraints.Size; /** * The form for maintenance actions. */ public class ActionForm { /** * Default constructor. */ public ActionForm() { // nothing }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 2K bytes - Click Count (0)