Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 42 for aurait (0.04 seconds)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g.  */
        String APP_AUDIT_LOG_FORMAT = "app.audit.log.format";
    
        /** The key of the configuration. e.g. true */
        String SCRIPT_AUDIT_LOG_ENABLED = "script.audit.log.enabled";
    
        /** The key of the configuration. e.g. 100 */
        String SCRIPT_AUDIT_LOG_MAX_LENGTH = "script.audit.log.max.length";
    
        /** The key of the configuration. e.g. -Djava.awt.headless=true<br>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  6. 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)
  7. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

                ByteArrayOutputStream stderr = connectStream(process.getErrorStream(), latch);
    
                process.waitFor(1, TimeUnit.MINUTES);
                latch.await(1, TimeUnit.MINUTES);
                return new ExecResult(args, process.exitValue(), stdout.toString(UTF_8), stderr.toString(UTF_8));
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Sep 23 13:49:45 GMT 2025
    - 12K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

            // Default constructor
        }
    
        /**
         * The logger.
         */
        protected Logger logger = null;
    
        /**
         * The logger name.
         */
        protected String loggerName = "fess.log.audit";
    
        /**
         * The permission separator.
         */
        protected String permissionSeparator = "|";
    
        /**
         * The flag to use ECS format.
         */
        protected boolean useEcsFormat = false;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 11:45:43 GMT 2026
    - 13.1K bytes
    - Click Count (0)
  9. src/main/resources/fess_config.properties

    # Extension names for application customization.
    app.extension.names=
    
    # Audit log format.
    app.audit.log.format=
    
    # Script audit log settings.
    script.audit.log.enabled=true
    script.audit.log.max.length=100
    
    # JVM options for the crawler process.
    jvm.crawler.options=\
    -Djava.awt.headless=true\n\
    -Dfile.encoding=UTF-8\n\
    -Djna.nosys=true\n\
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/util/WebApiUtilTest.java

                        errorCount.incrementAndGet();
                    } finally {
                        latch.countDown();
                    }
                }).start();
            }
    
            try {
                latch.await();
            } catch (InterruptedException e) {
                Thread.currentThread().interrupt();
                fail("Thread safety test interrupted");
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.4K bytes
    - Click Count (0)
Back to Top