Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 491 for pause (0.02 sec)

  1. src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java

            // Test constructor with message and cause
            String message = "Failed to generate thumbnail for document";
            Exception cause = new RuntimeException("Image processing error");
            ThumbnailGenerationException exception = new ThumbnailGenerationException(message, cause);
    
            assertEquals(message, exception.getMessage());
            assertEquals(cause, exception.getCause());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/InstantiationRuntimeException.java

         *
         * @param targetClass
         *            Target class
         * @param cause
         *            The cause of the exception
         */
        public InstantiationRuntimeException(final Class<?> targetClass, final InstantiationException cause) {
            super("ECL0041", asArray(targetClass.getName(), cause), cause);
            this.targetClass = targetClass;
        }
    
        @Override
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/ChecksumHashFunction.java

          } catch (NoSuchMethodException e) {
            // Only introduced in Java 9.
            return null;
          }
        }
    
        private static LinkageError newLinkageError(Throwable cause) {
          return new LinkageError(cause.toString(), cause);
        }
      }
    
      private static final long serialVersionUID = 0L;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.2.md

    ### Known Issues
    
      * Paused deployments can't be resized and don't clean up old ReplicaSets.
      * Minimum memory limit is 4MB. This is a docker limitation
      * Minimum CPU limits is 10m. This is a Linux Kernel limitation
      * “kubectl rollout undo” (i.e. rollback) will hang on paused deployments, because
    paused deployments can’t be rolled back (this is expected), and the command
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/NoSuchPaddingRuntimeException.java

        /**
         * Creates a {@link NoSuchPaddingRuntimeException}.
         *
         * @param cause the underlying exception
         */
        public NoSuchPaddingRuntimeException(final NoSuchPaddingException cause) {
            super("ECL0069", asArray(cause), cause);
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            String invalidXml = "<?xml version=\"1.0\"?><invalid><test/></invalid>";
    
            try {
                parser.parse(new InputSource(new StringReader(invalidXml)));
                fail("Should throw GsaConfigException");
            } catch (GsaConfigException e) {
                assertEquals("Failed to parse XML file.", e.getMessage());
            }
        }
    
        public void test_parseWithMalformedXml() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/exception/ClIllegalStateException.java

         *
         * @param message
         *            Message
         * @param cause
         *            The original exception
         */
        public ClIllegalStateException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Creates a {@link ClIllegalStateException}.
         *
         * @param cause
         *            The original exception
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/SsoProcessException.java

         *
         * @param message The detailed error message explaining the cause of the exception
         */
        public SsoProcessException(final String message) {
            super(message);
        }
    
        /**
         * Constructs a new SSO process exception with the specified detailed message and cause.
         *
         * @param message The detailed error message explaining the cause of the exception
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/NoSuchMethodRuntimeException.java

         * @param argTypes the argument types
         * @param cause the underlying exception
         */
        public NoSuchMethodRuntimeException(final Class<?> targetClass, final String methodName, final Class<?>[] argTypes,
                final Throwable cause) {
            super("ECL0057", asArray(targetClass.getName(), MethodUtil.getSignature(methodName, argTypes)), cause);
            this.targetClass = targetClass;
            this.methodName = methodName;
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/exception/WebApiExceptionTest.java

            // Test constructor with status code, message, and cause
            int statusCode = 500;
            String message = "Internal server error";
            Exception cause = new RuntimeException("Database connection failed");
    
            WebApiException exception = new WebApiException(statusCode, message, cause);
    
            assertEquals(statusCode, exception.getStatusCode());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top