Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 274 for Subject (0.18 sec)

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

                return nullify(metadata.getVersion());
            }
    
            private String nullify(String str) {
                return (str == null || str.isEmpty()) ? null : str;
            }
    
            public Object getKey() {
                return metadata.toString();
            }
    
            public String getRemoteFilename() {
                return metadata.getType();
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMavenMetadataCache.java

                this.hashCode = hash;
            }
    
            @Override
            public int hashCode() {
                return hashCode;
            }
    
            @Override
            public boolean equals(Object o) {
                if (o == this) {
                    return true;
                }
    
                if (!(o instanceof CacheKey)) {
                    return false;
                }
    
                CacheKey other = (CacheKey) o;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularization.java

                        return;
                    }
                    // No module descriptor, check manifest file.
                    Manifest mf = jar.getManifest();
                    if (mf != null) {
                        Object name = mf.getMainAttributes().get(AUTO_MODULE_NAME);
                        if (name instanceof String) {
                            descriptors = Collections.singletonMap(path, (String) name);
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

            VERBOSE // at end, list of plugin GAVs along with detailed report of ANY validation issues
        }
    
        private final Logger logger = LoggerFactory.getLogger(getClass());
    
        @Override
        public void onEvent(Object event) {
            if (event instanceof ExecutionEvent) {
                ExecutionEvent executionEvent = (ExecutionEvent) event;
                if (executionEvent.getType() == ExecutionEvent.Type.SessionStarted) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Nov 19 21:11:13 GMT 2023
    - 17.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/ReactorReader.java

            }
    
            @Override
            public void init(Context context) throws Exception {}
    
            @Override
            @SuppressWarnings("checkstyle:MissingSwitchDefault")
            public void onEvent(Object event) throws Exception {
                if (event instanceof ExecutionEvent) {
                    ReactorReader reactorReader = lookup.lookup(ReactorReader.class);
                    reactorReader.processEvent((ExecutionEvent) event);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/lifecycle/pom.xml

      <version>3.0-SNAPSHOT</version>
      <packaging>pom</packaging>
      <name>Apache Maven</name>
      <description>Maven is a project development management and
        comprehension tool. Based on the concept of a project object model:
        builds, dependency management, documentation creation, site
        publication, and distribution publication are all controlled from
        the declarative file. Maven can be extended by plugins to utilise a
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Sep 11 08:52:20 GMT 2021
    - 22.4K bytes
    - Viewed (0)
  7. maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml

      <version>3.0-SNAPSHOT</version>
      <packaging>pom</packaging>
      <name>Apache Maven</name>
      <description>Maven is a project development management and
        comprehension tool. Based on the concept of a project object model:
        builds, dependency management, documentation creation, site
        publication, and distribution publication are all controlled from
        the declarative file. Maven can be extended by plugins to utilise a
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Aug 03 09:29:10 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         *
         * @throws org.apache.maven.api.services.MavenException if not called from the within a mojo execution
         */
        @Nonnull
        Map<String, Object> getPluginContext(@Nonnull Project project);
    
        /**
         * Retrieves the service for the interface
         *
         * @throws NoSuchElementException if the service could not be found
         */
        @Nonnull
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        private void assertPathSuffixEquals(String expected, Object actual) {
            String a = actual.toString();
            a = a.substring(a.length() - expected.length()).replace('\\', '/');
            assertEquals(expected, a);
        }
    
        private void assertPathWithNormalizedFileSeparators(Object value) {
            assertEquals(new File(value.toString()).getPath(), value.toString());
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  10. apache-maven/src/main/appended-resources/licenses/Apache-2.0.txt

          source, and configuration files.
    
          "Object" form shall mean any form resulting from mechanical
          transformation or translation of a Source form, including but
          not limited to compiled object code, generated documentation,
          and conversions to other media types.
    
          "Work" shall mean the work of authorship, whether in Source or
          Object form, made available under the License, as indicated by a
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 28 11:47:17 GMT 2020
    - 11.1K bytes
    - Viewed (0)
Back to top