Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 1,995 for Defaults (0.04 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/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)
  3. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

     * DCE/RPC interface for Distributed File System (DFS) operations.
     * Provides structures and methods for DFS management and enumeration.
     */
    public class netdfs {
    
        /**
         * Default constructor for netdfs
         */
        public netdfs() {
            // Default constructor
        }
    
        /**
         * Gets the DCE/RPC syntax identifier for the DFS interface
         * @return the syntax identifier string
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 21.2K 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/org/codelibs/fess/app/pager/PathMapPager.java

     */
    public class PathMapPager implements Serializable {
    
        /**
         * Default constructor.
         */
        public PathMapPager() {
            // Default constructor
        }
    
        private static final long serialVersionUID = 1L;
    
        /** Default page size. */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /** Default current page number. */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/http/Handler.java

     * capabilities to the default HTTP handler.  This acts as a wrapper,
     * handling authentication and passing control to the underlying
     * stream handler.
     */
    public class Handler extends URLStreamHandler {
    
        /**
         * The default HTTP port (<code>80</code>).
         */
        public static final int DEFAULT_HTTP_PORT = 80;
    
        /**
         * Default constructor for SMB1 HTTP URL handler.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ForwardingBlockingQueue.java

     * as desired per the <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator
     * pattern</a>.
     *
     * <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 ForwardingBlockingQueue}.
     *
     * @author Raimundo Mirisola
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/LabelTypePager.java

        private static final long serialVersionUID = 1L;
    
        /**
         * Default constructor.
         */
        public LabelTypePager() {
            // do nothing
        }
    
        /** The default page size. */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /** The default current page number. */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6K bytes
    - Viewed (0)
  9. tests/non_std_test.go

    	if animal.Name != "amazing horse" {
    		t.Errorf("Update a filed with a default value should occur. But got %v\n", animal.Name)
    	}
    
    	// When changing a field with a default value with blank value
    	animal.Name = ""
    	DB.Save(&animal)
    	DB.First(&animal, animal.Counter)
    	if animal.Name != "" {
    		t.Errorf("Update a filed to blank with a default value should occur. But got %v\n", animal.Name)
    	}
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/StemmerOverridePager.java

            id = null;
        }
    
        /**
         * Gets the default page size from configuration.
         *
         * @return The default number of records per page
         */
        protected int getDefaultPageSize() {
            return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger();
        }
    
        /**
         * Gets the default current page number.
         *
         * @return The default current page number (1)
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6K bytes
    - Viewed (0)
Back to top