Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for DOMAIN (0.92 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java

                    final Map<String, String> map = ParameterUtil.parse(fileAuth.getParameters());
                    final String domain = map.get("domain");
                    smbAuth.setDomain(domain == null ? StringUtil.EMPTY : domain);
                    smbAuth.setServer(fileAuth.getHostname());
                    smbAuth.setPort(fileAuth.getPort() == null ? -1 : fileAuth.getPort());
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 24 02:07:40 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. CLAUDE.md

    │   ├── log/                   # Log index
    │   ├── user/                  # User index
    │   ├── exbhv/                 # Extended behaviors (repositories)
    │   └── exentity/              # Extended entities (domain models)
    ├── helper/                    # Cross-cutting utilities
    ├── crawler/                   # Crawling engine
    ├── sso/                       # SSO implementations
    └── ds/                        # Data store connectors
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        /**
         * Checks if domain services are enabled for Entra ID authentication.
         * Uses new entraid.use.ds key with fallback to legacy aad.use.ds.
         * @return true if domain services are enabled, false otherwise.
         */
        default boolean isEntraIdUseDomainServices() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 88.2K bytes
    - Viewed (0)
Back to top