Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,671 for Defaults (0.06 sec)

  1. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java

            case Smb2Constants.SMB2_0_INFO_QUOTA -> createQuotaInformation(infoClass);
            case Smb2Constants.SMB2_0_INFO_SECURITY -> createSecurityInformation(infoClass);
            default -> throw new SMBProtocolDecodingException("Unknwon information type " + infoType);
            };
        }
    
        /**
         * @param infoClass
         * @return
         * @throws SMBProtocolDecodingException
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/response-status-code.md

    ///
    
    ## Changing the default { #changing-the-default }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/common/admin/crud/buttons.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
    <c:if test="${crudMode == 1}">
    	<button type="submit" class="btn btn-default" name="list"
    		value="<la:message key="labels.crud_button_back" />">
    		<em class="fa fa-arrow-circle-left">
    		<la:message key="labels.crud_button_back" />
    	</button>
    	<c:if test="${editable}">
    	<button type="submit" class="btn btn-success" name="create"
    		value="<la:message key="labels.crud_button_create" />">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Feb 10 12:37:20 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  4. compat/maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java

            assertTrue(DefaultMirrorSelector.matchesLayout("default", "default,legacy"));
    
            assertFalse(DefaultMirrorSelector.matchesLayout("default", "legacy,!default"));
            assertFalse(DefaultMirrorSelector.matchesLayout("default", "!default,legacy"));
    
            assertFalse(DefaultMirrorSelector.matchesLayout("default", "*,!default"));
            assertFalse(DefaultMirrorSelector.matchesLayout("default", "!default,*"));
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. 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)
  6. dbflute_fess/dfprop/databaseInfoMap.dfprop

            #    o objectTypeTargetList: (NotRequired - Default 'map:{TABLE;VIEW}')
            #    o tableExceptList: (NotRequired - Default list:{})
            #    o tableTargetList: (NotRequired - Default list:{})
            #    o columnExceptMap: (NotRequired - Default map:{})
            #    o isSuppressCommonColumn: (NotRequired - Default false)
            #    o isSuppressProcedure: (NotRequired - Default false)
            #
            #; additionalSchemaMap = map:{
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 7.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java

        /**
         * Creates a new pager instance with default settings.
         */
        public CrawlingInfoPager() {
            // 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 (1-based).
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java

        /** Serial version UID for serialization compatibility. */
        private static final long serialVersionUID = 1L;
    
        /**
         * Default constructor.
         */
        public FailureUrlPager() {
            // Default constructor
        }
    
        /** URL filter for searching failure URLs. */
        //@Maxbytelength(maxbytelength = 1000)
        public String url;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/rdma/RdmaCapabilities.java

        /**
         * Default maximum number of receive credits
         */
        public static final int DEFAULT_RECEIVE_CREDIT_MAX = 255;
    
        /**
         * Default target number of send credits
         */
        public static final int DEFAULT_SEND_CREDIT_TARGET = 32;
    
        /**
         * Default maximum receive size (8KB)
         */
        public static final int DEFAULT_MAX_RECEIVE_SIZE = 8192;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 2K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java

         */
        @Nonnull
        String name();
    
        /**
         * default phase to bind your mojo.
         * @return the default phase
         */
        @Nonnull
        String defaultPhase() default "";
    
        /**
         * does your mojo requires a project to be executed?
         * @return requires a project
         */
        boolean projectRequired() default true;
    
        /**
         * if the Mojo uses the Maven project and its subprojects.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 29 18:21:40 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top