Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,679 for DeVault (0.07 sec)

  1. src/main/java/jcifs/smb/NtlmAuthenticator.java

    public abstract class NtlmAuthenticator {
    
        /**
         * Default constructor.
         */
        protected NtlmAuthenticator() {
            // Protected constructor for abstract class
        }
    
        private static NtlmAuthenticator auth;
    
        private String url;
        private SmbAuthException sae;
    
        /**
         * Set the default <code>NtlmAuthenticator</code>. Once the default authenticator is set it cannot be changed. Calling
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbConstants.java

    interface SmbConstants {
    
        /** Default SMB port number */
        int DEFAULT_PORT = 445;
    
        /** Default maximum multiplex count */
        int DEFAULT_MAX_MPX_COUNT = 10;
        /** Default response timeout in milliseconds */
        int DEFAULT_RESPONSE_TIMEOUT = 30000;
        /** Default socket timeout in milliseconds */
        int DEFAULT_SO_TIMEOUT = 35000;
        /** Default receive buffer size in bytes */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/query/QueryCommand.java

     * Provides common functionality for processing and executing search queries.
     */
    public abstract class QueryCommand {
    
        /**
         * Default constructor for QueryCommand.
         * Creates a new instance of the query command with default settings.
         */
        public QueryCommand() {
            // Default constructor
        }
    
        /**
         * Executes the query command and returns a QueryBuilder.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/BoostDocPager.java

        }
    
        /**
         * Gets the default current page number from constants.
         * @return The default current page number.
         */
        protected int getDefaultCurrentPageNumber() {
            return Constants.DEFAULT_ADMIN_PAGE_NUMBER;
        }
    
        /**
         * Gets the default page size from configuration.
         * @return The default page size.
         */
        protected int getDefaultPageSize() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ForwardingBlockingDeque.java

     * override {@code offer} as well, either providing your own implementation, or delegating to the
     * provided {@code standardOffer} method.
     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingBlockingDeque}.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/NbtException.java

                    break;
                case UNSPECIFIED:
                    result.append("Unspecified error");
                    break;
                default:
                    result.append("Unknown error code: ").append(errorCode);
                }
                break;
            default:
                result.append("unknown error class: ").append(errorClass);
            }
            return result.toString();
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  7. schema/serializer.go

    	fieldValue := reflect.New(field.FieldType)
    
    	if dbValue != nil {
    		var bytes []byte
    		switch v := dbValue.(type) {
    		case []byte:
    			bytes = v
    		case string:
    			bytes = []byte(v)
    		default:
    			bytes, err = json.Marshal(v)
    			if err != nil {
    				return err
    			}
    		}
    
    		if len(bytes) > 0 {
    			err = json.Unmarshal(bytes, fieldValue.Interface())
    		}
    	}
    
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Jun 20 08:45:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/ingest/Ingester.java

     */
    public abstract class Ingester {
    
        /** Priority of this ingester (lower numbers = higher priority) */
        protected int priority = 99;
    
        /**
         * Default constructor.
         */
        public Ingester() {
            // Default constructor
        }
    
        /**
         * Gets the priority of this ingester.
         * Lower numbers indicate higher priority.
         *
         * @return the priority value
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/org/codelibs/core/misc/LocaleUtil.java

        /**
         * Returns the default locale.
         *
         * @return the default locale
         */
        public static Locale getDefault() {
            if (defaultLocaleSupplier != null) {
                return defaultLocaleSupplier.get();
            }
            return Locale.ENGLISH;
        }
    
        /**
         * Sets the default locale supplier.
         *
         * @param localeSupplier
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 2.2K bytes
    - Viewed (0)
Back to top