Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for Creation (0.04 sec)

  1. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

            // Test task creation with null path
            Map<String, Object> docMap = new HashMap<>();
            docMap.put("mimetype", "application/pdf");
    
            Tuple3<String, String, String> task = thumbnailGenerator.createTask(null, docMap);
            assertNull(task);
        }
    
        public void test_createTask_withEmptyPath() {
            // Test task creation with empty path
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of crawling information records based on the provided pager criteria.
         * The results are ordered by creation time in descending order and the pager is updated with
         * pagination metadata including total count and page number list.
         *
         * @param crawlingInfoPager the pager object containing search criteria and pagination settings
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/CompoundOrdering.java

      final Comparator<? super T>[] comparators;
    
      @SuppressWarnings("unchecked") // Generic array creation
      CompoundOrdering(Comparator<? super T> primary, Comparator<? super T> secondary) {
        this.comparators = (Comparator<? super T>[]) new Comparator<?>[] {primary, secondary};
      }
    
      @SuppressWarnings("unchecked") // Generic array creation
      CompoundOrdering(Iterable<? extends Comparator<? super T>> comparators) {
        this.comparators =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jun 04 13:03:16 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  4. android/guava-tests/benchmark/com/google/common/collect/MapsMemoryBenchmark.java

        "HashBiMapImpl",
        "ImmutableBiMapImpl"
      })
      String implName;
    
      MapsImplEnum mapsImpl;
    
      /**
       * A map of contents pre-created before experiment starts to only measure map creation cost. The
       * implementation for the creation of contents is independent and could be different from that of
       * the map under test.
       */
      Map<Element, Element> contents;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java

    import jakarta.validation.constraints.Pattern;
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for creating access tokens in the admin interface.
     * This form handles the creation of API access tokens with configurable permissions and expiration dates.
     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
        public CreateForm() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java

        public void test_create_searchLogEnabled() {
            // Test configuration for search log creation
            SuggestCreator.Options options = new SuggestCreator.Options();
            assertNotNull(options);
        }
    
        // Test create with documents enabled
        public void test_create_documentsEnabled() {
            // Test configuration for document creation
            SuggestCreator.Options options = new SuggestCreator.Options();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

        // Test inherited behavior from ComponentCreatorImpl
        public void test_getNamingConvention() {
            assertSame(namingConvention, pagerCreator.getNamingConvention());
        }
    
        // Test component name creation
        public void test_fromClassNameToComponentName() {
            // Test with class name ending with Pager
            String componentName = namingConvention.fromClassNameToComponentName("com.example.TestPager");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java

         *
         * <p>This method performs a paginated search through all duplicate host configurations,
         * applying any search filters specified in the pager. The results are sorted
         * by sort order, creation time, regular name, and duplicate hostname.</p>
         *
         * @param duplicateHostPager the pager containing search criteria and pagination settings
         * @return a list of DuplicateHost entities matching the search criteria
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java

        //                                            ----------
        /**
         * Displays the form for creating a new duplicate host configuration.
         *
         * @return HTML response for the duplicate host creation form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse createnew() {
            saveToken();
            return asHtml(path_AdminDuplicatehost_AdminDuplicatehostEditJsp).useForm(CreateForm.class, op -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

        //                                            ----------
        /**
         * Displays the form for creating a new user.
         *
         * @return HTML response for the user creation form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse createnew() {
            saveToken();
            return asHtml(path_AdminUser_AdminUserEditJsp).useForm(CreateForm.class, op -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.5K bytes
    - Viewed (0)
Back to top