- Sort Score
- Num 10 results
- Language All
Results 491 - 500 of 617 for param3 (0.53 seconds)
-
src/main/java/org/codelibs/fess/filter/LoadControlFilter.java
sendApiResponse(httpResponse); } else { httpResponse.sendError(429); } } /** * Checks if the given path should be excluded from load control. * @param path the request path * @return true if the path should be excluded */ protected boolean isExcludedPath(final String path) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Feb 10 04:24:02 GMT 2026 - 4.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/FacetResponse.java
/** * Constructs a FacetResponse from OpenSearch aggregations. * Processes both field facets and query facets from the aggregation results. * * @param aggregations the OpenSearch aggregations containing facet data, may be null */ public FacetResponse(final Aggregations aggregations) { if (aggregations != null) { aggregations.forEach(aggregation -> {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Nov 23 11:39:05 GMT 2025 - 5.3K bytes - Click Count (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/GradleModuleExtension.kt
* Reduces a map of boolean flag properties to a single provider by applying the given * combiner function to the corresponding values of the properties that are true. * * @param flags The map of boolean properties mapped to their values. * @param combiner The function to combine the values of the true properties. * * @return A provider of the reduced value. Non-present if no properties are true. */Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:40:18 GMT 2026 - 4.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java
} /** * 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 information * @return ActionResponse with unauthorized error if access denied, otherwise delegates to parent */ @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 4.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/MarkdownRenderer.java
logger.debug("MarkdownRenderer initialized with commonmark and OWASP sanitizer"); } } /** * Renders markdown text to sanitized HTML. * * @param markdown the markdown text to render * @return sanitized HTML string */ public String render(final String markdown) { if (markdown == null || markdown.isEmpty()) { return "";
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 5.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
* The data store will be accessible by both the provided name and its class simple name, * both converted to lowercase for case-insensitive lookup. * * @param name the name to register the data store under, must not be null * @param dataStore the data store instance to register, must not be null * @throws IllegalArgumentException if either name or dataStore is null */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java
private ClassificationMeta invokeMethod(Object obj, String methodName, String param) { try { java.lang.reflect.Method method = obj.getClass().getDeclaredMethod(methodName, String.class); method.setAccessible(true); return (ClassificationMeta) method.invoke(obj, param); } catch (Exception e) { throw new RuntimeException(e); } }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java
} @Test public void test_constructorWithString_specialCharacters() { // Test with message containing special characters String message = "Job not found: \"My Job\" with params: {id=123, type='test'}"; JobNotFoundException exception = new JobNotFoundException(message); assertNotNull(exception); assertEquals(message, exception.getMessage()); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/MemoryUtil.java
+ byteCountToDisplaySize(maxBytes) + "}"; } /** * Converts byte count to human-readable size format. * * @param size the size in bytes * @return formatted size string */ public static String byteCountToDisplaySize(final long size) { return byteCountToDisplaySize(BigInteger.valueOf(size)); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java
roleQueryHelper.setRoleSeparator(";;"); assertEquals(";;", roleQueryHelper.roleSeparator); roleQueryHelper.setParameterKey("param"); assertEquals("param", roleQueryHelper.parameterKey); roleQueryHelper.setEncryptedParameterValue(false); assertFalse(roleQueryHelper.encryptedParameterValue); roleQueryHelper.setHeaderKey("header");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 28.8K bytes - Click Count (0)