Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for keySet (0.18 sec)

  1. apache-maven/src/assembly/maven/conf/settings.xml

          <port>80</port>
          <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
        </proxy>
        -->
      </proxies>
    
      <!-- servers
       | This is a list of authentication profiles, keyed by the server-id used within the system.
       | Authentication profiles can be used whenever maven must make a connection to a remote server.
       |-->
      <servers>
        <!-- server
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:06:01 GMT 2023
    - 11K bytes
    - Viewed (0)
  2. api/maven-api-settings/src/main/mdo/settings.mdo

        /**
         * Reset the {@code profileMap} field to {@code null}
         */
        public void flushProfileMap() {
            this.profileMap = null;
        }
    
        /**
         * @return a Map of profiles field keyed by {@link Profile#getId()}
         */
        public java.util.Map<String, Profile> getProfilesAsMap() {
            if (profileMap == null) {
                profileMap = new java.util.LinkedHashMap<String, Profile>();
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  3. maven-compat/src/main/mdo/profiles.mdo

            </field>
          </fields>
        </class>
        <class>
          <name>Profile</name>
          <version>1.0.0</version>
          <description><![CDATA[
            Modifications to the build process which is keyed on some
            sort of environmental parameter.
          ]]></description>
          <fields>
            <field>
              <name>id</name>
              <required>true</required>
              <version>1.0.0</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 03 21:08:35 GMT 2023
    - 13.8K bytes
    - Viewed (0)
Back to top