Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for nonexistent (0.18 sec)

  1. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

        }
    
        public void test_getParamValueArray_withNullParam() {
            MockHttpServletRequest request = new MockHttpServletRequest();
            String[] result = SearchRequestParams.getParamValueArray(request, "nonexistent");
            assertEquals(0, result.length);
        }
    
        public void test_getParamValueArray_withBlankValues() {
            MockHttpServletRequest request = new MockHttpServletRequest();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.23.md

    - Fixed a bug where using `kubectl patch` with `$deleteFromPrimitiveList` on a nonexistent or empty list would add the item to the list ([#105421](https://github.com/kubernetes/kubernetes/pull/105421), [@brianpursley](https://github.com/brianpursley))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.10.md

        * inside of which a write lock was intended to prevent races against
        * VM creation, but the usage of the sync.RWMutex type is incorrect,
        * plus is placed in a defer call so the locking is effectively
        * nonexistent.  This patch adds an anonymous function call inside
        * the loop to correctly handle acquiring the write lock with deferred
        * unlock to run at that function's completion, following the normal
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java

        }
    
        public void test_recordOnNonExistentKey() {
            String key = "non_existent";
            crawlerStatsHelper.record(key, "test_action");
    
            assertNull(localLogMsg.get());
        }
    
        public void test_runOnThreadOnNonExistentKey() {
            String key = "non_existent";
            crawlerStatsHelper.runOnThread(key);
    
            assertNull(localLogMsg.get());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 15K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.8.md

    * Set default snap channel on charms to 1.7 stable ([#48874](https://github.com/kubernetes/kubernetes/pull/48874), [@ktsakalozos](https://github.com/ktsakalozos))
    * prevent unsetting of nonexistent previous port in kubeapi-load-balancer charm ([#49033](https://github.com/kubernetes/kubernetes/pull/49033), [@wwwtyro](https://github.com/wwwtyro))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

            assertSame(dataStore, retrieved);
        }
    
        // Test getDataStore with non-existing name
        public void test_getDataStore_nonExistingName() {
            DataStore retrieved = dataStoreFactory.getDataStore("nonExisting");
            assertNull(retrieved);
        }
    
        // Test getDataStore with null name
        public void test_getDataStore_nullName() {
            DataStore retrieved = dataStoreFactory.getDataStore(null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

        public void test_generate_parent_directory_not_exists() throws Exception {
            final File tempDir = new File(System.getProperty("java.io.tmpdir"));
            final File nonExistentParent = new File(tempDir, "non_existent_" + System.currentTimeMillis());
            final File outputFile = new File(nonExistentParent, "output.txt");
    
            try {
                assertFalse(nonExistentParent.exists());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/job/ExecJobTest.java

            execJob.testDeleteTempDir(testDir);
            assertFalse(testDir.exists());
    
            // Test with non-existent directory
            File nonExistentDir = new File(tempDir, "non_existent");
            execJob.testDeleteTempDir(nonExistentDir);
        }
    
        // Test appendJarFile method
        public void test_appendJarFile() throws IOException {
            StringBuilder buf = new StringBuilder();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.11.md

        * inside of which a write lock was intended to prevent races against
        * VM creation, but the usage of the sync.RWMutex type is incorrect,
        * plus is placed in a defer call so the locking is effectively
        * nonexistent.  This patch adds an anonymous function call inside
        * the loop to correctly handle acquiring the write lock with deferred
        * unlock to run at that function's completion, following the normal
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
Back to top