- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 16 for origFn (0.08 seconds)
-
src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java
// Execute corsHandlerFactory.add(origin1, handler1); corsHandlerFactory.add(origin2, handler2); corsHandlerFactory.add(origin3, handler3); // Verify assertEquals(handler1, corsHandlerFactory.get(origin1)); assertEquals(handler2, corsHandlerFactory.get(origin2)); assertEquals(handler3, corsHandlerFactory.get(origin3)); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/filter/CorsFilterTest.java
} // Test with different origin formats @Test public void test_doFilter_differentOrigins() throws Exception { String[] origins = { "http://localhost:8080", "https://example.com", "http://subdomain.example.com", "https://example.com:3000" }; for (String origin : origins) { resetMocks(); // Reset for each test mockRequest.setHeader("Origin", origin);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) -
src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java
String[] origins = { "https://site1.com", "https://site2.com", "https://site3.com" }; for (String origin : origins) { processCalled = false; corsHandler.process(origin, request, response); assertTrue("process should be called for " + origin, processCalled); assertEquals(origin, processOrigin); } }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) -
.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) -
.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) -
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) -
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) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java
" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" \n" + " referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen> \n" + " </iframe> \n" + " </div> \n" + " </div> \n" + "</details>");Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Mar 03 01:59:51 GMT 2026 - 11.3K bytes - Click Count (0) -
src/main/resources/fess_config.properties
api.dashboard.response.headers=Referrer-Policy:strict-origin-when-cross-origin # Allowed origins for CORS. api.cors.allow.origin=* # Allowed HTTP methods for CORS. api.cors.allow.methods=GET, POST, OPTIONS, DELETE, PUT # Max age for CORS preflight requests. api.cors.max.age=3600 # Allowed headers for CORS. api.cors.allow.headers=Origin, Content-Type, Accept, Authorization, X-Requested-With
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 59.3K bytes - Click Count (0) -
src/main/resources/esclient.xml
<components> <component name="searchEngineClient" class="org.codelibs.fess.opensearch.client.SearchEngineClient"> <property name="settings"> {"http.cors.enabled":"true", "http.cors.allow-origin":"*", "discovery.type":"single-node", "cluster.allocator.existing_shards_allocator.batch_enabled":"true", <!-- "node.name":"search_engine", "discovery.seed_hosts":"search_engine",
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 16.2K bytes - Click Count (0)