Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,637 for DeVault (0.05 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/storage/UploadForm.java

         * If not specified, the file will be stored in the default location.
         */
        public String path;
    
        /**
         * The multipart file to be uploaded to the storage system.
         * This file will be stored in the specified path or default location.
         */
        @Required
        public MultipartFormFile file;
    
        /**
         * Default constructor for UploadForm.
         * Creates a new instance with default values.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/https/Handler.java

     * capabilities to the default HTTPS handler.  This acts as a wrapper,
     * handling authentication and passing control to the underlying
     * stream handler.
     */
    public class Handler extends jcifs.smb1.http.Handler {
    
        /**
         * The default HTTPS port (<code>443</code>).
         */
        public static final int DEFAULT_HTTPS_PORT = 443;
    
        /**
         * Default constructor for SMB1 HTTPS URL handler.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java

            queryCommand = new WildcardQueryCommand();
            queryCommand.register();
        }
    
        public void test_convertWildcardQuery_defaultField() throws Exception {
            // Test with default field
            QueryContext queryContext = new QueryContext("test*", false);
            WildcardQuery wildcardQuery = new WildcardQuery(new Term(Constants.DEFAULT_FIELD, "test*"));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/SMBSignatureValidationExceptionTest.java

            // Assert
            assertNull(ex.getMessage(), "Default ctor should not set a message");
            assertNull(ex.getCause(), "Default ctor should not set a cause");
            assertTrue(ex instanceof SmbException, "Should be an SmbException subtype");
            // SmbException default ctor leaves status 0, which equals NT_STATUS_SUCCESS
            assertEquals(NtStatus.NT_STATUS_SUCCESS, ex.getNtStatus(), "Default status should be success (0)");
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Config.java

         * cannot be converted to an <code>int</code>, the provided default
         * argument will be returned.
         *
         * @param props the properties to search in
         * @param key the property key to look up
         * @param def the default value to return if key is not found or cannot be parsed
         * @return the integer value of the property or the default value
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/validation/CustomSize.java

         */
        String message() default "{jakarta.validation.constraints.Size.message}";
    
        /**
         * The validation groups this constraint belongs to.
         * @return the groups
         */
        Class<?>[] groups() default {};
    
        /**
         * The payload associated with this constraint.
         * @return the payload
         */
        Class<? extends Payload>[] payload() default {};
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb/SmbEndOfFileExceptionTest.java

            // Assert
            assertEquals("Unexpectedly reached end of file", ex.getMessage(), "Default message must match");
            assertEquals(NtStatus.NT_STATUS_UNSUCCESSFUL, ex.getNtStatus(), "Default NT status should be UNSUCCESSFUL");
            assertNull(ex.getCause(), "Cause should be null by default");
            assertNull(ex.getRootCause(), "Root cause should be null by default");
            assertTrue(ex instanceof SmbException, "Should be an SmbException subtype");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/Config.java

        /**
         * Retrieve a <code>String</code>. If the key cannot be found,
         * the provided <code>def</code> default parameter will be returned.
         *
         * @param key the property key to look up
         * @param def the default value to return if the property is not found
         * @return the property value, or the default value if not found
         */
    
        public static String getProperty(final String key, final String def) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java

    public class WebAuthPager implements Serializable {
    
        /**
         * Default constructor.
         */
        public WebAuthPager() {
            // Default constructor
        }
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Default page size for pagination.
         */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /**
         * Default current page number.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

        public String accessType;
    
        /**
         * Default constructor for creating a new SearchLogPager instance.
         */
        public SearchLogPager() {
            // Default constructor
        }
    
        /**
         * Clears all filter criteria and resets pagination to default values.
         */
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
Back to top