Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 39 for eurent (0.03 seconds)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

    fun Directory.parentOrRoot(): Directory = if (this.file("version.txt").asFile.exists()) {
        this
    } else {
        val parent = dir("..")
        when {
            parent.file("version.txt").asFile.exists() -> parent
            this == parent -> error("Cannot find 'version.txt' file in root of repository")
            else -> parent.parentOrRoot()
        }
    }
    
    
    fun Project.releasedVersionsFile() = repoRoot().file("released-versions.json")
    
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 25 08:51:12 GMT 2026
    - 4.9K bytes
    - Click Count (1)
  2. src/main/java/org/codelibs/fess/timer/LogNotificationTarget.java

                    for (final LogNotificationEvent event : batch) {
                        final Map<String, Object> source = new HashMap<>();
                        source.put("hostname", hostname);
                        source.put("level", event.getLevel());
                        source.put("loggerName", event.getLoggerName());
                        source.put("message", event.getMessage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        }
    
        /**
         * Gets the current time as a Date object.
         *
         * @return The current time.
         */
        public Date getCurrentTime() {
            return new Date(getCurrentTimeAsLong());
        }
    
        /**
         * Gets the current time in milliseconds.
         *
         * @return The current time in milliseconds.
         */
        public long getCurrentTimeAsLong() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 43.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/helper/LogNotificationHelper.java

                logNotificationTarget.flush();
            }
        }
    
        /**
         * Offers an event to the buffer. If the buffer exceeds the maximum size, the oldest event is dropped.
         *
         * @param event the log notification event to add
         */
        public void offer(final LogNotificationEvent event) {
            int maxBufferSize;
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

            coordinatorHelper.addEventHandler("config_updated", event -> {
                receivedData.set(event.data);
                receivedInstanceId.set(event.instanceId);
            });
    
            final EventInfo event = new EventInfo();
            event.name = "config_updated";
            event.data = "web_config";
            event.instanceId = "sender@host1";
            coordinatorHelper.dispatchEvent(event);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            activityHelper.login(OptionalThing.empty());
            assertEquals(
                    "{\"@timestamp\":\"2022-01-01T00:00:00.000Z\",\"log.level\":\"INFO\",\"ecs.version\":\"1.2.0\",\"service.name\":\"fess\",\"event.dataset\":\"app\",\"process.thread.name\":\"main\",\"log.logger\":\"org.codelibs.fess.helper.ActivityHelperTest$1\",\"labels.action\":\"LOGIN\",\"labels.user\":\"-\",\"labels.permissions\":\"-\"}",
                    localLogMsg.get());
    
    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)
  7. CONTRIBUTING.md

    We may ask you to answer these questions directly in the GitHub issue or (for large changes) in a shared Google Doc.
    
    Please note that some features may be out of the team's current focus, and it can take significant time for the team to review the PR thoroughly and address it fully.
    
    ### Security vulnerabilities
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/util/LogNotificationAppender.java

        }
    
        @Override
        public void append(final LogEvent event) {
            final String loggerName = event.getLoggerName();
            if (loggerName != null) {
                for (final String excluded : EXCLUDED_LOGGERS) {
                    if (loggerName.startsWith(excluded)) {
                        return;
                    }
                }
            }
    
            if (!event.getLevel().isMoreSpecificThan(getEffectiveMinLevel())) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 6K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

        /**
         * Sends a Server-Sent Event (SSE) to the client.
         *
         * @param writer the print writer to write the event to
         * @param event the event name
         * @param data the event data to serialize as JSON
         */
        protected void sendSseEvent(final PrintWriter writer, final String event, final Map<String, Object> data) {
            try {
                writer.write("event: " + event + "\n");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

                events.add(new LogNotificationEvent(timestamp, "ERROR", "org.codelibs.fess.TestClass", longMessage, null));
            }
    
            String details = testableJob.testFormatDetails(events);
    
            assertNotNull(details);
            // Max 50 events displayed, message truncated to 200 chars
            assertTrue(details.contains("Total: 100 event(s) (showing 50)"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.5K bytes
    - Click Count (0)
Back to Top