Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for doMain (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolver.java

    import org.apache.http.conn.DnsResolver;
    
    /**
     * The {@code IdnDnsResolver} class implements the {@code DnsResolver} interface
     * to provide DNS resolution with support for Internationalized Domain Names (IDN).
     * It converts Unicode domain names to ASCII Compatible Encoding (ACE) using the
     * {@link java.net.IDN} class.
     *
     * <p>This class allows setting a custom flag for the IDN conversion and a custom
     * encoding for URL decoding.</p>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 06 07:24:43 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  8. 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)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapImage.java

     */
    public class SitemapImage implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * The URL of the image.
         * In some cases, the image URL may not be on the same domain as your main site.
         */
        private String loc;
    
        /**
         * The caption of the image.
         */
        private String caption;
    
        /**
         * The geographic location of the image.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  10. 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)
Back to top