Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 1,139 for new1 (0.02 seconds)

  1. src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java

                }
            }
    
            final int threadCount = 10;
            final Thread[] threads = new Thread[threadCount];
            final Exception[] exceptions = new Exception[threadCount];
            final int[] sizes = new int[threadCount];
            final boolean[][] containsResults = new boolean[threadCount][10];
    
            // Multiple threads read from deleteUrlList
            for (int i = 0; i < threadCount; i++) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 19.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java

            final List<Map<String, String>> capturedLogs = new ArrayList<>();
            final ActivityHelper spyActivityHelper = createSpyActivityHelper(capturedLogs);
    
            final TestActionRuntime testRuntime = new TestActionRuntime("/admin/user/");
            final FessAdminAction action =
                    createGodHandAction(spyActivityHelper, OptionalThing.of(new FessUserBean(new TestUser("admin", new String[0]))), true);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java

         * Returns the new reading.
         *
         * @return The new reading.
         */
        public String getNewReading() {
            return newReading;
        }
    
        /**
         * Sets the new reading.
         *
         * @param newReading The new reading.
         */
        public void setNewReading(final String newReading) {
            this.newReading = newReading;
        }
    
        /**
         * Returns the new part of speech.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.3K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

         */
        protected void reload(final ProtwordsUpdater updater, final InputStream in) {
            final List<ProtwordsItem> itemList = new ArrayList<>();
            try (BufferedReader reader = new BufferedReader(new InputStreamReader(in, Constants.UTF_8))) {
                long id = 0;
                String line = null;
                while ((line = reader.readLine()) != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 11.9K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.java

        public void test_isValidUploadPath_validSubdirectory() throws Exception {
            // Create test directory structure with subdirectory
            File baseDir = new File(tempDir.toFile(), "images");
            File subDir = new File(baseDir, "icons");
            subDir.mkdirs();
            File validFile = new File(subDir, "icon.png");
    
            Boolean result = invokeIsValidUploadPath(validFile, baseDir);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

            final AtomicBoolean heartbeatCalled = new AtomicBoolean(false);
            final AtomicBoolean fetchCalled = new AtomicBoolean(false);
            final AtomicBoolean cleanupCalled = new AtomicBoolean(false);
            final CoordinatorHelper helper = new CoordinatorHelper() {
                @Override
                public void sendHeartbeat() {
    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)
  7. src/test/java/org/codelibs/fess/exception/UserRoleLoginExceptionTest.java

            UserRoleLoginException exception = new UserRoleLoginException(RootAction.class);
    
            // Create multiple threads to test synchronized method
            Thread thread1 = new Thread(() -> {
                Throwable result = exception.fillInStackTrace();
                assertNull(result);
            });
    
            Thread thread2 = new Thread(() -> {
                Throwable result = exception.fillInStackTrace();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

            final Pattern parsePattern = Pattern.compile("(.*?)\\s*+=>\\s*+(.*?)\\s*+$");
            final List<StemmerOverrideItem> itemList = new ArrayList<>();
            try (BufferedReader reader = new BufferedReader(new InputStreamReader(in, Constants.UTF_8))) {
                long id = 0;
                String line = null;
                while ((line = reader.readLine()) != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            indexUpdater = new IndexUpdater();
    
            // Initialize mocks/test doubles
            systemHelper = new TestSystemHelper();
            indexingHelper = new TestIndexingHelper();
            intervalControlHelper = new TestIntervalControlHelper();
            searchLogHelper = new TestSearchLogHelper();
            languageHelper = new TestLanguageHelper();
            fessConfig = new TestFessConfig();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 33.6K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java

            }
        }
    
        // Test add multiple engines
        @Test
        public void test_add_multipleEngines() {
            TestScriptEngine engine1 = new TestScriptEngine("engine1");
            TestScriptEngine engine2 = new TestScriptEngine("engine2");
            CustomScriptEngine customEngine = new CustomScriptEngine();
    
            scriptEngineFactory.add("engine1", engine1);
            scriptEngineFactory.add("engine2", engine2);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.8K bytes
    - Click Count (0)
Back to Top