Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 488 for serialVersionUID (0.07 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsPagingResultBean.java

    /**
     * @param <ENTITY> The type of entity.
     * @author ESFlute (using FreeGen)
     */
    public class EsPagingResultBean<ENTITY> extends PagingResultBean<ENTITY> {
    
        private static final long serialVersionUID = 1L;
    
        protected long took;
        private int totalShards;
        private int successfulShards;
        private int failedShards;
        private TotalHits totalHits;
        private Aggregations aggregations;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ExplicitOrdering.java

        return rankMap.hashCode();
      }
    
      @Override
      public String toString() {
        return "Ordering.explicit(" + rankMap.keySet() + ")";
      }
    
      @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jun 04 13:03:16 UTC 2025
    - 2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsThumbnailQueue.java

        //                                                                          Definition
        //                                                                          ==========
        private static final long serialVersionUID = 1L;
        protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class;
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/spnego/SpnegoException.java

     * negotiation, or authentication flow.
     *
     * @author mbechler
     */
    public class SpnegoException extends CIFSException {
    
        /**
         *
         */
        private static final long serialVersionUID = -4591854684249021395L;
    
        /**
         * Constructs a new SpnegoException with no detail message
         */
        public SpnegoException() {
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/util/transport/RequestTimeoutException.java

     *
     * @author mbechler
     */
    public class RequestTimeoutException extends TransportException {
    
        /**
         *
         */
        private static final long serialVersionUID = -8825922797594232534L;
    
        /**
         * Constructs a new RequestTimeoutException with no detail message.
         */
        public RequestTimeoutException() {
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbOperationException.java

     * - Rich contextual information
     * - Error categorization
     * - Performance metrics
     */
    public class SmbOperationException extends CIFSException implements Serializable {
    
        private static final long serialVersionUID = 1L;
        private static final Logger log = LoggerFactory.getLogger(SmbOperationException.class);
    
        /**
         * Error categories for SMB operations
         */
        public enum ErrorCategory {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exception/CommandExecutionException.java

     * This exception indicates that an external command or process execution encountered an error.
     */
    public class CommandExecutionException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructor with error message.
         * @param message The error message describing the command execution failure.
         */
        public CommandExecutionException(final String message) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/ServletRuntimeException.java

     */
    public class ServletRuntimeException extends RuntimeException {
    
        /** Serial version UID for serialization compatibility. */
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new ServletRuntimeException wrapping the given ServletException.
         *
         * @param e The ServletException to wrap
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exception/ThemeException.java

     * This exception is used for errors during theme installation, uninstallation, or configuration.
     */
    public class ThemeException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new ThemeException with the specified message and cause.
         *
         * @param message the exception message
         * @param cause the underlying cause of this exception
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exception/ThumbnailGenerationException.java

     * This exception is used for errors during thumbnail creation and processing.
     */
    public class ThumbnailGenerationException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new ThumbnailGenerationException with the specified message and cause.
         *
         * @param message the exception message
         * @param cause the underlying cause of this exception
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
Back to top