Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Subject (0.5 sec)

  1. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    affiliates are subject to the following clarification and special
    exception to the GPLv2, based on the GNU Project exception for its
    Classpath libraries, known as the GNU Classpath Exception, but only
    where Oracle has expressly included in the particular source file's
    header the words "Oracle designates this particular file as subject to
    the "Classpath" exception as provided by Oracle in the LICENSE file
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    Contributor.
    
    2. GRANT OF RIGHTS
    
      a) Subject to the terms of this Agreement, each Contributor hereby
      grants Recipient a non-exclusive, worldwide, royalty-free copyright
      license to reproduce, prepare Derivative Works of, publicly display,
      publicly perform, Distribute and sublicense the Contribution of such
      Contributor, if any, and such Derivative Works.
    
      b) Subject to the terms of this Agreement, each Contributor hereby
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

             * Sets the root artifact for the dependency graph.
             * This must not be confused with {@link #root(DependencyCoordinate)}: The root dependency, like any
             * other specified dependency, will be subject to dependency collection/resolution, i.e. should have an artifact
             * descriptor and a corresponding artifact file. The root artifact on the other hand is only used
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. maven-api-impl/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);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. maven-model-builder/pom.xml

                  <exclude>org.apache.maven.model.building.ModelCache#put(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.Object):METHOD_REMOVED</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

            }
            if (key.getRawType() == Map.class) {
                Key<?> k = key.getTypeParameter(0);
                Key<Object> v = key.getTypeParameter(1);
                Set<Binding<Object>> res2 = getBindings(v);
                if (k.getRawType() == String.class && res2 != null) {
                    Map<String, Supplier<Object>> map = res2.stream()
                            .filter(b -> b.getOriginalKey() == null
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. 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
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

            this.inheritedByDefault = inheritedByDefault;
        }
    
        /** {@inheritDoc} */
        public boolean equals(Object object) {
            if (this == object) {
                return true;
            }
    
            if (object instanceof MojoDescriptor) {
                MojoDescriptor other = (MojoDescriptor) object;
    
                return Objects.equals(getPluginDescriptor(), other.getPluginDescriptor())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

            builder.append(value);
            return this;
        }
    
        public Ansi a(long value) {
            flushAttributes();
            builder.append(value);
            return this;
        }
    
        public Ansi a(Object value) {
            flushAttributes();
            builder.append(value);
            return this;
        }
    
        public Ansi a(StringBuffer value) {
            flushAttributes();
            builder.append(value);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

            ArtifactDescriptorResult result = new ArtifactDescriptorResult(request);
    
            Model model = loadPom(session, request, result);
            if (model != null) {
                Map<String, Object> config = session.getConfigProperties();
                ArtifactDescriptorReaderDelegate delegate =
                        (ArtifactDescriptorReaderDelegate) config.get(ArtifactDescriptorReaderDelegate.class.getName());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top