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/mylasta/direction/sponsor/FessJsonResourceProviderTest.java

            assertEquals(JsonFieldNaming.CAMEL_TO_LOWER_SNAKE, fieldNamingOpt.get());
        }
    
        @Test
        public void test_provideMappingOption_notNull() {
            // Test that mapping option is never null
            JsonMappingOption option1 = provider.provideMappingOption();
            JsonMappingOption option2 = provider.provideMappingOption();
    
            assertNotNull(option1);
            assertNotNull(option2);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

        }
    
        /**
         * Searches a view asynchronously (not implemented).
         *
         * @param request the search view request
         * @return never returns as this operation is not implemented
         * @throws UnsupportedOperationException always thrown as this operation is not implemented
         */
        @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
Back to Top