- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 45 for checking (0.06 seconds)
-
architecture/standards/0008-use-nullaway.md
# ADR-0008 - Use NullAway for null checking ## Status - ACCEPTED on 2025-08-06 ## Context Our codebase uses `null` extensively to represent an absence of value or optionality of the argument. We utilize nullness annotations in Java code and somewhat rely on IDE warnings to guide us. However, the Java code we have is not fully annotated, which causes several consequences: * IDE warnings can be misleading
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java
*/ @Override protected OptionalThing<LoginManager> myLoginManager() { return OptionalThing.empty(); } /** * Pre-processes API requests by checking access authorization before executing the action. * If access is not allowed, returns an unauthorized error response. * * @param runtime the action runtime context containing request informationCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 4.8K bytes - Click Count (0) -
.teamcity/mvnw.cmd
IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B ) @REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central @REM This allows using the maven wrapper in projects that prohibit checking in binary data. if exist %WRAPPER_JAR% ( if "%MVNW_VERBOSE%" == "true" ( echo Found %WRAPPER_JAR% ) ) else ( if not "%MVNW_REPOURL%" == "" (
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/exception/SsoMessageExceptionTest.java
// Execute final SsoMessageException exception = new SsoMessageException(messageCode, message); // Verify that it has serialVersionUID (indirectly by checking it's serializable) assertTrue(exception instanceof java.io.Serializable); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
import com.fasterxml.jackson.databind.ObjectMapper; import jakarta.servlet.http.HttpSession; /** * Abstract base class for LLM client implementations. * * Provides shared infrastructure (HTTP client, availability checking) and * default implementations of RAG workflow methods with injectable prompt templates. * Subclasses implement provider-specific chat/streamChat and checkAvailabilityNow. */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java
} /** * Test HTTP status code constants are defined correctly */ @Test public void test_httpStatusCodeConstants() { // Verify the constants are accessible via reflection or by checking their usage // Since the constants are private, we test their values indirectly // The constants should match standard HTTP status codes // HTTP_STATUS_NOT_FOUND = 404 // HTTP_STATUS_OK = 200Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.3K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt
} private inline fun <reified T> inAnyOrder(items: List<T>): Matcher<Iterable<T>> = inAnyOrder(items.toTypedArray()) /** * Matcher checking each item is present exactly once in a given iterable, but an any position, * and that there are no unexpected items. */ privateCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Jan 19 11:30:48 GMT 2026 - 18.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
import jakarta.annotation.Resource; /** * The assist for login handling in the Fess application. * This class extends TypicalLoginAssist to provide Fess-specific login functionality * including user authentication, permission checking, and login history management. * */ public class FessLoginAssist extends TypicalLoginAssist<String, FessUserBean, FessUser> // #change_it also UserBean implements PrimaryLoginManager { /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 12.1K bytes - Click Count (0) -
src/main/webapp/js/suggestor.js
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 11:04:08 GMT 2025 - 13.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/QueryCommandTemplateMethodTest.java
} /** * Test that convertWithFieldCheck() pattern reduces code duplication. * This test demonstrates how the template method can be used to replace * repetitive field checking logic. */ @Test public void test_convertWithFieldCheck_reducesCodeDuplication() { FessConfig fessConfig = ComponentUtil.getFessConfig();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.5K bytes - Click Count (0)