Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 27 for olisin (0.04 seconds)

  1. src/main/resources/fess_indices/fess/fi/stopwords.txt

    olla
    olen
    olet
    on
    olemme
    olette
    ovat
    ole
    oli
    olisi
    olisit
    olisin
    olisimme
    olisitte
    olisivat
    olit
    olin
    olimme
    olitte
    olivat
    ollut
    olleet
    en
    et
    ei
    emme
    ette
    eivät
    minä
    minun
    minut
    minua
    minussa
    minusta
    minuun
    minulla
    minulta
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 1.7K bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/_aws/fess.json

            },
            "finnish_stop": {
              "type":       "stop",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  3. src/main/resources/fess_indices/_cloud/fess.json

            },
            "finnish_stop": {
              "type":       "stop",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/filter/CorsFilter.java

            final String origin = httpRequest.getHeader("Origin");
            if (StringUtil.isNotBlank(origin)) {
                if (logger.isDebugEnabled()) {
                    logger.debug("HTTP Request: method={}", httpRequest.getMethod());
                }
                final CorsHandlerFactory factory = ComponentUtil.getCorsHandlerFactory();
                final CorsHandler handler = factory.get(origin);
                if (handler != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 2.9K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java

                List<String> originHeaders = responseHeaders.get("Access-Control-Allow-Origin");
                assertNotNull(originHeaders, "Headers should be set for origin: " + origin);
                assertTrue(originHeaders.contains(origin));
            }
        }
    
        // Test process method with wildcard origin
        @Test
        public void test_processWithWildcardOrigin() {
            String wildcardOrigin = "*";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 26.3K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java

                logger.debug("Loaded CorsHandler: origin={}", origin);
            }
            handerMap.put(origin, handler);
        }
    
        /**
         * Gets the CORS handler for the specified origin.
         * If no specific handler is found, returns the wildcard handler.
         *
         * @param origin the origin to look up
         * @return the CORS handler for the origin, or null if none found
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 2.2K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/cors/DefaultCorsHandler.java

         * Headers include allowed origin, methods, headers, max age, and credentials setting.
         *
         * @param origin the origin of the request
         * @param request the servlet request
         * @param response the servlet response to add CORS headers to
         */
        @Override
        public void process(final String origin, final ServletRequest request, final ServletResponse response) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 3K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/filter/CorsFilterTest.java

        }
    
        // Test with valid Origin and CorsHandler found (non-OPTIONS request)
        @Test
        public void test_doFilter_withCorsHandler_nonOptions() throws IOException, ServletException {
            String origin = "http://example.com";
            mockRequest.setHeader("Origin", origin);
            mockRequest.setMethod("GET");
            TestCorsHandler handler = new TestCorsHandler();
            corsHandlerFactory.setHandler(handler);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 22.6K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java

        }
    
        @Test
        public void test_add_and_get_specificOrigin() {
            // Setup
            String origin = "https://example.com";
            TestCorsHandler handler = new TestCorsHandler("example-handler");
    
            // Execute
            corsHandlerFactory.add(origin, handler);
            CorsHandler result = corsHandlerFactory.get(origin);
    
            // Verify
            assertNotNull(result);
            assertEquals(handler, result);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.3K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/cors/CorsHandler.java

        /**
         * Processes the CORS request by setting appropriate headers.
         *
         * @param origin the origin of the request
         * @param request the servlet request
         * @param response the servlet response
         */
        public abstract void process(String origin, ServletRequest request, ServletResponse response);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.4K bytes
    - Click Count (0)
Back to Top