Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,103 for creates (0.04 sec)

  1. src/main/java/jcifs/SmbException.java

        private final Severity severity;
        private final Category category;
        private final Map<String, Object> context;
        private final long timestamp;
        private String recoveryHint;
    
        /**
         * Creates an SMB exception with detailed context
         *
         * @param message the error message
         * @param errorCode the SMB error code
         * @param severity the error severity
         * @param category the error category
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java

    /**
     * OpenID Connect credential implementation.
     */
    public class OpenIdConnectCredential implements LoginCredential, FessCredential {
    
        private final Map<String, Object> attributes;
    
        /**
         * Creates a new OpenID Connect credential.
         *
         * @param attributes the attributes from OpenID Connect provider
         */
        public OpenIdConnectCredential(final Map<String, Object> attributes) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/CreateForm.java

        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer sortOrder;
    
        /** The username of who created this duplicate host entry */
        @Size(max = 1000)
        public String createdBy;
    
        /** The timestamp when this duplicate host entry 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.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/MethodNotFoundRuntimeException.java

         * The name of the method.
         */
        private final String methodName;
    
        /**
         * The classes of the method arguments.
         */
        private final Class<?>[] methodArgClasses;
    
        /**
         * Creates a {@link MethodNotFoundRuntimeException}.
         *
         * @param targetClass
         *            Target class
         * @param methodName
         *            Method name
         * @param methodArgs
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

        }
    
        /**
         * Creates a Type-3 message using default values from the current
         * environment.
         */
        public Type3Message() {
            setFlags(getDefaultFlags());
            setDomain(getDefaultDomain());
            setUser(getDefaultUser());
            setWorkstation(getDefaultWorkstation());
        }
    
        /**
         * Creates a Type-3 message in response to the given Type-2 message
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/SearchEngineUtil.java

        /**
         * Private constructor to prevent instantiation of this utility class.
         */
        private SearchEngineUtil() {
        }
    
        /**
         * Creates an OutputStream from an XContentBuilder using the provided callback function.
         *
         * @param func the callback function to build XContent
         * @param mediaType the media type for the content builder
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/TestListGenerator.java

    import org.jspecify.annotations.NullMarked;
    import org.jspecify.annotations.Nullable;
    
    /**
     * Creates sets, containing sample elements, to be tested.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    @NullMarked
    public interface TestListGenerator<E extends @Nullable Object> extends TestCollectionGenerator<E> {
      @Override
      List<E> create(Object... elements);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/TestStringListGenerator.java

      }
    
      @Override
      public List<String> create(Object... elements) {
        String[] array = new String[elements.length];
        int i = 0;
        for (Object e : elements) {
          array[i++] = (String) e;
        }
        return create(array);
      }
    
      /**
       * Creates a new collection containing the given elements; implement this method instead of {@link
       * #create(Object...)}.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 14:50:24 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/badword/CreateForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * The create form for Bad Word.
     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
        public CreateForm() {
            // Default constructor
        }
    
        /**
         * The CRUD mode for form processing (create, update, delete operations).
         */
        @ValidateTypeFailure
        public Integer crudMode;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
Back to top