Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 143 for layouts (0.23 sec)

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

        }
    
        /**
         * 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}.
         * @param mirrorLayout The layouts supported by the mirror, may be {@code null}.
         * @return {@code true} if the layouts associated with the mirror match the layout of the original repository,
         *         {@code false} otherwise.
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                String url,
                String layoutId,
                ArtifactRepositoryPolicy snapshots,
                ArtifactRepositoryPolicy releases)
                throws InvalidRepositoryException {
            ArtifactRepositoryLayout layout = layouts.get(layoutId);
    
            checkLayout(id, layoutId, layout);
    
            return createArtifactRepository(id, url, layout, snapshots, releases);
        }
    
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/repository/TestMavenRepositorySystem.java

        @Inject
        public TestMavenRepositorySystem(
                ArtifactHandlerManager artifactHandlerManager, Map<String, ArtifactRepositoryLayout> layouts) {
            super(artifactHandlerManager, layouts);
        }
    
        @Override
        public ArtifactRepository createDefaultRemoteRepository() throws Exception {
            return new MavenArtifactRepository(
                    DEFAULT_REMOTE_REPO_ID,
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Dec 13 22:19:20 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  4. docs/en/mkdocs.insiders.yml

    plugins:
      # TODO: Re-enable once this is fixed: https://github.com/squidfunk/mkdocs-material/issues/6983
      # social:
      #   cards_layout_dir: ../en/layouts
      #   cards_layout: custom
      #   cards_layout_options:
      #     logo: ../en/docs/img/icon-white.svg
    Others
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Fri Mar 29 20:50:47 GMT 2024
    - 266 bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

            ArtifactRepositoryLayout layout = layouts.get(id);
    
            if (layout == null) {
                layout = new UnknownRepositoryLayout(id, layouts.get("default"));
            }
    
            return layout;
        }
    
        /**
         * In the future, the legacy system might encounter repository types for which no layout components exists because
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/DefaultModelBuildingListener.java

                                    e);
                }
    
                projectBuildingHelper.selectProjectRealm(project);
            }
    
            // build the regular repos after extensions are loaded to allow for custom layouts
            try {
                remoteRepositories = projectBuildingHelper.createArtifactRepositories(
                        model.getRepositories(), remoteRepositories, projectBuildingRequest);
            } catch (Exception e) {
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java

            return newMirror(id, mirrorOf, null, url);
        }
    
        private Mirror newMirror(String id, String mirrorOf, String layouts, String url) {
            Mirror mirror = new Mirror();
    
            mirror.setId(id);
            mirror.setMirrorOf(mirrorOf);
            mirror.setMirrorOfLayouts(layouts);
            mirror.setUrl(url);
    
            return mirror;
        }
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 10.7K bytes
    - Viewed (0)
  8. api/maven-api-settings/src/main/mdo/settings.mdo

              <type>String</type>
              <defaultValue>default,legacy</defaultValue>
              <description>
                The layouts of repositories being mirrored. This value can be used to restrict the usage
                of the mirror to repositories with a matching layout (apart from a matching id).
                @since Maven 3.
              </description>
            </field>
            <field>
              <name>blocked</name>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  9. LICENSE

    linked without the Library, or if the work is itself a library.  The
    threshold for this to be true is not precisely defined by law.
    
      If such an object file uses only numerical parameters, data
    structure layouts and accessors, and small macros and small inline
    functions (ten lines or less in length), then the use of the object
    file is unrestricted, regardless of whether it is legally a derivative
    Plain Text
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Mon Jan 18 20:25:38 GMT 2016
    - 25.8K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/repository/DefaultArtifactRepositoryFactory.java

                String url,
                String layoutId,
                ArtifactRepositoryPolicy snapshots,
                ArtifactRepositoryPolicy releases)
                throws UnknownRepositoryLayoutException {
            ArtifactRepositoryLayout layout = repositoryLayouts.get(layoutId);
    
            checkLayout(id, layoutId, layout);
    
            return createArtifactRepository(id, url, layout, snapshots, releases);
        }
    
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 4.6K bytes
    - Viewed (0)
Back to top