- Sort Score
- Result 10 results
- Languages All
Results 1971 - 1980 of 2,324 for exception (0.04 sec)
- 
				
				guava-tests/test/com/google/common/primitives/DoublesTest.javapublic void testAsListEmpty() { assertThat(Doubles.asList(EMPTY)).isSameInstanceAs(Collections.emptyList()); } /** * A reference implementation for {@code tryParse} that just catches the exception from {@link * Double#valueOf}. */ private static @Nullable Double referenceTryParse(String input) { if (input.trim().length() < input.length()) { return null; } try { Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 30.9K bytes - Viewed (0)
- 
				
				guava-tests/test/com/google/common/primitives/ShortsTest.javatry { Shorts.checkedCast(value); fail("Cast to short should have failed: " + value); } catch (IllegalArgumentException ex) { assertWithMessage(value + " not found in exception text: " + ex.getMessage()) .that(ex.getMessage().contains(String.valueOf(value))) .isTrue(); } } // We need to test that our method behaves like the JDK method.Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.6K bytes - Viewed (0)
- 
				
				src/main/java/org/codelibs/fess/helper/DataIndexHelper.javaRegistered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0)
- 
				
				src/main/resources/fess_message_zh_TW.propertiesconstraints.UriType.message = {item} 包含無法識別的 URI。 constraints.CronExpression.message = {item} 不是有效的 CRON 表達式。 # ---------------------------------------------------------- # Application Exception # --------------------- # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - # five framework-embedded messages (don't change key names) # - - - - - - - - - -/ errors.login.failure = 登入失敗。Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 11.1K bytes - Viewed (0)
- 
				
				guava-tests/test/com/google/common/collect/Collections2Test.javaassertTrue(permutations.hasNext()); permutations.next(); } assertNoMorePermutations(permutations); } public void testToStringImplWithNullEntries() throws Exception { List<@Nullable String> list = new ArrayList<>(); list.add("foo"); list.add(null); assertEquals(list.toString(), Collections2.toStringImpl(list)); } Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.1K bytes - Viewed (0)
- 
				
				src/main/java/jcifs/http/NtlmHttpFilter.java* @return True if the negotiation is complete, otherwise false * @throws IOException if an I/O error occurs * @throws ServletException if a servlet error occurs */ protected NtlmPasswordAuthentication negotiate(final HttpServletRequest req, final HttpServletResponse resp, final boolean skipAuthentication) throws IOException, ServletException { Address dc; String msg;Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0)
- 
				
				compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java+ " due to an error: " + e.getMessage()); getLogger().debug("Exception", e); } finally { updateCheckManager.touch(metadata, repository, file); } } Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 18.9K bytes - Viewed (0)
- 
				
				src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.javadecoded.decode(buffer, 200, encoded); assertArrayEquals(ciphers, decoded.getCiphers()); } catch (SMBProtocolDecodingException e) { fail("Should not throw exception: " + e.getMessage()); } } @Test @DisplayName("Should verify cipher constants") void testCipherConstants() { Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0)
- 
				
				fess-crawler/src/main/java/org/codelibs/fess/crawler/container/StandardCrawlerContainer.javaavailable = false; for (final ComponentHolder<?> componentHolder : singletonMap.values()) { try { componentHolder.destroy(); } catch (final Exception e) { logger.warn("Failed to destroy " + componentHolder.get(), e); } } } /** * Registers a prototype component with the specified name, class, and initializer.Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.3K bytes - Viewed (0)
- 
				
				android/guava-tests/test/com/google/common/collect/ImmutableMapTest.javaIllegalArgumentException expected = assertThrows(IllegalArgumentException.class, () -> builder.buildOrThrow()); // We don't really care which values the exception message contains, but they should be // different from each other. If buildKeepingLast() collapsed duplicates, that might end up not // being true.Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 36.7K bytes - Viewed (0)