- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for content_en (0.05 sec)
-
src/main/resources/fess_indices/_aws/fess.json
"content_gl", "content_gu", "content_he", "content_hi", "content_hr", "content_hu", "content_hy", "content_id", "content_it", "content_ja", "content_ko", "content_lt", "content_lv", "content_mk", "content_ml", "content_nl", "content_no",
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 14 00:36:40 UTC 2025 - 117.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
assertEquals("aaa;ctx._source.title_ja=ctx._source.title;ctx._source.content_ja=ctx._source.content", languageHelper.createScript(doc, "aaa").getIdOrCode()); } public void test_getReindexScriptSource() { assertEquals( "if(ctx._source.lang!=null){ctx._source['title_'+ctx._source.lang]=ctx._source.title;ctx._source['content_'+ctx._source.lang]=ctx._source.content}",
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/CriticalPerformanceTest.java
assertEquals(threadCount * operationsPerThread, successCount.get()); assertTrue(overallTimeMs < 1000, "Operations should complete quickly without lock contention"); pool.close(); } /** * Test buffer cache performance with concurrent operations */ @Test public void testBufferCachePerformance() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMaker.java
/** * Guides the allowed concurrency among update operations. Used as a hint for internal sizing. The * table is internally partitioned to try to permit the indicated number of concurrent updates * without contention. Because assignment of entries to these partitions is not necessarily * uniform, the actual concurrency observed may vary. Ideally, you should choose a value to
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
- Lease entries should be evicted based on LRU when max leases reached - Implement periodic cleanup of expired leases ### 9.2 Thread Safety - Use concurrent data structures for lease storage - Minimize lock contention in hot paths - Async handling of lease breaks ### 9.3 Network Efficiency - Batch lease requests when possible - Implement lease key reuse for related files - Optimize lease break acknowledgment timing
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Striped.java
* <i>stripes</i>, increasing the granularity of a single lock and allowing independent operations * to lock different stripes and proceed concurrently, instead of creating contention for a single * lock. * * <p>The guarantee provided by this class is that equal keys lead to the same lock (or semaphore), * i.e. {@code if (key1.equals(key2))} then {@code striped.get(key1) == striped.get(key2)} (assuming
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 20.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMakerInternalMap.java
* of reads may not be immediately reflected on the algorithm's data structures. These structures * are guarded by a lock and operations are applied in batches to avoid lock contention. The * penalty of applying the batches is spread across threads so that the amortized cost is slightly * higher than performing just the operation without enforcing the capacity constraint. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 90K bytes - Viewed (0)