- Sort Score
- Result 10 results
- Languages All
Results 561 - 570 of 1,205 for Exceptions (0.08 sec)
-
ClIndexOutOfBoundsException.java
"AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.core.exception; L17: L18:/** L19: * {@link IndexOutOfBoundsException}をラップする例外です。 L20: * L21: * @author wyukawa L22: */ L23:public class ClIndexOutOfBoundsException extends IndexOutOfBoundsException { L24: L25: private static final long serialVersionUID = -824874776607593608L;...github.com/codelibs/corelib/src/main/java/org/c...Thu Mar 07 01:59:08 UTC 2024 1.3K bytes -
PreconditionsTest.java
true; L490: return "A message"; L491: } L492: } L493: L494: private static final String FORMAT = "I ate %s pies."; L495: L496: private static void verifySimpleMessage(Exception e) { L497: assertThat(e).hasMessageThat().isEqualTo("A message"); L498: } L499: L500: private static void verifyComplexMessage(Exception e) { L501: assertThat(e).hasMessageThat().isEqualTo("I ate 5 pies."); L502: } L503:}...github.com/google/guava/guava-tests/test/com/go...Tue Sep 17 18:14:12 UTC 2024 19K bytes -
SystemHelper.java
og4j.Logger; L61:import org.apache.logging.log4j.core.config.Configurator; L62:import org.codelibs.core.exception.IORuntimeException; L63:import org.codelibs.core.lang.StringUtil; L64:import org.codelibs.core.lang.ThreadUtil; L65:import org.codelibs.core.misc.Pair; L66:import org.codelibs.fess.Constants; L67:import org.codelibs.fess.crawler.util.CharUtil; L68:import org.codelibs.fess.exception.FessSystemException; L69:import org.codelibs.fess.mylasta.action.FessMessages; L70:import org.codelibs....github.com/codelibs/fess/src/main/java/org/code...Thu Oct 17 12:10:08 UTC 2024 27.2K bytes -
CrawlingInfoHelperTest.java
gUtils; L27:import org.codelibs.fess.unit.UnitFessTestCase; L28: L29:public class CrawlingInfoHelperTest extends UnitFessTestCase { L30: private CrawlingInfoHelper crawlingInfoHelper; L31: L32: @Override L33: public void setUp() throws Exception { L34: super.setUp(); L35: crawlingInfoHelper = new CrawlingInfoHelper(); L36: } L37: L38: public void test_generateId() { L39: final Map<String, Object> dataMap = new HashMap<String, Object>(); L40: dataMap.put("url",...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 8.5K bytes -
BiMap.java
Operations L50: L51: /** L52: * {@inheritDoc} L53: * L54: * @throws IllegalArgumentException if the given value is already bound to a different key in this L55: * bimap. The bimap will remain unmodified in this event. To avoid this exception, call {@link L56: * #forcePut} instead. L57: */ L58: @CanIgnoreReturnValue L59: @Override L60: @CheckForNull L61: V put(@ParametricNullness K key, @ParametricNullness V value); L62: L63: /** L64: * An alternate form of {@code put}...github.com/google/guava/guava/src/com/google/co...Sat Jun 17 14:40:53 UTC 2023 4.3K bytes -
ApiAdminDataconfigAction.java
messages -> {}); L87: body.crudMode = CrudMode.CREATE; L88: final DataConfig dataConfig = getDataConfig(body).map(entity -> { L89: try { L90: dataConfigService.store(entity); L91: } catch (final Exception e) { L92: logger.warn("Failed to process a request.", e); L93: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L94: } L95: return...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 7K bytes -
InvalidQueryException.java
"AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.exception; L17: L18:import org.codelibs.fess.mylasta.action.FessMessages; L19:import org.lastaflute.web.validation.VaMessenger; L20: L21:public class InvalidQueryException extends FessSystemException { L22: L23: private static final long serialVersionUID...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1.4K bytes -
SsoMessageException.java
"AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.exception; L17: L18:import org.codelibs.fess.mylasta.action.FessMessages; L19:import org.lastaflute.web.validation.VaMessenger; L20: L21:public class SsoMessageException extends FessSystemException { L22: L23: private static final long serialVersionUID...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1.4K bytes -
AdminSchedulerAction.java
getScheduledJob(form).ifPresent(entity -> { L228: try { L229: scheduledJobService.store(entity); L230: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L231: } catch (final Exception e) { L232: logger.warn("Failed to process a request.", e); L233: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L234: this::asEditHtml);...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 18.1K bytes -
TaskRunnerRealBackendTest.kt
L38:@Tag("Slowish") L39:class TaskRunnerRealBackendTest { L40: private val log = LinkedBlockingDeque<String>() L41: L42: private val loggingUncaughtExceptionHandler = L43: UncaughtExceptionHandler { _, throwable -> L44: log.put("uncaught exception: $throwable") L45: } L46: L47: private val threadFactory = L48: ThreadFactory { runnable -> L49: Thread(runnable, "TaskRunnerRealBackendTest").apply { L50: isDaemon = true L51: uncaughtExceptionHandler = loggingUncaughtExceptionHandler...github.com/square/okhttp/okhttp/src/test/java/o...Mon Jan 08 01:13:22 UTC 2024 3.5K bytes