- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 269 for gats (0.02 sec)
-
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
.execute(); } /** * Gets the OpenID Connect client secret. * * @return the client secret */ protected String getOicClientSecret() { return ComponentUtil.getSystemProperties().getProperty(OIC_CLIENT_SECRET, StringUtil.EMPTY); } /** * Gets the OpenID Connect token server URL. * * @return the token server URL
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java
*/ public class VirtualHostHelper { /** * Default constructor. */ public VirtualHostHelper() { // Default constructor } /** * Gets the virtual host path for the specified HTML page. * * @param page The HTML page to get the virtual host path for * @return The HTML page with updated virtual host path */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.28.md
- Marked the feature gate `ExperimentalHostUserNamespaceDefaulting` as deprecated. Enabling the feature gate already had no effect; the deprecation allows for removing the feature gate in a future release. ([#116723](https://github.com/kubernetes/kubernetes/pull/116723), [@SergeyKanzhelev](https://github.com/SergeyKanzhelev)) [SIG Node]
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Oct 23 20:13:20 UTC 2024 - 456.9K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/service/RoleService.java
* The behavior for users. */ @Resource protected UserBhv userBhv; /** * Constructor. */ public RoleService() { super(); } /** * Gets a list of roles based on the pager. * @param rolePager The pager for roles. * @return A list of roles. */ public List<Role> getRoleList(final RolePager rolePager) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryCommand.java
ComponentUtil.getQueryProcessor().add(getQueryClassName(), this); } /** * Gets the query field configuration. * @return The query field configuration instance. */ protected QueryFieldConfig getQueryFieldConfig() { return ComponentUtil.getQueryFieldConfig(); } /** * Gets the query processor instance. * @return The query processor instance. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlResponse.java
} } /** * Gets the content of the response using the provided parser function. * * @param <T> the type of the parsed content. * @param parser the function to parse the content. * @return the parsed content. */ public <T> T getContent(final Function<CurlResponse, T> parser) { return parser.apply(this); } /** * Gets the content of the response as a string.
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java
dataSerializer = ComponentUtil.getComponent("dataSerializer"); } /** * Gets the Fess configuration instance. * * @return the Fess configuration */ @Override public FessConfig getFessConfig() { return fessConfig; } /** * Gets the logger instance for this transformer. * * @return the logger instance */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java
*/ public void setNewInput(final String newInput) { this.newInput = newInput; } /** * Gets the input value for this item. * @return the input value */ public String getInput() { return input; } /** * Gets the input value or empty string if null. * @return the input value or empty string */ public String getInputValue() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
} }); } /** * Gets the username of the current user. * * @return The username, or "guest" if not logged in. */ public String getUsername() { return getRequestManager().findUserBean(FessUserBean.class).map(FessUserBean::getUserId).orElse(Constants.GUEST_USER); } /** * Gets the request manager. * * @return The request manager.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/CharMappingPager.java
id = null; } /** * Gets the default page size from configuration. * @return The default page size. */ protected int getDefaultPageSize() { return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger(); } /** * Gets the default current page number. * @return The default current page number. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0)