- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 20 for doMain (0.04 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java
final String domain = paramMap.get(CRAWLER_WEB_AUTH + "." + webAuthName + ".domain"); credentials = new NTCredentials(username, password == null ? StringUtil.EMPTY : password, workstation == null ? StringUtil.EMPTY : workstation, domain == null ? StringUtil.EMPTY : domain); } else {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 18.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/JcifsEngine.java
} /** * Generates a Type 1 NTLM message. * * @param domain the domain name * @param workstation the workstation name * @return the Base64-encoded Type 1 message * @throws NTLMEngineException if an NTLM engine error occurs */ @Override public String generateType1Msg(final String domain, final String workstation) throws NTLMEngineException {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 11.1K bytes - Viewed (0) -
CLAUDE.md
├── request/ │ ├── suggest/ # Suggestion queries │ └── popularwords/ # Popular word queries ├── settings/ # Configuration management ├── entity/ # Domain models (SuggestItem, etc.) ├── normalizer/ # Text normalizers ├── converter/ # Reading converters (katakana, romaji) ├── concurrent/ # Async patterns (Deferred/Promise)
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SambaHelper.java
/** * SID type for a deleted account. */ public static final int SID_TYPE_DELETED = 6; /** * SID type for a domain group. */ public static final int SID_TYPE_DOM_GRP = 2; /** * SID type for a domain. */ public static final int SID_TYPE_DOMAIN = 3; /** * SID type for an invalid SID. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java
final String workstation = parameterMap.get("workstation"); final String domain = parameterMap.get("domain"); return new NTCredentials(getUsername(), getPassword(), workstation == null ? StringUtil.EMPTY : workstation, domain == null ? StringUtil.EMPTY : domain); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 04:23:08 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
cookie.setSecure(isSearchParameterCookieSecure(req)); final String domain = fessConfig.getCookieSearchParameterDomain(); if (StringUtil.isNotBlank(domain)) { cookie.setDomain(domain); } final String path = fessConfig.getCookieSearchParameterPath();
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 36.3K bytes - Viewed (0) -
CLAUDE.md
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
* <pre> * # Enable SAML SSO * sso.type=saml * * # Identity Provider settings (obtain from your IdP) * saml.idp.entityid=http://www.okta.com/xxxxx * saml.idp.single_sign_on_service.url=https://your-domain.okta.com/app/xxxxx/sso/saml * saml.idp.x509cert=MIIDqjCCApKgAwIBAgIGAYMwfYAwMA0G... * </pre> * * <h2>Service Provider URL Configuration</h2> * <p>By default, the SP URLs use {@code http://localhost:8080} as the base URL.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Dec 14 01:18:25 UTC 2025 - 20.2K bytes - Viewed (3) -
src/main/resources/fess_config.properties
cookie.search.parameter.secure= # Max-Age (in seconds) for the search parameter cookie. Use -1 for session-only cookies. cookie.search.parameter.max_age=60 # Domain attribute for the search parameter cookie. Set to the domain scope you want the cookie to be available on (e.g., example.com). cookie.search.parameter.domain= # Path attribute for the search parameter cookie. Typically set to "/" or the context path of the app. cookie.search.parameter.path=/
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0)