- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 34 for sarete (0.15 sec)
-
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
// Null-safety: return null for blank templates // Early return is safe here as no resources have been allocated yet if (StringUtil.isBlank(template)) { if (logger.isDebugEnabled()) { logger.debug("Template is blank, returning null"); } return null; } // Null-safety: use empty map if paramMap is nullRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/LruHashMap.java
import java.util.Map; /** * {@link HashMap} with an upper limit on the number of entries. When a new entry is added, the oldest entry is discarded using LRU if the limit is exceeded. * <p> * <strong>Thread-Safety:</strong> This class is <strong>NOT thread-safe</strong>. * It extends {@link LinkedHashMap} without synchronization. If multiple threads access * an instance concurrently, and at least one thread modifies the map structurally,Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
import org.dbflute.utflute.core.PlainTestCase; /** * Test class for {@link Handler} and its inner class {@link Handler.GcsURLConnection}. * This test covers URL parsing, connection state management, and thread-safety. */ public class HandlerTest extends PlainTestCase { @Override protected void setUp() throws Exception { super.setUp(); new StandardCrawlerContainer(); } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/user/admin_user_edit.jsp
key="labels.user_street"/></label> <div class="col-sm-9"> <la:errors property="attributes.street"/>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 31.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/CrawlingParameterUtil.java
* <li>{@link DataService} - The service for managing access results.</li> * </ul> * * <p>Each parameter is stored in a ThreadLocal variable to ensure thread safety.</p> * * <p>Usage example:</p> * <pre> * {@code * UrlQueue<?> urlQueue = CrawlingParameterUtil.getUrlQueue(); * CrawlingParameterUtil.setUrlQueue(newUrlQueue); *
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 6.4K bytes - Viewed (0) -
CLAUDE.md
| Packages | lowercase | `org.codelibs.fess.suggest` | ### JavaDoc Requirements All public classes and methods require JavaDoc with `@param`, `@return`, and `@throws` tags. ### Best Practices **Null Safety:** ```java public Suggester(final Client client, final SuggestSettings settings) { this.client = Objects.requireNonNull(client, "client must not be null");
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 8.9K bytes - Viewed (0) -
CLAUDE.md
**Template Method**: `AbstractCrawlerClient`, `AbstractExtractor` - common logic with overrides **DI**: LastaFlute container with `@Resource` and XML config ### Core Principles **Thread Safety**: - `AtomicLong` for counters (`CrawlerContext.accessCount`) - `volatile` for status flags - Synchronized blocks for critical sections - Thread-local storage via `CrawlingParameterUtil` **Resource Management**:
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.roomNumber=Room Number labels.user_description=Description labels.description=Description labels.user_title=Title labels.title=Title labels.user_pager=Pager labels.pager=Pager labels.user_street=Street labels.street=Street labels.user_postalCode=Postal Code labels.postalCode=Postal Code labels.user_physicalDeliveryOfficeName=Office labels.physicalDeliveryOfficeName=Office labels.user_destinationIndicator=Destination Indicator
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 44K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java
import org.dbflute.utflute.core.PlainTestCase; /** * Test class for {@link Handler} and its inner class {@link Handler.StorageURLConnection}. * This test covers URL parsing, connection state management, and thread-safety. */ public class HandlerTest extends PlainTestCase { @Override protected void setUp() throws Exception { super.setUp(); new StandardCrawlerContainer(); } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java
protected static final String JAVABIN = "javabin"; /** Constant for Kryo serializer type. */ protected static final String KRYO = "kryo"; /** ThreadLocal container for Kryo instances to ensure thread safety. */ protected final ThreadLocal<Kryo> kryoThreadLocal; /** * Constructs a new DataSerializer. * <p> * Initializes the ThreadLocal Kryo instances with appropriate configuration.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Wed Nov 19 07:09:17 UTC 2025 - 6.5K bytes - Viewed (3)