Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for xxx (0.14 sec)

  1. .github/pull_request_template.md

     - [ ] Each commit in the pull request should have a meaningful subject line and body.
     - [ ] Format the pull request title like `[MNG-XXX] SUMMARY`,
           where you replace `MNG-XXX` and `SUMMARY` with the appropriate JIRA issue.
     - [ ] Also format the first line of the commit message like `[MNG-XXX] SUMMARY`.
           Best practice is to use the JIRA issue title in both the pull request title and in the first line of the commit message.
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 20 13:14:27 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  2. api/maven-api-settings/src/test/java/org/apache/maven/api/settings/SettingsTest.java

    class SettingsTest {
    
        @Test
        void testSetLocalRepository() {
            Settings s = Settings.newInstance();
    
            s = s.withLocalRepository("xxx");
            assertEquals("xxx", s.getLocalRepository());
    
            s = s.withLocalRepository("yyy");
            assertEquals("yyy", s.getLocalRepository());
    
            s = s.withLocalRepository(null);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/java/org/apache/maven/internal/impl/DefaultSettingsValidatorTest.java

            repo = repo.withUrl("http://xxx.xxx.com");
            model2 = Settings.newBuilder()
                    .profiles(List.of(prof.withRepositories(List.of(repo))))
                    .build();
            problems.clear();
            problems = validator.validate(model2);
            assertEquals(1, problems.size());
    
            repo = repo.withId("xxx");
            model2 = Settings.newBuilder()
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  4. maven-compat/src/main/mdo/profiles.mdo

            <field>
              <name>updatePolicy</name>
              <version>1.0.0</version>
              <description>
                The frequency for downloading updates - can be "always", "daily" (default), "interval:XXX" (in minutes) or
                "never" (only if it doesn't exist locally).
              </description>
              <type>String</type>
            </field>
            <field>
              <name>checksumPolicy</name>
    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)
  5. CONTRIBUTING.md

      + Check for unnecessary whitespace with `git diff --check` before committing.
    + Make sure your commit messages are in the proper format. Your commit message should contain the key of the JIRA issue.
    ```
    [MNG-XXX] - Subject of the JIRA Ticket
     Optional supplemental description.
    ```
    + Make sure you have added the necessary tests (JUnit/[Core IT tests][core-it]) for your changes.
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 10 09:48:27 GMT 2021
    - 4.7K bytes
    - Viewed (0)
  6. api/maven-api-settings/src/main/mdo/settings.mdo

            <field>
              <name>updatePolicy</name>
              <version>1.0.0+</version>
              <description>
                The frequency for downloading updates - can be "always",
                "daily" (default), "interval:XXX" (in minutes) or "never"
                (only if it doesn't exist locally).
              </description>
              <type>String</type>
            </field>
            <field>
              <name>checksumPolicy</name>
    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)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                return true;
            }
        }
    
        private boolean isValidProfileId(String id) {
            switch (id.charAt(0)) { // avoid first character that has special CLI meaning in "mvn -P xxx"
                case '+': // activate
                case '-': // deactivate
                case '!': // deactivate
                case '?': // optional
                    return false;
                default:
            }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 65K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

              <version>4.0.0+</version>
              <description>
                The frequency for downloading updates - can be
                {@code always},
                {@code daily} (default),
                {@code interval:XXX} (in minutes) or
                {@code never} (only if it doesn't exist locally).
              </description>
              <type>String</type>
            </field>
            <field>
              <name>checksumPolicy</name>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
Back to top