Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 94 for sama (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/sso/SsoResponseTypeTest.java

            // Test hashCode consistency
            int metadataHashCode = SsoResponseType.METADATA.hashCode();
            int logoutHashCode = SsoResponseType.LOGOUT.hashCode();
    
            // Hash code should be consistent for the same object
            assertEquals(metadataHashCode, SsoResponseType.METADATA.hashCode());
            assertEquals(logoutHashCode, SsoResponseType.LOGOUT.hashCode());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java

            assertTrue(exception.aborted());
        }
    
        @Test
        public void test_aborted_multipleCallsReturnSameValue() {
            // Test that multiple calls to aborted() return the same value
            String url = "http://example.com/test";
            String message = "Test message";
            Exception cause = new RuntimeException("Test cause");
            boolean abort = true;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorEdgeCaseTest.java

                assertNotNull(results);
            }
        }
    
        /**
         * Test registering same searcher multiple times.
         */
        @Test
        public void test_registerSameSearcherMultipleTimes() throws Exception {
            try (RankFusionProcessor processor = new RankFusionProcessor()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

        public OptionalEntity<WebConfig> getWebConfig(final String id) {
            return webConfigBhv.selectByPK(id);
        }
    
        /**
         * Gets a web configuration by its name.
         * If multiple configurations have the same name, returns the first one ordered by sort order.
         *
         * @param name The name of the web configuration
         * @return Optional containing the web configuration if found
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.6K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java

            ScriptEngine retrieved = scriptEngineFactory.getScriptEngine("customName");
            assertNotNull(retrieved);
            assertEquals(customEngine, retrieved);
        }
    
        // Test multiple registrations of the same engine
        @Test
        public void test_multipleRegistrations() {
            testScriptEngine.register();
            testScriptEngine.register(); // Register again
    
            // Should still work without errors
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 6.9K bytes
    - Click Count (0)
  6. architecture/standards/0009-use-american-english.md

    * **Harder code search and refactoring**: Searching for identifiers, method names, or documentation becomes more difficult when multiple spellings exist for the same concept
    * **Inconsistent API surface**: Public APIs with mixed spelling conventions appear less professional and polished
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

            ProtwordsItem item = new ProtwordsItem(1, "oldValue");
            item.setNewInput("newValue");
    
            ProtwordsFile.ProtwordsUpdater updater = protwordsFile.new ProtwordsUpdater(item);
    
            // Write the same item (should update)
            ProtwordsItem result = updater.write(item);
    
            assertNotNull(result);
            assertEquals("newValue", result.getInput());
            assertEquals(1, result.getId());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 21.2K bytes
    - Click Count (0)
  8. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

        else -> actualBranch
    }
    
    /**
     * The build environment.
     *
     * WARNING: Every val in here must not change for they same daemon. If it does, changes will go undetected,
     *          since this whole object is kept in the classloader between builds.
     *          Anything that changes must be in a val with a get() method that recomputes the value each time.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 25 08:51:12 GMT 2026
    - 4.9K bytes
    - Click Count (1)
  9. src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java

                // Wait for first process to be running
                Thread.sleep(100);
                assertTrue(processHelper.isProcessRunning(sessionId));
    
                // Start second process with same session ID (should replace first)
                JobProcess jobProcess2 = processHelper.startProcess(sessionId, cmdList2, pbCall);
                assertNotNull(jobProcess2);
    
                // Wait for second process to be running
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 16K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java

            assertNotNull(mapResult);
            assertTrue(mapResult instanceof java.util.Map);
        }
    
        // ===== Cache Tests =====
    
        /**
         * Test that the same script evaluated multiple times produces correct results (cache hit)
         */
        @Test
        public void test_evaluate_cacheHit() {
            final Map<String, Object> params = new HashMap<>();
            params.put("x", 5);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:03:38 GMT 2026
    - 29.1K bytes
    - Click Count (0)
Back to Top