Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for preflight (0.04 sec)

  1. src/main/java/org/codelibs/fess/filter/CorsFilter.java

    import jakarta.servlet.http.HttpServletRequest;
    import jakarta.servlet.http.HttpServletResponse;
    
    /**
     * Filter for handling Cross-Origin Resource Sharing (CORS) requests.
     * Processes CORS headers and handles preflight OPTIONS requests.
     */
    public class CorsFilter implements Filter {
    
        /**
         * Creates a new instance of CorsFilter.
         */
        public CorsFilter() {
            // Default constructor
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/cors/CorsHandler.java

         * CORS header for allowing credentials.
         */
        protected static final String ACCESS_CONTROL_ALLOW_CREDENTIALS = "Access-Control-Allow-Credentials";
    
        /**
         * CORS header for specifying cache duration for preflight requests.
         */
        protected static final String ACCESS_CONTROL_MAX_AGE = "Access-Control-Max-Age";
    
        /**
         * Processes the CORS request by setting appropriate headers.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/cors.md

    * `max_age` - Sets a maximum time in seconds for browsers to cache CORS responses. Defaults to `600`.
    
    The middleware responds to two particular types of HTTP request...
    
    ### CORS preflight requests { #cors-preflight-requests }
    
    These are any `OPTIONS` request with `Origin` and `Access-Control-Request-Method` headers.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  4. docs/uk/docs/tutorial/cors.md

    * `max_age` - Встановлює максимальний час (у секундах) для кешування CORS-відповідей у браузерах. За замовчуванням `600`.
    
    Цей middleware обробляє два типи HTTP-запитів...
    
    ### Попередні CORS-запити (preflight requests)
    
    Це будь-які `OPTIONS` - запити, що містять заголовки `Origin` та `Access-Control-Request-Method`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri May 30 13:34:34 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  5. docs/es/docs/tutorial/cors.md

    * `max_age` - Establece un tiempo máximo en segundos para que los navegadores almacenen en caché los responses CORS. Por defecto es `600`.
    
    El middleware responde a dos tipos particulares de request HTTP...
    
    ### Requests de preflight CORS
    
    Estos son cualquier request `OPTIONS` con headers `Origin` y `Access-Control-Request-Method`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/cors.md

    * `max_age` - Define um tempo máximo em segundos para os navegadores armazenarem em cache as respostas CORS. O padrão é `600`.
    
    O middleware responde a dois tipos específicos de solicitação HTTP...
    
    ### Requisições CORS pré-voo (preflight)
    
    Estas são quaisquer solicitações `OPTIONS` com cabeçalhos `Origin` e `Access-Control-Request-Method`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/filter/CorsFilterTest.java

            assertTrue(mockFilterChain.wasDoFilterCalled());
            assertTrue(handler.wasProcessCalled());
            assertEquals(0, mockResponse.getStatus());
        }
    
        // Test with OPTIONS request (preflight)
        public void test_doFilter_withCorsHandler_options() throws IOException, ServletException {
            String origin = "http://example.com";
            mockRequest.setHeader("Origin", origin);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.33.md

    - kubeadm: removed preflight check for nsenter on Linux nodes
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:46:23 UTC 2025
    - 294.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.32.md

    - kubeadm: removed `socat` and `ebtables` from kubeadm preflight checks ([#127151](https://github.com/kubernetes/kubernetes/pull/127151), [@saschagrunert](https://github.com/saschagrunert)) [SIG Cluster Lifecycle]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: Added support during the preflight check "CreateJob" of "kubeadm upgrade" to check if there are no nodes where a Pod can be scheduled. If there are none, show a warning and skip this preflight check. This can happen in single node clusters where the only node was drained. ([#124503](https://github.com/kubernetes/kubernetes/pull/124503), [@neolit123](https:/...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:49:57 UTC 2025
    - 429.6K bytes
    - Viewed (0)
Back to top