Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 755 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. src/main/java/jcifs/smb1/util/transport/TransportException.java

        /**
         * Constructs a new TransportException with the specified root cause.
         *
         * @param rootCause the root cause of this exception
         */
        public TransportException(final Throwable rootCause) {
            this.rootCause = rootCause;
        }
    
        /**
         * Constructs a new TransportException with the specified detail message and root cause.
         *
         * @param msg the detail message
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  4. samples/guide/src/test/kotlin/okhttp3/AllMainsTest.kt

          }
        } catch (ite: InvocationTargetException) {
          if (!expectedFailure(className, ite.cause!!)) {
            throw ite.cause!!
          }
        }
      }
    
      @Suppress("UNUSED_PARAMETER")
      private fun expectedFailure(
        className: String,
        cause: Throwable,
      ): Boolean =
        when (className) {
          "okhttp3.recipes.CheckHandshake" -> true // by design
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  5. futures/failureaccess/src/com/google/common/util/concurrent/internal/InternalFutureFailureAccess.java

     * the License.
     */
    
    package com.google.common.util.concurrent.internal;
    
    
    /**
     * A future that, if it fails, may <i>optionally</i> provide access to the cause of the failure.
     *
     * <p>This class is used only for micro-optimization. Standard {@code Future} utilities benefit from
     * this optimization, so there is no need to specialize methods to return or accept this type
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/DcerpcException.java

        public DcerpcException(final String msg) {
            super(msg);
        }
    
        /**
         * Constructs a DcerpcException with the specified message and root cause
         *
         * @param msg
         *            the error message
         * @param rootCause
         *            the underlying cause of this exception
         */
        public DcerpcException(final String msg, final Throwable rootCause) {
            super(msg, rootCause);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.9K 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. okhttp/src/jvmTest/kotlin/okhttp3/KotlinDeprecationErrorTest.kt

        val onlyIfCached: Boolean = cacheControl.onlyIfCached()
        val noTransform: Boolean = cacheControl.noTransform()
        val immutable: Boolean = cacheControl.immutable()
        val parse: CacheControl = CacheControl.parse(Headers.of())
      }
    
      @Test @Disabled
      fun challenge() {
        val challenge = Challenge("", mapOf("" to ""))
        val scheme: String = challenge.scheme()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbException.java

        }
    
        /**
         * Creates an SMB exception with cause
         *
         * @param message the error message
         * @param errorCode the SMB error code
         * @param severity the error severity
         * @param category the error category
         * @param cause the cause exception
         */
        public SmbException(String message, int errorCode, Severity severity, Category category, Throwable cause) {
            super(message, cause);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  10. 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)
Back to top