Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test_concurrentOperations (0.11 sec)

  1. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

                docMap.put("mimetype", mimeType);
                assertFalse("Should not support " + mimeType, thumbnailGenerator.isTarget(docMap));
            }
        }
    
        public void test_concurrentOperations() throws InterruptedException {
            // Test thread safety with concurrent operations
            final int threadCount = 10;
            Thread[] threads = new Thread[threadCount];
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

            // with message "Failed to write a userDict file." - this is covered by
            // the constructor's exception handling implementation
        }
    
        public void test_concurrent_operations() {
            // Test concurrent read operations
            protwordsFile.reload(null);
    
            // Multiple reads should work fine
            OptionalEntity<ProtwordsItem> item1 = protwordsFile.get(1);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            } finally {
                if (outputFile.exists()) {
                    outputFile.delete();
                }
            }
        }
    
        // Test concurrent access patterns
        public void test_concurrent_operations() throws Exception {
            final CommandGenerator generator1 = new CommandGenerator();
            final CommandGenerator generator2 = new CommandGenerator();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
Back to top