Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for fnOver (0.04 seconds)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java

                        cipherAlgorithm);
                inver = InvertibleCryptographer.createDesCipher(fessConfig.getAppCipherKey());
            } else if ("rsa".equalsIgnoreCase(cipherAlgorithm)) {
                inver = InvertibleCryptographer.createRsaCipher(fessConfig.getAppCipherKey());
            } else {
                inver = InvertibleCryptographer.createAesCipher(fessConfig.getAppCipherKey());
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:38:30 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/app/job/ScriptExecutorJobTest.java

            final TestableScriptExecutorJob job = new TestableScriptExecutorJob();
            job.process(runtime);
    
            // When logging is disabled, store() is never called
            assertNull(storedJobLog.get());
        }
    
        // ===================================================================================
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

                @Override
                public void destroy() {
                    // Override to avoid null pointer issues with thread
                    generating = false;
                    // Don't need to interrupt thread since we never start it in tests
                }
            };
            manager.init();
            assertTrue(manager.baseDir.exists());
            manager.destroy();
        }
    
        // Test initialization failure
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 20.4K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            testClient.documentCount = 10;
            testClient.aliasCount = 2;
    
            testClient.reindexConfigIndices(false, allTargetPrefixes());
    
            // "fess" (DOC_INDEX) should never appear in created or reindexed indices
            for (final String index : testClient.createdIndices) {
                assertFalse(index.equals("fess"), "DOC_INDEX 'fess' should be skipped");
            }
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

                return SpnegoAuthenticator.class.getName();
            }
    
            /**
             * Gets the servlet context. This operation is not supported.
             *
             * @return Never returns, always throws UnsupportedOperationException
             * @throws UnsupportedOperationException Always thrown as this operation is not supported
             */
            @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:18:23 GMT 2026
    - 18.2K bytes
    - Click Count (3)
  6. src/main/java/org/codelibs/fess/job/CrawlJob.java

         */
        protected String[] dataConfigIds;
    
        /**
         * Document expiration setting in days.
         * -2: use system default, -1: never expire, 0 or positive: expire after specified days.
         */
        protected int documentExpires = -2;
    
        /**
         * Hot thread monitoring interval in seconds.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 19.6K bytes
    - Click Count (0)
  7. ADDING_NEW_LANGUAGE.md

    ### Cache Behavior
    
    - Language items are cached for 1 hour by `SystemHelper`
    - Restart the application after adding new languages
    
    ### Auto-Generated Files
    
    Never edit these files manually (marked with `@author FreeGen`):
    - `FessLabels.java`
    - `FessMessages.java`
    
    Always regenerate them using `mvn dbflute:freegen`
    
    ## Complete Example: Adding Swedish (sv)
    
    ```bash
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 11:36:30 GMT 2025
    - 10.4K bytes
    - Click Count (1)
Back to Top