- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 620 for single1 (0.04 sec)
-
src/main/java/org/codelibs/fess/sso/SsoManager.java
import org.codelibs.fess.util.ComponentUtil; import org.lastaflute.web.login.credential.LoginCredential; import org.lastaflute.web.response.ActionResponse; /** * Manager class for coordinating SSO (Single Sign-On) authentication operations. * * This class serves as the central coordinator for SSO authentication in Fess. * It manages registered SSO authenticators, determines when SSO is available,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/InputStreamThread.java
logger.debug("Failed to process an input stream.", e); } } } } /** * Returns all buffered lines as a single string, separated by newlines. * * @return the concatenated output of all buffered lines */ public String getOutput() { final StringBuilder buf = new StringBuilder(100);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
CONTRIBUTING.md
copy of the boilerplate license comment (can be copied from an existing file). 3. Files should be formatted according to Google's [Java style guide][]. 4. Please squash all commits for a change into a single commit (this can be done using `git rebase -i`). Do your best to have a [well-formed commit message][] for the change. [Java style guide]: https://google.github.io/styleguide/javaguide.html
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Nov 17 18:47:47 UTC 2023 - 3.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/RequestParameterTest.java
assertEquals(name, param.getName()); assertNotNull(param.getValues()); assertEquals(0, param.getValues().length); } public void test_constructor_withSingleValue() { // Test with single value String name = "singleParam"; String[] values = { "onlyValue" }; RequestParameter param = new RequestParameter(name, values); assertEquals(name, param.getName());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PythonJob.java
* @return this PythonJob instance for method chaining */ public PythonJob filename(final String filename) { this.filename = filename; return this; } /** * Adds a single command-line argument to pass to the Python script. * * @param value the argument value to add * @return this PythonJob instance for method chaining */ public PythonJob arg(final String value) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java
} // Test execute with empty list public void test_execute_emptyList() { String result = scoreUpdater.execute(); assertEquals("", result); } // Test execute with single booster public void test_execute_singleBooster() { TestScoreBooster booster = new TestScoreBooster(100L); scoreUpdater.addScoreBooster(booster); String result = scoreUpdater.execute();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.3K bytes - Viewed (0) -
docs/features/connections.md
There may be many routes for a single address. For example, a webserver that is hosted in multiple datacenters may yield multiple IP addresses in its DNS response. In limited situations OkHttp will retry a route if connecting fails:
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Feb 21 03:33:59 UTC 2022 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/JAASAuthenticator.java
import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSException; /** * JAAS kerberos authenticator * * Either configure JAAS for credential caching or reuse a single instance of this authenticator -otherwise you won't * get proper ticket caching. * * Be advised that short/NetBIOS name usage is not supported with this authenticator. Always specify full FQDNs/Realm.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
import org.lastaflute.web.login.exception.LoginFailureException; import org.lastaflute.web.response.ActionResponse; import org.lastaflute.web.response.HtmlResponse; /** * SSO (Single Sign-On) action controller. * * This action handles SSO authentication flows including login, logout, and metadata * operations. It coordinates with the SsoManager to perform authentication using
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
.stream() .map(protwordsItem -> createEditBody(protwordsItem, dictId)) .collect(Collectors.toList())).status(ApiResult.Status.OK).result()); } /** * Retrieve a single protected words entry by ID for the specified dictionary. * * @param dictId identifier of the dictionary * @param id identifier of the entry * @return JSON response containing the entry */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0)