- Sort Score
- Num 10 results
- Language All
Results 101 - 110 of 572 for Be (0.01 seconds)
-
src/test/java/org/codelibs/fess/helper/RateLimitHelperTest.java
assertEquals("203.0.113.50", rateLimitHelper.getClientIp(request)); } @Test public void test_getClientIp_untrustedProxy_headersIgnored() { // When remoteAddr is not a trusted proxy, headers should be ignored final MockletHttpServletRequest request = getMockRequest(); request.setRemoteAddr("192.168.1.100"); request.addHeader("X-Forwarded-For", "203.0.113.50");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/RenderDataUtil.java
// Default constructor } /** * Registers a value in the render data with the specified key. * If the value is an Entity object, it will be converted to a Map using BeanUtil. * If the value is a Collection containing Entity objects, each Entity will be converted to a Map. * For other types of values, they are registered directly. * * @param data the RenderData object to register the value inCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java
} /** * Creates an access result after processing the response data through ingesters. * * @param responseData the response data from the crawled resource * @param resultData the result data to be processed * @return the access result containing the processed data */ @Override protected AccessResult<?> createAccessResult(final ResponseData responseData, final ResultData resultData) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
}); } return itemList; } /** * Checks if a property value should be masked for security reasons. * * @param key the property key to check * @return true if the value should be masked, false otherwise */ protected static boolean isMaskedValue(final String key) { return "http.proxy.password".equals(key) //Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 9.7K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/FixProjectHealthTask.kt
when { line.contains("These transitive dependencies should be declared directly:") -> { dependencyFixes.addToMap(filePath, extractDependencies(index)) } line.contains("Existing dependencies which should be modified to be as indicated:") -> { dependenciesToModify.addToMap(filePath, extractDependencies(index))Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 03 06:57:08 GMT 2025 - 6.2K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/UploadForm.java
*/ @Required public String dictId; /** * The multipart file containing the Kuromoji user dictionary to be uploaded. * This file should be in the Kuromoji user dictionary format containing custom word definitions. */ @Required public MultipartFormFile kuromojiFile; /** * Default constructor for UploadForm.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/CreateForm.java
import jakarta.validation.constraints.Size; /** * Form class for creating protected words dictionary entries. * Protected words are terms that should not be modified or analyzed during * text processing, preserving their original form in search indexes. * */ public class CreateForm { /** * Creates a new CreateForm instance. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java
for (Thread thread : readerThreads) { thread.join(testDurationMs + 1000); } // Verify that alive was changed to false assertFalse("alive should be false after writer thread", dataStore.alive); // At least some observations from reader threads should have seen false // due to volatile ensuring visibility int falseCount = 0;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.8K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java
} /** * Test that FessCrawlerThread can be instantiated */ @Test public void test_constructor() { FessCrawlerThread crawlerThread = new FessCrawlerThread(); assertNotNull(crawlerThread, "FessCrawlerThread should be instantiable"); } /** * Test URL deduplication in getAnchorSet */ @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/FacetResponseTest.java
assertEquals(emptyString, decoded); } @Test public void test_facet_prefix_usage() { // Test that facet prefixes can be used correctly String fieldName = "category"; String encodedFieldName = BaseEncoding.base64().encode(fieldName.getBytes(StandardCharsets.UTF_8));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.7K bytes - Click Count (0)