Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NoClone (0.04 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 Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 11 10:24:25 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

         * @param toClone the source authenticator to copy from
         */
        protected static void cloneInternal(NtlmPasswordAuthenticator cloned, NtlmPasswordAuthenticator toClone) {
            cloned.domain = toClone.domain;
            cloned.username = toClone.username;
            cloned.password = toClone.password != null ? toClone.password.clone() : null;
            cloned.type = toClone.type;
        }
    
        /**
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
Back to top