Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for name (0.24 sec)

  1. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/RepositorySystemSupplier.java

            result.put(NameMappers.STATIC_NAME, NameMappers.staticNameMapper());
            result.put(NameMappers.GAV_NAME, NameMappers.gavNameMapper());
            result.put(NameMappers.DISCRIMINATING_NAME, NameMappers.discriminatingNameMapper());
            result.put(NameMappers.FILE_GAV_NAME, NameMappers.fileGavNameMapper());
            result.put(NameMappers.FILE_HGAV_NAME, NameMappers.fileHashingGavNameMapper());
            return result;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 26 13:10:42 GMT 2024
    - 43.7K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/maven-parent/4/maven-parent-4.pom

      <mailingLists>
        <mailingList>
          <name>Maven Announcements List</name>
          <post>******@****.***</post>
          <subscribe>******@****.***</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-announce/</archive>
        </mailingList>
        <mailingList>
          <name>Maven Issues List</name>
          <post>******@****.***</post>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 9.8K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/foo/sub/pom.xml

                  <tasks>
                    <property name="test.projects.name" value="basic" />
                    <property name="test.projects.version" value="1.0" />
                    <property name="test.projects.archetype" value="${test.projects.name}-${test.projects.version}" />
                    <property name="test.projects.source.directory" value="${test.projects.archetype}" />
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 08:59:31 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

        /**
         * Name of the file to use as a sentinel value for deciding if a directory or a JAR is modular.
         */
        private static final String MODULE_INFO = "module-info.class";
    
        /**
         * The attribute for automatic module name in {@code META-INF/MANIFEST.MF} files.
         */
        private static final Attributes.Name AUTO_MODULE_NAME = new Attributes.Name("Automatic-Module-Name");
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/4/maven-parent-4.pom

      <mailingLists>
        <mailingList>
          <name>Maven Announcements List</name>
          <post>******@****.***</post>
          <subscribe>******@****.***</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-announce/</archive>
        </mailingList>
        <mailingList>
          <name>Maven Issues List</name>
          <post>******@****.***</post>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 9.8K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/maven/conf/settings.xml

          <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>
          <name>Pseudo repository to mirror external repositories initially using HTTP.</name>
          <url>http://0.0.0.0/</url>
          <blocked>true</blocked>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:06:01 GMT 2023
    - 11K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

            }
    
            /**
             * Returns the name of the tool option for this path, not including the module name.
             *
             * @return name of the tool option for this path, not including the module name
             */
            @Nonnull
            public String name() {
                return JavaPathType.this.name();
            }
    
            /**
             * Returns the name of the module for which a path is specified
             *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar

    oryImpl) that is selected if no other implementation class name can be discovered. Its primary purpose is to create (as necessary) and return Log instances in response to calls to the getInstance() method. The default implementation uses the following rules: At most one Log instance of the same name will be created. Subsequent getInstance() calls to the same LogFactory instance, with the same name or Class parameter, will return the same Log instance. When a new Log instance must be created, the...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 37.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/settings/SettingsUtilsV4.java

                    activation.property(org.apache.maven.api.model.ActivationProperty.newBuilder()
                            .name(settingsProp.getName())
                            .value(settingsProp.getValue())
                            .location("name", toLocation(settingsProp.getLocation("name")))
                            .location("value", toLocation(settingsProp.getLocation("value")))
                            .build());
                }
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Feb 15 08:42:00 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         * Java does not accept the placement of two modules of the same name on the module-path.
         * So the modular test output directory usually needs to be placed in a {@code --path-module} option.
         *
         * <ul>
         *   <li>If the test output directory is modular, then:
         *     <ul>
         *       <li>If a test module name is identical to a main module name,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
Back to top