Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 16 for olisin (0.1 seconds)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  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. .teamcity/scripts/FindCommits.java

                System.exit(2);
            }
    
            String targetRef = "refs/remotes/origin/" + targetBranch;
    
            if (!refExists(targetRef)) {
                System.err.println("Target ref " + targetRef + " not present locally; fetching origin/" + targetBranch + "...");
                run("git", "fetch", "origin", targetBranch);
            }
    
            String targetSha = stdout("git", "rev-parse", targetRef).trim();
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 5.5K bytes
    - Click Count (0)
  7. .teamcity/scripts/CheckBadMerge.java

            System.out.println(" p2Branches: " + p2Branches);
    
            boolean p1IsMaster = p1Branches.contains("origin/master");
            boolean p2IsMaster = p2Branches.contains("origin/master");
            boolean p2IsRelease = p2Branches.stream().anyMatch(b -> b.startsWith("origin/release"));
    
            if (p1IsMaster && !p2IsMaster && p2IsRelease) {
                List<String> badFiles = filesFromMerge(commit).stream()
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 16:25:09 GMT 2026
    - 9K bytes
    - Click Count (0)
  8. src/main/resources/fess_indices/fess.json

            "bulgarian_override": {
              "type":       "stemmer_override",
              "rules_path": "${fess.dictionary.path}bg/stemmer_override.txt"
            },
            "catalan_elision": {
                "type":     "elision",
                "articles": [ "d", "l", "m", "n", "s", "t"]
            },
            "catalan_stop": {
              "type":       "stop",
              "stopwords_path": "${fess.dictionary.path}ca/stopwords.txt"
            },
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 40K bytes
    - Click Count (0)
  9. CONTRIBUTING.md

    To sign off a single commit:
    
    `git commit --amend --signoff`
    
    To sign off one or multiple commits:
    
    `git rebase --signoff origin/master`
    
    Then force push your branch:
    
    `git push --force origin test-branch`
    
    ### Fixing sanity check failures after public API changes
    
    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)
  10. src/main/webapp/js/purify.min.js

    iterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","tablevalues","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),F=i(["accent","acc...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 22.7K bytes
    - Click Count (0)
Back to Top