- Sort Score
- Num 10 results
- Language All
Results 151 - 160 of 185 for Interval (0.17 seconds)
-
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/JavaSourceQueries.kt
import japicmp.model.JApiMethod private typealias PredicateVisitor = GenericVisitorAdapter<Boolean, Unit?> private typealias SinceVisitor = GenericVisitorAdapter<SinceTagStatus, Unit?> internal object JavaSourceQueries { fun isOverrideMethod(method: JApiMethod): JavaSourceQuery<Boolean> = JavaSourceQuery( false, object : PredicateVisitor() {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jun 06 17:52:09 GMT 2025 - 6.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java
logger.warn("[RAG] Failed to process chat request. message={}", e.getMessage(), e); writeJsonResponse(response, HttpServletResponse.SC_INTERNAL_SERVER_ERROR, createErrorResponse("Internal server error")); } } /** * Processes a streaming chat request using Server-Sent Events (SSE). * Uses the enhanced multi-phase RAG flow with intent detection and result evaluation.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 06:06:55 GMT 2026 - 25.8K bytes - Click Count (0) -
.teamcity/mvnw.cmd
if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" :skipRcPre @setlocal set ERROR_CODE=0 @REM To isolate internal variables from possible post scripts, we use another setlocal @setlocal @REM ==== START VALIDATION ==== if not "%JAVA_HOME%" == "" goto OkJHome echo. echo Error: JAVA_HOME not found in your environment. >&2
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 26 01:48:39 GMT 2020 - 6.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/MemoryUtilTest.java
import java.util.List; import java.util.Map; import org.apache.commons.io.FileUtils; import org.codelibs.core.collection.Maps; import org.codelibs.fess.unit.UnitFessTestCase; import org.codelibs.sai.internal.ir.debug.ObjectSizeCalculator; import org.junit.jupiter.api.Test; import com.google.common.collect.Lists; public class MemoryUtilTest extends UnitFessTestCase { @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
assertEquals(1, result.length); assertEquals("\"value with \"\"escaped\"\" quotes\"", result[0]); // Multiple escaped quotes - NONE get unquoted because they all contain internal quotes value = "\"\"\"start\"\"\",\"\"\"middle\"\"\",\"\"\"end\"\"\""; result = KuromojiCSVUtil.parse(value); assertEquals(3, result.length); assertEquals("\"\"start\"\"", result[0]);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 18.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
*/ public QueryStringBuilder() { // Default constructor } /** * Quotes a string value if it contains spaces. * Multi-word values are wrapped in double quotes with internal quotes replaced by spaces. * * @param value the string value to quote * @return the quoted string if it contains spaces, otherwise the original value */ protected String quote(final String value) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 12.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
// Test with VirtualMachineError subclass String message = "SSO failed due to VM error"; InternalError error = new InternalError("JVM internal error during SSO"); SsoProcessException exception = new SsoProcessException(message, error); assertEquals(message, exception.getMessage()); assertTrue(exception.getCause() instanceof InternalError);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 13.8K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java
import org.gradle.api.tasks.TaskContainer; import org.gradle.api.tasks.TaskProvider; import org.gradle.api.tasks.javadoc.Javadoc; import org.gradle.external.javadoc.StandardJavadocDocletOptions; import org.gradle.internal.UncheckedException; import javax.inject.Inject; import java.io.File; import java.io.IOException; import java.net.URI; import java.nio.file.Files; import java.util.HashSet; import java.util.Set;
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Sun Mar 01 05:52:34 GMT 2026 - 11.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatSessionManager.java
} return true; } /** * Clears the messages in a session without ownership check. * Used for internal/admin operations where ownership verification is not needed. * * @param sessionId the session ID * @return true if the session was found and cleared, false otherwise */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 13.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
saveInfo(messages -> messages.addSuccessCreateCrawlingConfigAtWizard(GLOBAL, name)); return redirectWith(getClass(), moreUrl("startCrawlingForm")); } /** * Internal method to create crawling configuration based on form data. * Determines whether to create a web or file crawler configuration. * * @param form the form containing crawling configuration data
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 02:14:37 GMT 2026 - 16.4K bytes - Click Count (0)