Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NoClone (0.05 sec)

  1. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            <module name="EmptyStatement"/>
            <module name="EqualsHashCode"/>
            <module name="ExplicitInitialization"/>
            <module name="MultipleVariableDeclarations"/>
            <module name="NoClone"/>
            <module name="NoFinalizer"/>
            <!--<module name="RedundantThrows">-->
                <!--<property name="allowUnchecked" value="true"/>-->
            <!--</module>-->
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Dec 16 22:05:16 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  2. javadoc-stylesheet.css

        text-align:left;
        padding:3px 3px 3px 7px;
    }
    th.colFirst, th.colLast, th.colOne, .constantValuesContainer th {
        background:#dee3e9;
        border-top:1px solid #9eadc0;
        border-bottom:1px solid #9eadc0;
        text-align:left;
        padding:3px 3px 3px 7px;
    }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 17 21:01:06 UTC 2013
    - 11.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

            return cloned;
        }
    
    
        protected static void cloneInternal ( NtlmPasswordAuthenticator cloned, NtlmPasswordAuthenticator toClone ) {
            cloned.domain = toClone.domain;
            cloned.username = toClone.username;
            cloned.password = toClone.password;
            cloned.type = toClone.type;
        }
    
    
        /**
         * Returns the domain.
         */
        @Override
        public String getUserDomain () {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 18.8K bytes
    - Viewed (0)
Back to top