Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getMirrorOfLayouts (0.15 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/DefaultMirrorSelector.java

                return false;
            }
        }
    
        static boolean matchesLayout(ArtifactRepository repository, Mirror mirror) {
            return matchesLayout(RepositoryUtils.getLayout(repository), mirror.getMirrorOfLayouts());
        }
    
        /**
         * Checks whether the layouts configured for a mirror match with the layout of the repository.
         *
         * @param repoLayout The layout of the repository, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

                        mirror.getUrl(),
                        mirror.getLayout(),
                        false,
                        mirror.isBlocked(),
                        mirror.getMirrorOf(),
                        mirror.getMirrorOfLayouts());
            }
            sessionBuilder.setMirrorSelector(mirrorSelector);
    
            DefaultProxySelector proxySelector = new DefaultProxySelector();
            for (Proxy proxy : decrypted.getProxies()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                return false;
            }
        }
    
        static boolean matchesLayout(ArtifactRepository repository, Mirror mirror) {
            return matchesLayout(RepositoryUtils.getLayout(repository), mirror.getMirrorOfLayouts());
        }
    
        /**
         * Checks whether the layouts configured for a mirror match with the layout of the repository.
         *
         * @param repoLayout The layout of the repository, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top