Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,400 for creator (0.05 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java

                return null;
            })).status(Status.OK).result());
        }
    
        /**
         * Creates a new label type setting.
         *
         * @param body the label type data to create
         * @return JSON response containing the created label type setting ID
         */
        // POST /api/admin/labeltype/setting
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/CreateForm.java

    import jakarta.validation.constraints.Min;
    import jakarta.validation.constraints.Size;
    
    /**
     * The create form for managing related content.
     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
        public CreateForm() {
        }
    
        /**
         * The CRUD operation mode (create, update, etc.).
         */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

        }
    
        /**
         * Creates and returns a new instance of {@link ArrayDeque}.
         *
         * @param <E> the element type of {@link ArrayDeque}
         * @return a new instance of {@link ArrayDeque}
         * @see ArrayDeque#ArrayDeque()
         */
        public static <E> ArrayDeque<E> newArrayDeque() {
            return new ArrayDeque<>();
        }
    
        /**
         * Creates and returns a new instance of {@link ArrayDeque}.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 49.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java

                return null;
            })).status(ApiResult.Status.OK).result());
        }
    
        /**
         * Creates a new user setting.
         *
         * @param body the user data to create
         * @return JSON response containing the created user setting ID
         */
        // POST /api/admin/user/setting
        @Execute
        public JsonResponse<ApiResult> post$setting(final CreateBody body) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

      }
    
      /**
       * Returns a builder that creates immutable sorted sets whose elements are ordered by the reverse
       * of their natural ordering.
       */
      public static <E extends Comparable<?>> Builder<E> reverseOrder() {
        return new Builder<>(Collections.reverseOrder());
      }
    
      /**
       * Returns a builder that creates immutable sorted sets whose elements are ordered by their
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 36.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/pathmap/CreateForm.java

    import jakarta.validation.constraints.Min;
    import jakarta.validation.constraints.Size;
    
    /**
     * The create form for Path Map.
     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
        public CreateForm() {
        }
    
        /**
         * The CRUD operation mode (create, update, etc.).
         */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/CreateForm.java

        @Required
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer sortOrder;
    
        /** User who created this configuration */
        @Size(max = 1000)
        public String createdBy;
    
        /** Timestamp when this configuration was created */
        @ValidateTypeFailure
        public Long createdTime;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ArrayTable.java

       * @return the value with the specified row and column
       * @throws IndexOutOfBoundsException if either index is negative, {@code rowIndex} is greater than
       *     or equal to the number of allowed row keys, or {@code columnIndex} is greater than or equal
       *     to the number of allowed column keys
       */
      public @Nullable V at(int rowIndex, int columnIndex) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 19:39:21 UTC 2025
    - 26.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/AdminRelatedcontentAction.java

        /**
         * Creates a new related content item.
         *
         * @param form the create form containing the new item data
         * @return HTML response redirecting to the list page after creation
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse create(final CreateForm form) {
            verifyCrudMode(form.crudMode, CrudMode.CREATE);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java

                return null;
            })).status(ApiResult.Status.OK).result());
        }
    
        // POST /api/admin/group/setting
        /**
         * Creates a new group setting.
         *
         * @param body group setting data to create
         * @return JSON response with created setting ID and status
         */
        @Execute
        public JsonResponse<ApiResult> post$setting(final CreateBody body) {
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8K bytes
    - Viewed (0)
Back to top