Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 15 for aurait (0.04 seconds)

  1. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorConcurrencyTest.java

                    for (int i = 0; i < numThreads; i++) {
                        final int threadId = i;
                        executor.submit(() -> {
                            try {
                                startLatch.await(); // Wait for all threads to be ready
                                for (int j = 0; j < searchersPerThread; j++) {
                                    processor.register(new TestSearcher(10 + threadId * 10 + j));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 13.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java

                break;
            }
            return OptionalEntity.empty();
        }
    
        /**
         * Gets a duplicate host entity from the form, setting audit fields.
         *
         * @param form the form containing duplicate host data
         * @return optional duplicate host entity with audit fields set
         */
        public static OptionalEntity<DuplicateHost> getDuplicateHost(final CreateForm form) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 15.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java

            for (int i = 0; i < readerThreadCount; i++) {
                final int threadIndex = i;
                readerThreads[i] = new Thread(() -> {
                    try {
                        startLatch.await(); // Wait for start signal
                        long endTime = System.currentTimeMillis() + testDurationMs;
                        while (System.currentTimeMillis() < endTime) {
    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)
  4. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

                    logger.error("Failed to update suggest index.", t);
                    exitCode.set(1);
                    latch.countDown();
                });
    
                try {
                    latch.await();
                } catch (final InterruptedException ignore) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Interrupted.", ignore);
                    }
                    exitCode.set(1);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/util/InputStreamThreadTest.java

            };
    
            InputStreamThread thread = new InputStreamThread(is, StandardCharsets.UTF_8, 100, callback);
            thread.start();
    
            assertTrue("Should process all lines within timeout", latch.await(3, TimeUnit.SECONDS));
    
            thread.join(1000);
    
            assertEquals("All lines should be processed", 5000, receivedLines.size());
            assertEquals("First line", "Line number 0", receivedLines.get(0));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 12K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java

            for (int t = 0; t < threadCount; t++) {
                final int threadId = t;
                futures.add(executor.submit(() -> {
                    try {
                        startLatch.await();
                        for (int i = 0; i < iterationsPerThread; i++) {
                            final Map<String, Object> params = new HashMap<>();
                            params.put("x", threadId * 1000 + i);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:03:38 GMT 2026
    - 29.1K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/app/web/admin/log/AdminLogActionTest.java

        public void test_isLogFilename_withLogExtension() {
            assertTrue(AdminLogAction.isLogFilename("fess.log"));
            assertTrue(AdminLogAction.isLogFilename("crawler.log"));
            assertTrue(AdminLogAction.isLogFilename("audit.log"));
            assertTrue(AdminLogAction.isLogFilename("application-2024-01-01.log"));
        }
    
        @Test
        public void test_isLogFilename_withLogGzExtension() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

                    localLogMsg.get());
        }
    
        // ===== Access Denied Audit Log Tests =====
    
        @Test
        public void test_accessDenied() {
            activityHelper.useEcsFormat = false;
            activityHelper.accessDenied(OptionalThing.empty(), "/admin/user/");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 11:45:43 GMT 2026
    - 24.3K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

                    logger.debug("Failed to get scheduled job from thread local", e);
                }
            }
            return null;
        }
    
        /**
         * Logs script execution to the audit log.
         *
         * @param script the script content that was executed
         * @param result the execution result (e.g., "success" or "failure:ExceptionType")
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

                    } finally {
                        latch.countDown();
                    }
                }, "ProcessCloser-output-" + sessionId).start();
    
                try {
                    latch.await(streamCloseTimeout, TimeUnit.SECONDS);
                } catch (final InterruptedException e) {
                    logger.warn("Interrupted to wait a process.", e);
                }
                try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 06:54:47 GMT 2025
    - 10.9K bytes
    - Click Count (0)
Back to Top