Search Options

Results per page
Sort
Preferred Languages
Advance

Results 3601 - 3610 of 6,120 for stringy (0.21 sec)

  1. src/main/java/org/codelibs/fess/exception/LdapOperationException.java

    public class LdapOperationException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public LdapOperationException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public LdapOperationException(final String message) {
            super(message);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 990 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exception/ScriptEngineException.java

    public class ScriptEngineException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public ScriptEngineException(final String message) {
            super(message);
        }
    
        public ScriptEngineException(final String message, final Throwable cause) {
            super(message, cause);
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 986 bytes
    - Viewed (0)
  3. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/DefaultSettingsDecrypter.java

            List<SettingsProblem> problems = new ArrayList<>();
    
            List<Server> servers = new ArrayList<>();
    
            for (Server server : request.getServers()) {
                server = server.clone();
    
                String password = server.getPassword();
                if (securityDispatcher.isAnyEncryptedString(password)) {
                    try {
                        if (securityDispatcher.isLegacyEncryptedString(password)) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. cmd/lock-rest-client.go

    func (c *lockRESTClient) IsLocal() bool {
    	return false
    }
    
    // Close - marks the client as closed.
    func (c *lockRESTClient) Close() error {
    	return nil
    }
    
    // String - returns the remote host of the connection.
    func (c *lockRESTClient) String() string {
    	return c.connection.Remote
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 29 18:10:04 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exception/SearchQueryException.java

    public class SearchQueryException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public SearchQueryException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public SearchQueryException(final String message) {
            super(message);
        }
    
        public SearchQueryException(final Throwable cause) {
            super(cause);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/exception/SuggestIndexException.java

        private static final long serialVersionUID = -3792626439756997194L;
    
        public SuggestIndexException(final String msg) {
            super(msg);
        }
    
        public SuggestIndexException(final Throwable cause) {
            super(cause);
        }
    
        public SuggestIndexException(final String msg, final Throwable cause) {
            super(msg, cause);
        }
    
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/ExecutionTimeoutException.java

    public class ExecutionTimeoutException extends ExtractException {
    
        private static final long serialVersionUID = 1L;
    
        public ExecutionTimeoutException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public ExecutionTimeoutException(final String message) {
            super(message);
        }
    
        public ExecutionTimeoutException(final Throwable cause) {
            super(cause);
        }
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/ExtractException.java

     */
    public class ExtractException extends CrawlerSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public ExtractException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public ExtractException(final String message) {
            super(message);
        }
    
        public ExtractException(final Throwable cause) {
            super(cause);
        }
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/RobotsTxtException.java

     */
    public class RobotsTxtException extends CrawlerSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public RobotsTxtException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public RobotsTxtException(final String message) {
            super(message);
        }
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1020 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SambaHelper.java

            }
            if (logger.isDebugEnabled()) {
                logger.debug("Ignored SID: {} {}", type, sid);
            }
            return null;
        }
    
        protected String createSearchRole(final int type, final String name) {
            if (fessConfig.isLdapLowercasePermissionName()) {
                return type + fessConfig.getCanonicalLdapName(name).toLowerCase(Locale.ROOT);
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Jun 27 10:58:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top