- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 59 for NONEXISTENT (0.07 sec)
-
src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java
} public void test_replaceUrl_withNonExistentSessionId() { final String url = "file:///home/user/"; assertEquals(url, pathMappingHelper.replaceUrl("nonexistent", url)); } public void test_replaceUrl_withEmptyList() { final String sessionId = "test"; final List<PathMapping> pathMappingList = new ArrayList<PathMapping>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 14.9K bytes - Viewed (0) -
src/test/java/jcifs/context/SingletonContextTest.java
} @Test void testInitIOExceptionHandling(@TempDir Path tempDir) { // Test handling IOException when loading jcifs.properties Path nonExistentPath = tempDir.resolve("nonexistent.properties"); System.setProperty("jcifs.properties", nonExistentPath.toString()); // Expect no exception to be thrown, but an error logged (which we can't directly assert here)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcBindingTest.java
assertEquals("80", dcerpcBinding.getOption("connect"), "Should return the set option value."); } @Test void testGetOptionNonExistent() { assertNull(dcerpcBinding.getOption("nonExistent"), "Should return null for a non-existent option."); } @Test void testToStringWithoutOptionsAndEndpoint() { String expected = PROTO + ":" + SERVER + "[null]";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.5K bytes - Viewed (0) -
cmd/bucket-lifecycle_test.go
{ // non-existent storage-class xml: []byte(`<LifecycleConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Rule><ID>rule</ID><Prefix /><Status>Enabled</Status><Transition><Days>1</Days><StorageClass>"NONEXISTENT"</StorageClass></Transition></Rule></LifecycleConfiguration>`), expectedErr: errInvalidStorageClass, }, { // no transition rule
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 31 09:57:57 UTC 2022 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java
assertNotNull(result); } public void test_getMatchedLabelValueSet_emptyPatternList() { // Test with empty pattern list Set<String> result = labelTypeHelper.getMatchedLabelValueSet("/nonexistent/path"); assertNotNull(result); } public void test_getMatchedLabelValueSet_nullPath() { try { labelTypeHelper.getMatchedLabelValueSet(null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.4K bytes - Viewed (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
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
assertNotNull(authenticator); assertEquals(testAuthenticator, authenticator); } public void test_getAuthenticator_whenComponentDoesNotExist() { currentSsoType = "nonexistent"; ssoManager = new SsoManager() { @Override protected String getSsoType() { return currentSsoType; } };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.9K bytes - Viewed (0) -
cmd/xl-storage_test.go
// TestXLStorages xlStorage.getDiskInfo() func TestXLStorageGetDiskInfo(t *testing.T) { path := t.TempDir() testCases := []struct { diskPath string expectedErr error }{ {path, nil}, {"/nonexistent-dir", errDiskNotFound}, } // Check test cases. for _, testCase := range testCases { if _, _, err := getDiskInfo(testCase.diskPath); err != testCase.expectedErr {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 66K bytes - Viewed (0) -
android/guava/src/com/google/common/io/Files.java
} } /** * Creates any necessary but nonexistent parent directories of the specified file. Note that if * this operation fails it may have succeeded in creating some (but not all) of the necessary * parent directories. * * @throws IOException if an I/O error occurs, or if any necessary but nonexistent parent * directories of the specified file could not be created. * @since 4.0
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 32.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java
Files.deleteIfExists(tempFile); } } 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) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 15.5K bytes - Viewed (0)