- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 483 for variation (0.04 sec)
-
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
if (ComponentUtil.hasIngestFactory()) { ingestFactory = ComponentUtil.getIngestFactory(); } } /** * Stores a document in the index after processing and validation. * Handles document transformation, field addition, and batched indexing. * * @param paramMap the data store parameters * @param dataMap the document data to store
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
protected enum Result { /** Thumbnail was successfully generated */ OK, /** Thumbnail generation failed due to processing errors */ FAILED, /** Image dimensions do not meet validation requirements */ INVALID_SIZE, /** No valid image data was found in the input */ NO_IMAGE; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeInputStreamTest.java
assertDoesNotThrow(stream::close); verify(handle, never()).ensureOpen(); verifyNoInteractions(tree, fd); } @Nested @DisplayName("Constructor input validation") class CtorValidation { @Test @DisplayName("null handle throws NPE") void nullHandle() { assertThrows(NullPointerException.class, () -> new SmbPipeInputStream(null, tree));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
docs/en/docs/advanced/path-operation-advanced-configuration.md
And you could do this even if the data type in the request is not JSON. For example, in this application we don't use FastAPI's integrated functionality to extract the JSON Schema from Pydantic models nor the automatic validation for JSON. In fact, we are declaring the request content type as YAML, not JSON: //// tab | Pydantic v2 {* ../../docs_src/path_operation_advanced_configuration/tutorial007.py hl[17:22, 24] *} ////
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.8K bytes - Viewed (0) -
docs/ru/docs/tutorial/handling-errors.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 14.3K bytes - Viewed (0) -
build.gradle.kts
@file:Suppress("UnstableApiUsage") import com.diffplug.gradle.spotless.SpotlessExtension import com.vanniktech.maven.publish.MavenPublishBaseExtension import kotlinx.validation.ApiValidationExtension import org.gradle.api.tasks.testing.logging.TestExceptionFormat import org.jetbrains.dokka.gradle.DokkaTaskPartial import org.jetbrains.kotlin.gradle.dsl.JvmTarget import org.jetbrains.kotlin.gradle.dsl.kotlinExtension
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
import org.codelibs.fess.util.RenderDataUtil; import org.lastaflute.web.Execute; import org.lastaflute.web.response.HtmlResponse; import org.lastaflute.web.ruts.process.ActionRuntime; import org.lastaflute.web.validation.exception.ValidationErrorException; /** * Admin action for Plugin management. * This class provides functionality for installing, deleting, and managing plugins in the Fess system. * */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.9K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcConstantsTest.java
void testRpcCPfNoAutoRetry() { assertEquals(0x80, DcerpcConstants.RPC_C_PF_NO_AUTO_RETRY, "RPC_C_PF_NO_AUTO_RETRY should be 0x80"); } } @Nested @DisplayName("Constants Validation Tests") class ConstantsValidationTests { @Test @DisplayName("All fragment flags should have unique values") void testFragmentFlagsUniqueness() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.5K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
this.calledName = this.hostName.name; if (Character.isDigit(this.calledName.charAt(0))) { int i, len, dots; char[] data; i = dots = 0; /* quick IP address validation */ len = this.calledName.length(); data = this.calledName.toCharArray(); while (i < len && Character.isDigit(data[i++])) { if (i == len && dots == 3) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/spnego/NegTokenInitTest.java
null); // The implementation accepts any tag number without validation assertDoesNotThrow(() -> { NegTokenInit parsed = new NegTokenInit(token); assertNotNull(parsed.getMechanisms(), "Should parse mechanisms");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21K bytes - Viewed (0)