- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 85 for non_existent (0.07 seconds)
-
src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java
} @Test public void test_getMatchedLabelValueSet_emptyPatternList() { // Test with empty pattern list Set<String> result = labelTypeHelper.getMatchedLabelValueSet("/nonexistent/path"); assertNotNull(result); } @Test public void test_getMatchedLabelValueSet_nullPath() { try { labelTypeHelper.getMatchedLabelValueSet(null);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 12.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java
} @Test public void test_getMapValue_missing() { final Map<String, Object> map = Map.of("key", "value"); assertNull(coordinatorHelper.getMapValue(map, "nonexistent")); } @Test public void test_getListValue_exists() { final List<Map<String, Object>> list = List.of(Map.of("id", "1"), Map.of("id", "2"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 58.6K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryCacheEntryTest.java
entry.removeChild(childName); assertFalse(entry.hasChild(childName)); assertTrue(entry.hasChanges()); // Remove non-existent child - should not change state entry.removeChild("nonexistent.txt"); assertTrue(entry.hasChanges()); // Still has changes from previous removal } @Test public void testGetChildren() { // Add multiple children
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 01:47:47 GMT 2025 - 8.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJobTest.java
ComponentUtil.register(mockJobManager, JobManager.class.getCanonicalName()); final ScheduledJob scheduledJob = new ScheduledJob(); scheduledJob.setId("nonexistent-job"); try { scheduledJob.start(Map.of(Constants.JOB_LOG_ID, "some-id")); fail("Expected JobNotFoundException"); } catch (final JobNotFoundException e) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 15.8K bytes - Click Count (0) -
internal/config/certs_test.go
t.Fatalf("Unable to create temporary file. %v", err) } defer os.Remove(tempFile5) testCases := []struct { certFile string expectedResultLen int expectedErr bool }{ {"nonexistent-file", 0, true}, {tempFile1, 0, true}, {tempFile2, 0, true}, {tempFile3, 0, true}, {tempFile4, 1, false}, {tempFile5, 2, false}, } for _, testCase := range testCases {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Feb 18 16:25:55 GMT 2025 - 21.6K bytes - Click Count (0) -
build-tools-internal/src/main/resources/forbidden/es-server-signatures.txt
org.joda.time.DateTime#<init>(int, int, int, int, int, int, int) org.joda.time.DateTime#now() org.joda.time.DateTimeZone#getDefault() @defaultMessage Local times may be ambiguous or nonexistent in a specific time zones. Use ZoneRules#getValidOffsets() instead. java.time.LocalDateTime#atZone(java.time.ZoneId) java.time.ZonedDateTime#of(int, int, int, int, int, int, int, java.time.ZoneId)
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 08 16:53:28 GMT 2021 - 7.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
assertNotNull(authenticator); assertEquals(testAuthenticator, authenticator); } @Test public void test_getAuthenticator_whenComponentDoesNotExist() { currentSsoType = "nonexistent"; ssoManager = new SsoManager() { @Override protected String getSsoType() { return currentSsoType; } };
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.5K bytes - Click Count (0) -
android/guava/src/com/google/common/io/MoreFiles.java
} } /** * Creates any necessary but nonexistent parent directories of the specified path. Note that if * this operation fails, it may have succeeded in creating some (but not all) of the necessary * parent directories. The parent directory is created with the given {@code attrs}. * * @throws IOException if an I/O error occurs, or if any necessary but nonexistent parent
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Apr 14 16:07:06 GMT 2025 - 34.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java
} } @Test public void test_writeThreadDump_withInvalidPath() { // Test with invalid file path (directory that doesn't exist) String invalidPath = "/nonexistent/directory/thread-dump.txt"; try { ThreadDumpUtil.writeThreadDump(invalidPath); // Should not throw exception but log warning } catch (Exception e) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 15.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParserEdgeCaseTest.java
@Test public void test_getFieldValues_nullDocument() throws Exception { Map<String, Object> document = new HashMap<>(); String[] values = parser.getFieldValues(document, "nonexistent"); assertEquals("Non-existent field should return empty array", 0, values.length); } @Test public void test_getFieldValues_emptyList() throws Exception {Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 14 02:35:38 GMT 2026 - 20.3K bytes - Click Count (0)