Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for Logic (0.01 sec)

  1. src/main/java/org/codelibs/fess/util/SearchEngineUtil.java

            }
        }
    
        /**
         * Functional interface for building XContent with custom logic.
         * Allows clients to provide custom content building implementations.
         */
        public interface XContentBuilderCallback {
            /**
             * Applies custom logic to build XContent using the provided builder and parameters.
             *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

            assertTrue(result >= 0);
        }
    
        // Test FilePurgeVisitor getDocId
        public void test_FilePurgeVisitor_getDocId() throws IOException {
            // Test the getDocId logic without creating actual FilePurgeVisitor
            // The logic converts path to doc ID by removing path separators
            String pathStr = "_1/_2/docid123";
            String expectedDocId = "_1_2docid123";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

            }
    
            @Override
            public String getServicePackageName() {
                return "service";
            }
    
            @Override
            public String getLogicPackageName() {
                return "logic";
            }
    
            @Override
            public String getImplementationSuffix() {
                return "Impl";
            }
    
            @Override
            public String getJobSuffix() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java

     */
    package org.codelibs.fess.app.logic;
    
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.dbflute.hook.AccessContext;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.core.time.TimeManager;
    import org.lastaflute.db.dbflute.accesscontext.AccessContextResource;
    
    import jakarta.annotation.Resource;
    
    /**
     * The logic for access context.
     */
    public class AccessContextLogic {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistantTest.java

            assertEquals("Service", result[0]);
            assertEquals("ServiceImpl", result[1]);
            assertEquals("Facade", result[2]);
            assertEquals("FacadeImpl", result[3]);
            assertEquals("Logic", result[4]);
            assertEquals("LogicImpl", result[5]);
        }
    
        // Test toBeDisposable with null process
        public void test_toBeDisposable_nullProcess() {
            // Should not throw exception
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

                    outputFile.delete();
                }
            }
        }
    
        // Test variable replacement logic without triggering component dependencies
        public void test_variable_replacement_logic() throws Exception {
            // Test the variable replacement logic directly
            final List<String> commands =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java

                System.setErr(new PrintStream(errContent));
    
                String[] args = { "--help" };
                // Note: main calls System.exit, so we can't test it directly
                // Instead, we test the parsing logic separately
    
                System.setErr(originalErr);
            } catch (Exception e) {
                System.setErr(originalErr);
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java

            return redirect(getClass());
        }
    
        // ===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
        /**
         * Creates a duplicate host entity based on the form and current user context.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/CreateForm.java

        public String handlerName;
    
        /** Parameters passed to the data handler */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerParameter;
    
        /** Script for custom data processing logic */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerScript;
    
        /** Boost value for documents from this data source */
        @Required
        @ValidateTypeFailure
        public Float boost;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java

        }
    
        // ===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
        protected JsonResponse<ApiResult> asJson(final ApiResult bean) {
            return new JsonResponse<>(bean);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
Back to top