Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 141 - 150 of 180 for isSame (0.03 seconds)

  1. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsRelatedQueryBhv.java

            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<RelatedQuery> selectPage(CBCall<RelatedQueryCB> cbLambda) {
            // #pending same?
            return (PagingResultBean<RelatedQuery>) facadeSelectList(createCB(cbLambda));
        }
    
        public void selectCursor(CBCall<RelatedQueryCB> cbLambda, EntityRowHandler<RelatedQuery> entityLambda) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 9.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsFavoriteLogBhv.java

            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<FavoriteLog> selectPage(CBCall<FavoriteLogCB> cbLambda) {
            // #pending same?
            return (PagingResultBean<FavoriteLog>) facadeSelectList(createCB(cbLambda));
        }
    
        public void selectCursor(CBCall<FavoriteLogCB> cbLambda, EntityRowHandler<FavoriteLog> entityLambda) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 9.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/opensearch/user/bsbhv/BsGroupBhv.java

            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<Group> selectPage(CBCall<GroupCB> cbLambda) {
            // #pending same?
            return (PagingResultBean<Group>) facadeSelectList(createCB(cbLambda));
        }
    
        public void selectCursor(CBCall<GroupCB> cbLambda, EntityRowHandler<Group> entityLambda) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java

            CommandExecutionException exception1 = new CommandExecutionException("Test");
            CommandExecutionException exception2 = new CommandExecutionException("Test");
    
            // Both instances should be of the same class
            assertEquals(exception1.getClass(), exception2.getClass());
    
            // Test serialization compatibility by checking class name
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistantTest.java

        @Test
        public void test_implementsInterface() {
            assertTrue(invokerAssistant instanceof InvokerAssistant);
        }
    
        // Test multiple calls to the same method return consistent results
        @Test
        public void test_methodConsistency() {
            // Test assistClientInvokeNames consistency
            String[] names1 = invokerAssistant.assistClientInvokeNames();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java

            // Execute
            final InvalidQueryException exception = new InvalidQueryException(messageCode, message);
    
            // Verify getMessageCode returns the same instance
            final VaMessenger<FessMessages> retrievedCode1 = exception.getMessageCode();
            final VaMessenger<FessMessages> retrievedCode2 = exception.getMessageCode();
    
            assertNotNull(retrievedCode1);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 15.9K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/query/QueryCommandTemplateMethodTest.java

            for (int i = 0; i < fieldCount; i++) {
                fields[i] = "field" + i;
            }
            queryFieldConfig.setSearchFields(fields);
    
            // Test field at the end (worst case for array lookup, but same for Set)
            String testField = "field999";
    
            // Warm up
            for (int i = 0; i < 100; i++) {
                queryCommand.isSearchField(testField);
            }
    
            // Measure Set-based lookup
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsScheduledJobBhv.java

            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<ScheduledJob> selectPage(CBCall<ScheduledJobCB> cbLambda) {
            // #pending same?
            return (PagingResultBean<ScheduledJob>) facadeSelectList(createCB(cbLambda));
        }
    
        public void selectCursor(CBCall<ScheduledJobCB> cbLambda, EntityRowHandler<ScheduledJob> entityLambda) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProviderTest.java

            OptionalThing<Locale> result2 = provider.findBusinessLocale(null, mockRequestManager);
            OptionalThing<Locale> result3 = provider.findBusinessLocale(null, mockRequestManager);
    
            // Verify all return same result
            assertTrue(result1.isPresent());
            assertTrue(result2.isPresent());
            assertTrue(result3.isPresent());
            assertEquals(Locale.GERMANY, result1.get());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

                    .forEach(s -> buf.append(s));
            log(buf);
        }
    
        /**
         * Increments the thread reference count for the specified crawler object.
         * Used when the same object is being processed on multiple threads.
         *
         * @param keyObj the crawler object running on an additional thread
         */
        public void runOnThread(final Object keyObj) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 17.4K bytes
    - Click Count (0)
Back to Top