Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for copySettings (0.05 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/settings/SettingsUtils.java

        }
    
        /**
         * @param settings could be null
         * @return a new instance of settings or null if settings was null.
         */
        public static Settings copySettings(Settings settings) {
            if (settings == null) {
                return null;
            }
    
            return new Settings(settings.getDelegate());
        }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jan 24 17:29:44 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  2. src/main/java/jcifs/http/NtlmHttpURLConnection.java

            super(connection.getURL());
            this.connection = connection;
            this.transportContext = tc;
            this.requestProperties = new HashMap<>();
            copySettings();
        }
    
        /**
         *
         */
        private final void copySettings() {
            try {
                this.setRequestMethod(this.connection.getRequestMethod());
            } catch (final ProtocolException e) {
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 25.6K bytes
    - Click Count (0)
Back to Top