Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 190 for Kuper (0.17 sec)

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

            super(message, cause);
        }
    
        public FessSystemException(final String message) {
            super(message);
        }
    
        public FessSystemException(final Throwable cause) {
            super(cause);
        }
    
        protected FessSystemException(final String message, final boolean enableSuppression, final boolean writableStackTrace) {
            super(message, null, enableSuppression, writableStackTrace);
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exception/DataStoreException.java

        public DataStoreException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public DataStoreException(final String message) {
            super(message);
        }
    
        public DataStoreException(final Throwable cause) {
            super(cause);
        }
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

                }
            });
            return viewHelper.getActionHook().godHandPrologue(runtime, super::godHandPrologue);
        }
    
        @Override
        public final ActionResponse godHandMonologue(final ActionRuntime runtime) {
            return viewHelper.getActionHook().godHandMonologue(runtime, super::godHandMonologue);
        }
    
        @Override
        public final void godHandEpilogue(final ActionRuntime runtime) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exception/GsaConfigException.java

        private static final long serialVersionUID = 1L;
    
        public GsaConfigException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public GsaConfigException(final String message) {
            super(message);
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 978 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exception/JobNotFoundException.java

        private static final long serialVersionUID = 1L;
    
        public JobNotFoundException(final ScheduledJob scheduledJob) {
            super(scheduledJob.toString());
        }
    
        public JobNotFoundException(final String message) {
            super(message);
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exception/ScheduledJobException.java

         */
        public ScheduledJobException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * @param message Exception message.
         */
        public ScheduledJobException(final String message) {
            super(message);
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exception/WebApiException.java

            return statusCode;
        }
    
        public WebApiException(final int statusCode, final String message, final Throwable cause) {
            super(message, cause);
            this.statusCode = statusCode;
        }
    
        public WebApiException(final int statusCode, final String message) {
            super(message);
            this.statusCode = statusCode;
        }
    
        public WebApiException(final int statusCode, final Exception e) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/FessBoot.java

        public FessBoot(final int port, final String contextPath) {
            super(port, contextPath);
        }
    
        @Override
        protected String prepareWebappPath() {
            final String value = System.getProperty(FESS_WEBAPP_PATH);
            if (value != null) {
                return value;
            }
            return super.prepareWebappPath();
        }
    
        @Override
        protected String getMarkDir() {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfigImpl.java

                    try {
                        return cache.get(propertyKey,
                                () -> System.getProperty(Constants.FESS_CONFIG_PREFIX + propertyKey, super.get(propertyKey)));
                    } catch (final ExecutionException e) {
                        return super.get(propertyKey);
                    }
                }
            };
        }
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/exbhv/ScheduledJobBhv.java

                indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_config"), name);
            }
            return indexName;
        }
    
        @Override
        public OptionalEntity<ScheduledJob> selectByPK(final String id) {
            Exception lastException = null;
            for (int i = 0; i < 30; i++) {
                try {
                    return super.selectByPK(id);
                } catch (final Exception e) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.2K bytes
    - Viewed (0)
Back to top