Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 374 for creation (0.08 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java

            })).status(Status.OK).result());
        }
    
        // POST /api/admin/fileauth/setting
        /**
         * Creates a new file authentication setting.
         * Validates that the associated file config ID is valid before creation.
         *
         * @param body file authentication setting data to create
         * @return JSON response with created setting ID and status
         */
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

        public void test_execute_success() {
            createRequiredDirectories();
    
            // Setup successful process execution
            mockProcessHelper.setExitValue(0);
            mockProcessHelper.setOutput("Suggest creation successful");
    
            String result = suggestJob.execute();
    
            assertNotNull(result);
            assertTrue(result.contains("Session Id:"));
            assertNotNull(suggestJob.sessionId);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

        }
    
        /**
         * Inner class for handling updates to the character mapping file.
         * This class manages the temporary file creation, writing operations,
         * and atomic updates to ensure data consistency during modifications.
         */
        protected class MappingUpdater implements Closeable {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java

        /** Search/filter parameter for data configuration sort order. */
        public String sortOrder;
    
        /** Search/filter parameter for data configuration creator. */
        public String createdBy;
    
        /** Search/filter parameter for data configuration creation time. */
        public String createdTime;
    
        /** Search/filter parameter for data configuration version number. */
        public String versionNo;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java

        public String term;
    
        /** Content text for filtering related content. */
        public String content;
    
        /** User who created the related content. */
        public String createdBy;
    
        /** Creation time of the related content. */
        public String createdTime;
    
        /** Version number for optimistic locking. */
        public String versionNo;
    
        /**
         * Clears all pagination state and filter parameters.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

            assertEquals(-1L, result.getQueryTime());
        }
    
        public void test_documentListImmutability() {
            // Test that document list is not modified after creation
            Map<String, Object> doc1 = new HashMap<>();
            doc1.put("id", "1");
    
            SearchResult.SearchResultBuilder builder = SearchResult.create();
            builder.addDocument(doc1);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

       * test method needs to create multiple containers while retaining the ability to use {@link
       * #expectContents(Object[]) expectContents(E...)} and other convenience methods. The creation of
       * multiple containers in a single method is discouraged in most cases, but it is vital to the
       * iterator tests.
       *
       * @return the new container instance
       * @param newValue the new container instance
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

        public String available;
    
        /** Sort order for the configuration */
        public String sortOrder;
    
        /** User who created the configuration */
        public String createdBy;
    
        /** Creation timestamp of the configuration */
        public String createdTime;
    
        /** Version number of the configuration */
        public String versionNo;
    
        /** Description of the configuration */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

                            t.getClass().getCanonicalName(), t.getMessage());
                    if (logger.isDebugEnabled()) {
                        logger.debug("Details for failed thumbnail creation.", t);
                    }
                } finally {
                    if (!created) {
                        updateThumbnailField(thumbnailId, StringUtil.EMPTY);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

        //                                            Entry Page
        //                                            ----------
        /**
         * Displays the form for creating a new path mapping.
         *
         * @return HTML response for the path mapping creation form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse createnew() {
            saveToken();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16K bytes
    - Viewed (0)
Back to top