Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for mirrorOf (0.26 sec)

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

         |
        <mirror>
          <id>mirrorId</id>
          <mirrorOf>repositoryId</mirrorOf>
          <name>Human Readable Name for this Mirror.</name>
          <url>http://my.repository.com/repo/path</url>
        </mirror>
        -->
        <mirror>
          <id>maven-default-http-blocker</id>
          <mirrorOf>external:http:*</mirrorOf>
    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

        }
    
        @Deprecated
        public Mirror getMirrorOf(String repositoryId) {
            Mirror match = null;
            java.util.List<Mirror> mirrors = getMirrors();
            if (mirrors != null && repositoryId != null) {
                for (Mirror mirror : mirrors) {
                    if (repositoryId.equals(mirror.getMirrorOf())) {
                        match = mirror;
                        break;
                    }
    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)
Back to top