Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 49 for avions (0.05 seconds)

  1. src/main/java/org/codelibs/fess/validation/FessActionValidator.java

    import org.lastaflute.web.validation.ActionValidator;
    
    /**
     * Fess-specific action validator that extends the LastaFlute ActionValidator.
     * This validator provides validation functionality for Fess web actions with custom
     * message handling and runtime group validation.
     *
     * @param <MESSAGES> the type of user messages used by this validator
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  2. docs/fr/README.md

    # Fess : Serveur de recherche pour entreprises
    [![Java CI with Maven](https://github.com/codelibs/fess/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/fess/actions/workflows/maven.yml)
    [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/gitbucket/gitbucket/blob/master/LICENSE)
    ![GitHub Release](https://img.shields.io/github/v/release/codelibs/fess)
    
    ## Vue d'ensemble
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 7.9K bytes
    - Click Count (0)
  3. docs/pt-BR/README.md

    # Fess: Servidor de Busca Empresarial
    [![Java CI with Maven](https://github.com/codelibs/fess/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/fess/actions/workflows/maven.yml)
    [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/gitbucket/gitbucket/blob/master/LICENSE)
    ![GitHub Release](https://img.shields.io/github/v/release/codelibs/fess)
    
    ## Visão Geral
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 7.6K bytes
    - Click Count (0)
  4. docs/ja/README.md

    # Fess: エンタープライズ検索サーバー
    [![Java CI with Maven](https://github.com/codelibs/fess/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/fess/actions/workflows/maven.yml)
    [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/gitbucket/gitbucket/blob/master/LICENSE)
    ![GitHub Release](https://img.shields.io/github/v/release/codelibs/fess)
    
    ## 概要
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 8.5K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessActionAdjustmentProvider.java

        private static final Logger logger = LogManager.getLogger(FessActionAdjustmentProvider.class);
    
        // _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        // you can adjust your actions by overriding
        // default methods defined at the interface
        // _/_/_/_/_/_/_/_/_/_/
    
        protected Map<String, List<Pair<String, String>>> responseHeaderMap = new HashMap<>();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/AbstractConfigHelperTest.java

            long elapsed = endTime - startTime;
            assertTrue("Expected at least 15ms sleep, got " + elapsed + "ms", elapsed >= 15);
            // Generous tolerance for CI environments like GitHub Actions
            assertTrue("Expected less than 200ms sleep, got " + elapsed + "ms", elapsed < 200);
        }
    
        @Test
        public void test_waitForNext_withZeroInterval() {
            configHelper.setReloadInterval(0L);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  7. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt

     * while a worker action that executes in a worker must declare that it executes in
     * a worker.
     *
     * However, a shared library used by both daemon and worker actions does not necessarily
     * care which runtimes it must execute in. The target runtimes it must support is a function
     * of the daemon and worker project that depends on it. Since both a daemon and worker
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:40:18 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  8. src/main/webapp/css/chat.css

    }
    
    .chat-message.assistant .message-timestamp {
        text-align: left;
    }
    
    /* Message actions */
    .message-actions {
        display: flex;
        gap: 0.25rem;
        margin-top: 0.5rem;
        opacity: 0;
        transition: opacity 0.2s ease;
    }
    
    .chat-message:hover .message-actions {
        opacity: 1;
    }
    
    .message-action-btn {
        padding: 0.25rem 0.5rem;
        border: 1px solid #dfe1e6;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

         */
        protected void insertLogin(final Object member) {
            // nothing
        }
    
        /**
         * Checks if the current user has permission to access the given resource.
         * For admin actions, verifies that the user has appropriate admin roles or
         * meets the secured annotation requirements.
         *
         * @param resource the login handling resource to check permission for
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 12.1K bytes
    - Click Count (0)
  10. architecture/README.md

    that can send requests to a Gradle daemon.
    Each daemon runs one request at a time. Generally speaking, the daemons only act in response to a request from a client and do not take any action on their own.
    There are some background actions that the daemon takes, for example monitoring system memory, watching for file changes or cleaning up caches.
    The daemon never runs any user code in the background.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 12 09:50:57 GMT 2025
    - 3.6K bytes
    - Click Count (0)
Back to Top