Search Options

Results per page
Sort
Preferred Languages
Advance

Results 721 - 730 of 1,205 for Exceptions (0.14 sec)

  1. src/main/java/org/codelibs/core/exception/BadPaddingRuntimeException.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.exception;
    
    import javax.crypto.BadPaddingException;
    
    /**
     * @author shinsuke
     *
     */
    public class BadPaddingRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1L;
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1008 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/IllegalBlockSizeRuntimeException.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.exception;
    
    import javax.crypto.IllegalBlockSizeException;
    
    /**
     * @author shinsuke
     *
     */
    public class IllegalBlockSizeRuntimeException extends ClRuntimeException {
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/util/concurrent/ExecutionListBenchmark.java

          new Runnable() {
            @Override
            public void run() {
              listenerLatch.countDown();
            }
          };
    
      @BeforeExperiment
      void setUp() throws Exception {
        executorService =
            new ThreadPoolExecutor(
                NUM_THREADS,
                NUM_THREADS,
                Long.MAX_VALUE,
                SECONDS,
                new ArrayBlockingQueue<Runnable>(1000));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/user/exbhv/RoleBhv.java

    import org.codelibs.core.misc.Pair;
    import org.codelibs.fess.es.user.bsbhv.BsRoleBhv;
    import org.codelibs.fess.es.user.exentity.Role;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.exception.IllegalBehaviorStateException;
    import org.dbflute.util.DfTypeUtil;
    
    /**
     * @author FreeGen
     */
    public class RoleBhv extends BsRoleBhv {
        private String indexName = null;
    
        @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/CollectPreconditions.java

        if (value <= 0) {
          throw new IllegalArgumentException(name + " must be positive but was: " + value);
        }
      }
    
      /**
       * Precondition tester for {@code Iterator.remove()} that throws an exception with a consistent
       * error message.
       */
      static void checkRemove(boolean canRemove) {
        checkState(canRemove, "no calls to next() since the last call to remove()");
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jun 30 10:33:07 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exception/DataStoreException.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class DataStoreException extends FessSystemException {
        private static final long serialVersionUID = 1L;
    
        public DataStoreException(final String message, final Throwable cause) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exception/JobProcessingException.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class JobProcessingException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public JobProcessingException(final Throwable e) {
            super(e);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/DictionaryException.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.dict;
    
    import org.codelibs.fess.exception.FessSystemException;
    
    public class DictionaryException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public DictionaryException(final String message, final Throwable cause) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

    import org.codelibs.fess.app.web.base.FessAdminAction;
    import org.codelibs.fess.app.web.login.LoginAction;
    import org.codelibs.fess.entity.FessUser;
    import org.codelibs.fess.es.user.exbhv.UserBhv;
    import org.codelibs.fess.exception.UserRoleLoginException;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.sso.SsoAuthenticator;
    import org.codelibs.fess.util.ComponentUtil;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. samples/guide/src/main/java/okhttp3/recipes/PrintEvents.java

    public final class PrintEvents {
      private final OkHttpClient client = new OkHttpClient.Builder()
          .eventListenerFactory(PrintingEventListener.FACTORY)
          .build();
    
      public void run() throws Exception {
        Request washingtonPostRequest = new Request.Builder()
            .url("https://www.washingtonpost.com/")
            .build();
        client.newCall(washingtonPostRequest).enqueue(new Callback() {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 16 23:20:49 UTC 2020
    - 6.1K bytes
    - Viewed (0)
Back to top