- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 30 for samr (1.05 sec)
-
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
* saml.sp.single_logout_service.url=https://your-fess-server.example.com/sso/logout * </pre> * * <h2>Complete Configuration Example (Okta)</h2> * <pre> * sso.type=saml * * # IdP settings from Okta SAML setup instructions * saml.idp.entityid=http://www.okta.com/your-app-id * saml.idp.single_sign_on_service.url=https://your-domain.okta.com/app/your-app/your-app-id/sso/saml
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Dec 14 01:18:25 UTC 2025 - 20.2K bytes - Viewed (3) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java
* that controls the interval between requests to the same host. * It uses a Guava Cache to store the last access time for each host. * The delayBeforeProcessing method is overridden to introduce a delay before processing a URL, * ensuring that requests to the same host are not made too frequently. * The delay is calculated based on the configured delayMillisBeforeProcessing parameter.
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java
} /** * Test switchIndex when update and search indices are the same. * Verifies that the method returns early without errors. */ @Test public void testSwitchIndex_sameUpdateAndSearchIndex() throws Exception { final Suggester suggester = Suggester.builder().build(client, "same-index-test"); suggester.createIndexIfNothing(); // Get the current indicesRegistered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 13.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
startLatch.countDown(); // Wait for all threads to complete assertTrue("Threads did not complete in time", doneLatch.await(5, TimeUnit.SECONDS)); // All threads should fail with the same IOException (project ID is blank) // But importantly, there should be no race condition errors assertEquals(threadCount, failureCount.get()); assertEquals(0, successCount.get());
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/interval/impl/HostIntervalControllerTest.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/org/codelibs/core/misc/Base64UtilTest.java
final String encoded = Base64Util.encode(singleByte); assertNotNull("Encoded result should not be null", encoded); final byte[] decoded = Base64Util.decode(encoded); assertEquals("Decoded should have same length", 1, decoded.length); assertEquals("Decoded byte should match", singleByte[0], decoded[0]); } /** * Test encode with two bytes * * @throws Exception */
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 6K bytes - Viewed (0) -
src/main/resources/fess_sso++.xml
</component> <component name="oicAuthenticator" class="org.codelibs.fess.sso.oic.OpenIdConnectAuthenticator"> </component> <component name="samlAuthenticator" class="org.codelibs.fess.sso.saml.SamlAuthenticator"> </component> <component name="spnegoAuthenticator" class="org.codelibs.fess.sso.spnego.SpnegoAuthenticator"> </component>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:33:53 UTC 2025 - 612 bytes - Viewed (0) -
CLAUDE.md
mvn test # Run tests mvn formatter:format # Format code mvn license:format # Update license headers ``` ### Code Style - 4 spaces (no tabs) - Opening brace on same line - Max line length: 120 - JavaDoc required for public APIs - License headers required ### Testing **Structure**: `src/test/java/org/codelibs/fess/crawler/`
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java
startLatch.countDown(); // Wait for all threads to complete assertTrue("Threads did not complete in time", doneLatch.await(5, TimeUnit.SECONDS)); // All threads should fail with the same IOException (endpoint is blank) // But importantly, there should be no race condition errors assertEquals(threadCount, failureCount.get()); assertEquals(0, successCount.get());
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java
* According to RFC 9309: * 1. Find the longest matching pattern (by priority length) * 2. If both Allow and Disallow patterns match with the same length, Allow takes precedence * 3. If no pattern matches, the path is allowed by default * * @param path the path to check * @return true if the path is allowed, false otherwiseRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 18.5K bytes - Viewed (0)